/* =========================================================
   NANA EFUA APIATEWA III
   OFFICIAL ROYAL WEBSITE

   STAGE 01
   PREMIUM ROYAL HERO
========================================================= */


/* =========================================================
   ROOT
========================================================= */

:root {

    --obsidian: #11110f;

    --ivory: #f4f0e7;

    --ivory-soft:
        rgba(244, 240, 231, .72);

    --gold: #d5b674;

    --gold-soft:
        rgba(213, 182, 116, .65);

    --gold-faint:
        rgba(213, 182, 116, .25);

    --black:
        rgba(0, 0, 0, .92);

    --ease:
        cubic-bezier(.25, .1, .25, 1);
}


/* =========================================================
   RESET
========================================================= */

* {

    margin: 0;

    padding: 0;

    box-sizing: border-box;
}


html {

    scroll-behavior: smooth;
}


body {

    min-height: 100vh;

    background:
        var(--obsidian);

    color:
        var(--ivory);

    font-family:
        "DM Sans",
        sans-serif;

    -webkit-font-smoothing:
        antialiased;

    text-rendering:
        optimizeLegibility;
}


body.menu-is-open {

    overflow: hidden;
}


button,
a {

    font: inherit;
}


button {

    border: 0;
}


a {

    color: inherit;

    text-decoration: none;
}


/* =========================================================
   HEADER
========================================================= */

.site-header {

    position: fixed;

    top: 0;
    left: 0;

    width: 100%;

    height: 92px;

    padding:
        0 5.5vw;

    display: flex;

    align-items: center;

    justify-content: space-between;

    z-index: 100;

    color: var(--ivory);

    pointer-events: none;
}


/* =========================================================
   ROYAL MARK
========================================================= */

.royal-mark {

    display: inline-flex;

    align-items: center;

    gap: 17px;

    pointer-events: auto;
}


.royal-mark-symbol {

    width: 58px;

    height: 58px;

    display: flex;

    align-items: center;

    justify-content: center;

    border:
        1px solid
        rgba(213, 182, 116, .72);

    color: var(--gold);
}


.royal-mark-symbol svg {

    width: 31px;

    height: 31px;

    fill: none;

    stroke: currentColor;

    stroke-width: 1.25;
}


.royal-mark-name {

    font-size: 10px;

    font-weight: 500;

    letter-spacing: .34em;

    white-space: nowrap;
}


/* =========================================================
   DESKTOP NAVIGATION
========================================================= */

.main-navigation {

    pointer-events: auto;

    display: block;
}


.navigation-inner {

    display: flex;

    align-items: center;

    gap: 35px;
}


.navigation-heading,
.navigation-footer {

    display: none;
}


.navigation-links {

    display: flex;

    align-items: center;

    gap: 34px;
}


.navigation-links a {

    position: relative;

    display: inline-flex;

    align-items: center;

    padding:
        10px 0;

    font-size: 9px;

    font-weight: 500;

    letter-spacing: .18em;

    text-transform: uppercase;

    color:
        rgba(
            244,
            240,
            231,
            .78
        );

    transition:
        color .3s ease;
}


.navigation-links a::after {

    content: "";

    position: absolute;

    left: 0;

    bottom: 3px;

    width: 0;

    height: 1px;

    background:
        var(--gold);

    transition:
        width .35s var(--ease);
}


.navigation-links a:hover {

    color: var(--gold);
}


.navigation-links a:hover::after {

    width: 100%;
}


.nav-number {

    display: none;
}


/* =========================================================
   MOBILE MENU BUTTON
========================================================= */

.menu-toggle {

    position: relative;

    width: 46px;

    height: 46px;

    display: none;

    align-items: center;

    justify-content: center;

    background: transparent;

    color: var(--ivory);

    cursor: pointer;

    pointer-events: auto;

    z-index: 120;
}


.menu-toggle span {

    position: absolute;

    width: 23px;

    height: 1px;

    background:
        currentColor;

    transition:
        transform .35s var(--ease),
        top .35s var(--ease),
        opacity .25s ease;
}


.menu-toggle span:first-child {

    top: 18px;
}


.menu-toggle span:last-child {

    top: 27px;
}


/* =========================================================
   MOBILE MENU — OPEN STATE
========================================================= */

.menu-toggle[aria-expanded="true"] span:first-child {

    top: 23px;

    transform:
        rotate(45deg);
}


.menu-toggle[aria-expanded="true"] span:last-child {

    top: 23px;

    transform:
        rotate(-45deg);
}


/* =========================================================
   HERO
========================================================= */

.hero {

    position: relative;

    width: 100%;

    min-height: 720px;

    height: 100svh;

    overflow: hidden;

    isolation: isolate;

    background:
        #11110f;
}


/* =========================================================
   SLIDESHOW
========================================================= */

.hero-slideshow {

    position: absolute;

    inset: 0;

    z-index: -5;

    overflow: hidden;

    background:
        #11110f;
}


.hero-slide {

    position: absolute;

    inset: 0;

    overflow: hidden;

    opacity: 0;

    visibility: hidden;

    pointer-events: none;

    transition:
        opacity 1.35s var(--ease),
        visibility 0s linear 1.35s;
}


.hero-slide.is-active {

    opacity: 1;

    visibility: visible;

    transition:
        opacity 1.35s var(--ease),
        visibility 0s linear 0s;
}


.hero-slide img {

    width: 100%;

    height: 100%;

    display: block;

    object-fit: cover;

    object-position:
        center center;

    transform:
        scale(1.055);

    transition:
        transform 7s
        cubic-bezier(.2, .65, .2, 1);
}


.hero-slide.is-active img {

    transform:
        scale(1);
}


/* =========================================================
   IMAGE POSITIONING
========================================================= */

/*
   Slide 01
   Nana on the royal stool.
*/

.hero-slide:nth-child(1) img {

    object-position:
        center center;
}


/*
   Slide 02
   Formal standing portrait.
*/

.hero-slide:nth-child(2) img {

    object-position:
        center center;
}


/*
   Slide 03
   Royal procession.
*/

.hero-slide:nth-child(3) img {

    object-position:
        center center;
}


/*
   Slide 04
   Community image.
*/

.hero-slide:nth-child(4) img {

    object-position:
        center center;
}


/*
   Slide 05
   Seated royal portrait.
*/

.hero-slide:nth-child(5) img {

    object-position:
        center center;
}


/*
   Slide 06
   UK / Ghana engagement.
*/

.hero-slide:nth-child(6) img {

    object-position:
        center center;
}


/* =========================================================
   CINEMATIC OVERLAY
========================================================= */

.hero-overlay {

    position: absolute;

    inset: 0;

    z-index: -2;

    pointer-events: none;

    background:

        linear-gradient(
            90deg,
            rgba(7, 7, 6, .83) 0%,
            rgba(7, 7, 6, .61) 26%,
            rgba(7, 7, 6, .20) 55%,
            rgba(7, 7, 6, .08) 100%
        ),

        linear-gradient(
            0deg,
            rgba(5, 5, 4, .78) 0%,
            rgba(5, 5, 4, .08) 35%,
            rgba(5, 5, 4, .12) 100%
        );
}


/* =========================================================
   ADINKRAHENE
========================================================= */

.hero-adinkra {

    position: absolute;

    top: 50%;

    right: 5.5vw;

    transform:
        translateY(-50%);

    z-index: 5;

    display: flex;

    flex-direction: column;

    align-items: center;

    gap: 13px;

    opacity: .72;
}


.hero-adinkra svg {

    width: 65px;

    height: 65px;

    fill: none;

    stroke:
        var(--gold);

    stroke-width: 1;
}


.hero-adinkra span {

    writing-mode:
        vertical-rl;

    transform:
        rotate(180deg);

    font-size: 7px;

    font-weight: 500;

    letter-spacing: .3em;

    color:
        rgba(
            213,
            182,
            116,
            .75
        );
}


/* =========================================================
   HERO CONTENT
========================================================= */

.hero-content {

    position: absolute;

    left: 8.5vw;

    bottom: 17vh;

    z-index: 10;

    width:
        min(
            720px,
            62vw
        );

    transition:
        opacity .4s ease;
}


.hero-content.is-changing {

    opacity: 0;
}


/* =========================================================
   EYEBROW
========================================================= */

.hero-eyebrow {

    display: flex;

    align-items: center;

    gap: 17px;

    margin-bottom: 19px;

    color:
        var(--gold);

    font-size: 9px;

    font-weight: 500;

    letter-spacing: .31em;

    text-transform: uppercase;
}


.eyebrow-line {

    width: 48px;

    height: 1px;

    flex: 0 0 auto;

    background:
        var(--gold-soft);
}


/* =========================================================
   HERO HEADING
========================================================= */

.hero-content h1 {

    margin: 0;

    font-family:
        "Cormorant Garamond",
        serif;

    font-weight: 300;

    line-height: .78;

    letter-spacing:
        -.045em;
}


.hero-name {

    display: block;

    color:
        var(--ivory);

    font-size:
        clamp(
            68px,
            8vw,
            116px
        );
}


.hero-name-accent {

    margin-left:
        3.2vw;

    color:
        var(--gold);

    font-style: italic;

    font-size:
        clamp(
            65px,
            7.4vw,
            108px
        );
}


/* =========================================================
   DIVIDER
========================================================= */

.hero-divider {

    width: 67px;

    height: 1px;

    margin:
        30px 0 21px;

    background:
        var(--gold);
}


/* =========================================================
   HERO DESCRIPTION
========================================================= */

.hero-title {

    max-width: 560px;

    margin: 0;

    font-size: 13px;

    font-weight: 300;

    line-height: 1.75;

    letter-spacing: .015em;

    color:
        rgba(
            244,
            240,
            231,
            .80
        );
}


/* =========================================================
   HERO CTA
========================================================= */

.hero-link {

    display: inline-flex;

    align-items: center;

    gap: 22px;

    margin-top: 32px;

    padding-bottom: 13px;

    border-bottom:
        1px solid
        rgba(
            213,
            182,
            116,
            .58
        );

    color:
        var(--ivory);

    transition:
        color .3s ease,
        border-color .3s ease,
        gap .3s ease;
}


.hero-link-text {

    font-size: 9px;

    font-weight: 500;

    letter-spacing: .25em;

    text-transform: uppercase;
}


.hero-link-arrow {

    width: 19px;

    height: 19px;

    display: flex;

    align-items: center;

    justify-content: center;

    transition:
        transform .3s var(--ease);
}


.hero-link-arrow svg {

    width: 18px;

    height: 18px;

    fill: none;

    stroke:
        currentColor;

    stroke-width: 1.15;

    stroke-linecap: square;

    stroke-linejoin: miter;
}


.hero-link:hover {

    color:
        var(--gold);

    border-color:
        var(--gold);

    gap: 27px;
}


.hero-link:hover
.hero-link-arrow {

    transform:
        translate(3px, -3px);
}


/* =========================================================
   SLIDE CONTROL
========================================================= */

.hero-slide-control {

    position: absolute;

    right: 5.5vw;

    bottom: 8.5vh;

    z-index: 20;

    width: 150px;

    display: flex;

    flex-direction: column;

    align-items: flex-end;

    gap: 15px;
}


/* =========================================================
   COUNTER
========================================================= */

.hero-slide-count {

    display: flex;

    align-items: center;

    gap: 10px;

    font-size: 8px;

    font-weight: 500;

    letter-spacing: .22em;

    color:
        rgba(
            244,
            240,
            231,
            .65
        );
}


.hero-slide-current {

    min-width: 16px;

    text-align: right;

    color:
        var(--gold);
}


.hero-slide-count-divider {

    width: 21px;

    height: 1px;

    background:
        rgba(
            213,
            182,
            116,
            .48
        );
}


/* =========================================================
   PROGRESS BAR
========================================================= */

.hero-slide-progress {

    position: relative;

    width: 150px;

    height: 1px;

    overflow: hidden;

    background:
        rgba(
            244,
            240,
            231,
            .20
        );
}


.hero-slide-progress span {

    position: absolute;

    top: 0;
    left: 0;

    width: 0;

    height: 1px;

    background:
        var(--gold);
}


.hero-slide-progress.is-running span {

    animation:
        heroSlideProgress
        7s
        linear
        forwards;
}


@keyframes heroSlideProgress {

    from {
        width: 0;
    }

    to {
        width: 100%;
    }

}


/* =========================================================
   SLIDE ARROWS
========================================================= */

.hero-slide-arrows {

    display: flex;

    align-items: center;

    gap: 7px;
}


.hero-slide-arrows button {

    width: 34px;

    height: 34px;

    display: flex;

    align-items: center;

    justify-content: center;

    padding: 0;

    border:
        1px solid
        rgba(
            244,
            240,
            231,
            .25
        );

    background:
        rgba(
            8,
            8,
            7,
            .17
        );

    color:
        rgba(
            244,
            240,
            231,
            .82
        );

    cursor: pointer;

    -webkit-tap-highlight-color:
        transparent;

    transition:
        border-color .3s ease,
        background .3s ease,
        color .3s ease,
        transform .3s ease;
}


.hero-slide-arrows button:hover {

    border-color:
        var(--gold-soft);

    background:
        rgba(
            10,
            10,
            9,
            .45
        );

    color:
        var(--gold);
}


.hero-slide-arrows button:active {

    transform:
        scale(.93);
}


.hero-slide-arrows svg {

    width: 15px;

    height: 15px;

    display: block;

    fill: none;

    stroke:
        currentColor;

    stroke-width: 1.1;

    stroke-linecap: square;

    stroke-linejoin: miter;
}


/* =========================================================
   HERO FOOTER
========================================================= */

.hero-footer {

    position: absolute;

    left: 5.5vw;

    right: 5.5vw;

    bottom: 4.2vh;

    z-index: 10;

    display: flex;

    align-items: center;

    justify-content: space-between;

    pointer-events: none;
}


.hero-location {

    display: flex;

    align-items: center;

    gap: 13px;

    font-size: 7px;

    font-weight: 500;

    letter-spacing: .24em;

    color:
        rgba(
            244,
            240,
            231,
            .62
        );

    text-transform: uppercase;
}


.location-label {

    color:
        var(--gold);
}


.location-rule {

    width: 38px;

    height: 1px;

    background:
        rgba(
            213,
            182,
            116,
            .55
        );
}


.hero-scroll {

    display: flex;

    flex-direction: column;

    align-items: center;

    gap: 7px;

    font-size: 7px;

    font-weight: 500;

    letter-spacing: .22em;

    color:
        rgba(
            244,
            240,
            231,
            .52
        );
}


.scroll-arrow {

    color:
        var(--gold);

    font-size: 14px;

    line-height: 1;

    animation:
        scrollPulse
        2.5s
        ease-in-out
        infinite;
}


@keyframes scrollPulse {

    0%,
    100% {
        transform:
            translateY(0);
        opacity: .6;
    }

    50% {
        transform:
            translateY(4px);
        opacity: 1;
    }

}


/* =========================================================
   TABLET
========================================================= */

@media (max-width: 1100px) {

    .site-header {

        padding:
            0 4vw;
    }


    .navigation-links {

        gap: 20px;
    }


    .navigation-links a {

        font-size: 8px;

        letter-spacing: .13em;
    }


    .hero-content {

        left: 6vw;

        width:
            min(
                680px,
                70vw
            );
    }


    .hero-name {

        font-size:
            clamp(
                65px,
                9vw,
                100px
            );
    }


    .hero-name-accent {

        font-size:
            clamp(
                62px,
                8.4vw,
                94px
            );
    }


    .hero-adinkra {

        right: 3vw;
    }


    .hero-footer {

        left: 4vw;

        right: 4vw;
    }


    .hero-slide-control {

        right: 4vw;
    }

}


/* =========================================================
   MOBILE NAVIGATION
========================================================= */

@media (max-width: 800px) {

    .site-header {

        height: 82px;

        padding:
            0 6vw;
    }


    .royal-mark {

        gap: 12px;
    }


    .royal-mark-symbol {

        width: 48px;

        height: 48px;
    }


    .royal-mark-symbol svg {

        width: 27px;

        height: 27px;
    }


    .royal-mark-name {

        font-size: 9px;

        letter-spacing: .29em;
    }


    .menu-toggle {

        display: flex;
    }


    .main-navigation {

        position: fixed;

        inset: 0;

        width: 100%;

        height: 100svh;

        display: flex;

        align-items: stretch;

        justify-content: flex-end;

        padding: 0;

        background:
            rgba(
                10,
                10,
                9,
                .985
            );

        opacity: 0;

        visibility: hidden;

        transform:
            translateX(100%);

        pointer-events: none;

        transition:
            transform .55s var(--ease),
            opacity .35s ease,
            visibility 0s linear .55s;
    }


    .main-navigation.navigation-open {

        opacity: 1;

        visibility: visible;

        transform:
            translateX(0);

        pointer-events: auto;

        transition:
            transform .55s var(--ease),
            opacity .35s ease,
            visibility 0s linear 0s;
    }


    .navigation-inner {

        width: 100%;

        height: 100%;

        padding:
            115px 8vw 40px;

        display: flex;

        flex-direction: column;

        align-items: stretch;

        justify-content: space-between;
    }


    .navigation-heading {

        display: flex;

        align-items: center;

        justify-content: space-between;

        padding-bottom: 20px;

        border-bottom:
            1px solid
            rgba(
                213,
                182,
                116,
                .22
            );

        font-size: 8px;

        font-weight: 500;

        letter-spacing: .25em;

        color:
            var(--gold);
    }


    .navigation-links {

        display: flex;

        flex-direction: column;

        align-items: stretch;

        gap: 0;
    }


    .navigation-links a {

        width: 100%;

        min-height: 62px;

        display: flex;

        align-items: center;

        gap: 18px;

        padding: 0;

        border-bottom:
            1px solid
            rgba(
                244,
                240,
                231,
                .10
            );

        font-family:
            "Cormorant Garamond",
            serif;

        font-size: 31px;

        font-weight: 300;

        letter-spacing:
            -.015em;

        text-transform: none;

        color:
            rgba(
                244,
                240,
                231,
                .92
            );
    }


    .navigation-links a::after {

        display: none;
    }


    .navigation-links a:hover {

        color:
            var(--gold);
    }


    .nav-number {

        display: inline-block;

        width: 22px;

        font-family:
            "DM Sans",
            sans-serif;

        font-size: 7px;

        font-weight: 500;

        letter-spacing: .15em;

        color:
            var(--gold);
    }


    .navigation-footer {

        display: flex;

        flex-direction: column;

        gap: 8px;

        font-size: 7px;

        font-weight: 500;

        letter-spacing: .19em;

        color:
            rgba(
                244,
                240,
                231,
                .45
            );

        text-transform: uppercase;
    }


    /* =====================================================
       MOBILE HERO
    ================================================== */

    .hero {

        min-height: 680px;
    }


    .hero-overlay {

        background:

            linear-gradient(
                90deg,
                rgba(7, 7, 6, .76) 0%,
                rgba(7, 7, 6, .43) 48%,
                rgba(7, 7, 6, .12) 100%
            ),

            linear-gradient(
                0deg,
                rgba(5, 5, 4, .82) 0%,
                rgba(5, 5, 4, .18) 42%,
                rgba(5, 5, 4, .12) 100%
            );
    }


    .hero-slide img {

        object-position:
            58% center;
    }


    .hero-content {

        left: 6.5vw;

        right: 6.5vw;

        bottom: 18vh;

        width: auto;
    }


    .hero-eyebrow {

        margin-bottom: 15px;

        font-size: 7px;

        letter-spacing: .27em;
    }


    .eyebrow-line {

        width: 37px;
    }


    .hero-name {

        font-size:
            clamp(
                55px,
                16vw,
                78px
            );

        line-height: .82;
    }


    .hero-name-accent {

        margin-left: 7vw;

        font-size:
            clamp(
                52px,
                15vw,
                74px
            );
    }


    .hero-divider {

        width: 47px;

        margin:
            22px 0 16px;
    }


    .hero-title {

        max-width: 90%;

        font-size: 10px;

        line-height: 1.7;
    }


    .hero-link {

        margin-top: 23px;

        gap: 16px;

        padding-bottom: 11px;
    }


    .hero-link-text {

        font-size: 7px;

        letter-spacing: .22em;
    }


    .hero-link-arrow,
    .hero-link-arrow svg {

        width: 16px;

        height: 16px;
    }


    /* =====================================================
       MOBILE ADINKRA
    ================================================== */

    .hero-adinkra {

        top: auto;

        right: 6vw;

        bottom: 32vh;

        transform: none;

        gap: 8px;

        opacity: .56;
    }


    .hero-adinkra svg {

        width: 45px;

        height: 45px;
    }


    .hero-adinkra span {

        font-size: 5px;

        letter-spacing: .25em;
    }


    /* =====================================================
       MOBILE SLIDE CONTROL
    ================================================== */

    .hero-slide-control {

        right: 6vw;

        bottom: 12vh;

        width: 105px;

        gap: 11px;
    }


    .hero-slide-count {

        font-size: 7px;

        gap: 8px;
    }


    .hero-slide-count-divider {

        width: 17px;
    }


    .hero-slide-progress {

        width: 105px;
    }


    .hero-slide-arrows {

        gap: 6px;
    }


    .hero-slide-arrows button {

        width: 30px;

        height: 30px;
    }


    .hero-slide-arrows svg {

        width: 13px;

        height: 13px;
    }


    /* =====================================================
       MOBILE FOOTER
    ================================================== */

    .hero-footer {

        left: 6vw;

        right: 6vw;

        bottom: 4vh;
    }


    .hero-location {

        gap: 9px;

        font-size: 6px;

        letter-spacing: .18em;
    }


    .location-rule {

        width: 22px;
    }


    .hero-scroll {

        display: none;
    }


    .hero-location-right {

        display: none;
    }

}


/* =========================================================
   SMALL MOBILE
========================================================= */

@media (max-width: 430px) {

    .navigation-inner {

        padding:
            105px 7vw 32px;
    }


    .navigation-links a {

        min-height: 58px;

        font-size: 28px;
    }


    .hero-content {

        bottom: 18.5vh;
    }


    .hero-name {

        font-size:
            clamp(
                52px,
                15.5vw,
                69px
            );
    }


    .hero-name-accent {

        font-size:
            clamp(
                49px,
                14.5vw,
                66px
            );
    }


    .hero-title {

        max-width: 94%;

        font-size: 9.5px;
    }


    .hero-slide-control {

        bottom: 11vh;
    }


    .hero-adinkra {

        bottom: 34vh;
    }

}


/* =========================================================
   REDUCED MOTION
========================================================= */

@media (prefers-reduced-motion: reduce) {

    html {

        scroll-behavior: auto;
    }


    *,
    *::before,
    *::after {

        animation-duration:
            .01ms !important;

        animation-iteration-count:
            1 !important;

        transition-duration:
            .01ms !important;
    }

}

/* =========================================================
   FINAL HERO COMPOSITION
   Desktop photography, face-safe typography and watermark
   masking. Mobile composition remains unchanged.
   ========================================================= */

@media screen and (min-width: 801px) {

    /* -----------------------------------------------------
       PHOTOGRAPHY
       ----------------------------------------------------- */

    .hero-slide img {
        width: 100%;
        height: 100%;
        display: block;
        object-fit: cover;
        object-position: center top;
        transform: scale(1.012);
        transform-origin: center top;
        transition:
            transform 7s cubic-bezier(.2, .65, .2, 1);
    }

    .hero-slide.is-active img {
        transform: scale(1);
    }

    /*
       Each photograph is framed independently.
       Top anchoring deliberately moves unavoidable cropping
       toward the bottom of the original photograph.
    */

    .hero-slide:nth-child(1) img {
        object-position: 50% 15%;
    }

    .hero-slide:nth-child(2) img {
        object-position: 50% 15%;
    }

    .hero-slide:nth-child(3) img {
        object-position: 52% 15%;
    }

    .hero-slide:nth-child(4) img {
        object-position: 50% 20%;
    }

    .hero-slide:nth-child(5) img {
        object-position: 55% 15%;
    }

    /*
       Slide 06:
       Full-bleed again. No contain. No black box.
       The photograph starts at its original top edge so
       Nana's head is protected and the lower part absorbs
       the unavoidable desktop crop.
    */

    .hero-slide:nth-child(6) img {
        object-position: 50% 50%;
    }


    /* -----------------------------------------------------
       WATERMARK MASKING
       ----------------------------------------------------- */

    .hero-watermark-mask {
        position: absolute;
        right: 0;
        bottom: 0;
        z-index: 3;
        display: block;
        pointer-events: none;
        width: 20%;
        height: 15%;
    }

    /*
       The mask is deliberately a soft vignette rather than a
       visible rectangular patch.
    */

    .watermark-mask-1 {
        width: 19%;
        height: 14%;
        background:
            linear-gradient(
                90deg,
                rgba(17,17,15,0) 0%,
                rgba(17,17,15,.08) 22%,
                rgba(17,17,15,.45) 62%,
                rgba(17,17,15,.94) 100%
            ),
            linear-gradient(
                0deg,
                rgba(17,17,15,.86) 0%,
                rgba(17,17,15,.16) 70%,
                rgba(17,17,15,0) 100%
            );
    }

    .watermark-mask-2 {
        width: 22%;
        height: 16%;
        background:
            linear-gradient(
                90deg,
                rgba(17,17,15,0) 0%,
                rgba(17,17,15,.10) 20%,
                rgba(17,17,15,.48) 61%,
                rgba(17,17,15,.96) 100%
            ),
            linear-gradient(
                0deg,
                rgba(17,17,15,.88) 0%,
                rgba(17,17,15,.18) 72%,
                rgba(17,17,15,0) 100%
            );
    }

    .watermark-mask-3 {
        width: 21%;
        height: 14%;
        background:
            linear-gradient(
                90deg,
                rgba(17,17,15,0) 0%,
                rgba(17,17,15,.08) 22%,
                rgba(17,17,15,.46) 62%,
                rgba(17,17,15,.95) 100%
            ),
            linear-gradient(
                0deg,
                rgba(17,17,15,.84) 0%,
                rgba(17,17,15,.14) 70%,
                rgba(17,17,15,0) 100%
            );
    }

    .watermark-mask-4 {
        width: 21%;
        height: 16%;
        background:
            linear-gradient(
                90deg,
                rgba(17,17,15,0) 0%,
                rgba(17,17,15,.08) 20%,
                rgba(17,17,15,.46) 60%,
                rgba(17,17,15,.95) 100%
            ),
            linear-gradient(
                0deg,
                rgba(17,17,15,.88) 0%,
                rgba(17,17,15,.16) 72%,
                rgba(17,17,15,0) 100%
            );
    }

    .watermark-mask-5 {
        width: 21%;
        height: 15%;
        background:
            linear-gradient(
                90deg,
                rgba(17,17,15,0) 0%,
                rgba(17,17,15,.08) 20%,
                rgba(17,17,15,.45) 60%,
                rgba(17,17,15,.96) 100%
            ),
            linear-gradient(
                0deg,
                rgba(17,17,15,.86) 0%,
                rgba(17,17,15,.15) 72%,
                rgba(17,17,15,0) 100%
            );
    }

    .watermark-mask-6 {
        width: 24%;
        height: 18%;
        background:
            linear-gradient(
                90deg,
                rgba(17,17,15,0) 0%,
                rgba(17,17,15,.10) 20%,
                rgba(17,17,15,.50) 58%,
                rgba(17,17,15,.97) 100%
            ),
            linear-gradient(
                0deg,
                rgba(17,17,15,.92) 0%,
                rgba(17,17,15,.18) 72%,
                rgba(17,17,15,0) 100%
            );
    }


    /* -----------------------------------------------------
       CONTENT — KEEP IT IN THE NEGATIVE SPACE
       ----------------------------------------------------- */

    .hero-content {
        left: 7.5vw;
        bottom: 17vh;
        width: min(405px, 34vw);
        max-width: 405px;
        z-index: 10;
    }

    .hero-content h1 {
        max-width: 405px;
    }

    .hero-name {
        font-size:
            clamp(
                60px,
                6.15vw,
                92px
            );
        line-height: .80;
    }

    .hero-name-accent {
        margin-left: 2vw;
        font-size:
            clamp(
                57px,
                5.75vw,
                86px
            );
    }

    .hero-title {
        max-width: 390px;
        font-size: 11.5px;
        line-height: 1.72;
    }

    /*
       A restrained left-side tonal lift improves legibility
       without putting a panel over the photograph.
    */

    .hero-content::before {
        content: "";
        position: absolute;
        left: -5vw;
        top: -4vh;
        width: calc(100% + 8vw);
        height: calc(100% + 8vh);
        z-index: -1;
        pointer-events: none;
        background:
            radial-gradient(
                ellipse at 22% 50%,
                rgba(8,8,7,.34) 0%,
                rgba(8,8,7,.15) 46%,
                rgba(8,8,7,0) 76%
            );
    }


    /* -----------------------------------------------------
       SLIDE-SPECIFIC TYPOGRAPHIC COMPOSITION
       ----------------------------------------------------- */

    .hero[data-active-slide="1"] .hero-content {
        left: 7.5vw;
        bottom: 17vh;
        width: min(405px, 34vw);
    }

    .hero[data-active-slide="2"] .hero-content {
        left: 7.5vw;
        bottom: 16.5vh;
        width: min(380px, 32vw);
    }

    .hero[data-active-slide="2"] .hero-title {
        max-width: 365px;
    }

    .hero[data-active-slide="3"] .hero-content {
        left: 7.5vw;
        bottom: 17vh;
        width: min(390px, 33vw);
    }

    .hero[data-active-slide="3"] .hero-title {
        max-width: 370px;
    }

    .hero[data-active-slide="4"] .hero-content {
        left: 7.5vw;
        bottom: 17vh;
        width: min(385px, 32vw);
    }

    .hero[data-active-slide="4"] .hero-title {
        max-width: 365px;
    }

    .hero[data-active-slide="5"] .hero-content {
        left: 7.5vw;
        bottom: 16vh;
        width: min(360px, 30vw);
    }

    .hero[data-active-slide="5"] .hero-name {
        font-size:
            clamp(
                56px,
                5.6vw,
                82px
            );
    }

    .hero[data-active-slide="5"] .hero-name-accent {
        font-size:
            clamp(
                54px,
                5.3vw,
                78px
            );
    }

    .hero[data-active-slide="5"] .hero-title {
        max-width: 350px;
    }

    .hero[data-active-slide="6"] .hero-content {
        left: 7.5vw;
        bottom: 17vh;
        width: min(385px, 32vw);
    }

    .hero[data-active-slide="6"] .hero-title {
        max-width: 365px;
    }
}


/* =========================================================
   TABLET DESKTOP — 801px TO 1100px
   ========================================================= */

@media screen and (min-width: 801px) and (max-width: 1100px) {

    .hero-content {
        left: 6vw !important;
        bottom: 17vh;
        width: min(360px, 40vw) !important;
        max-width: 360px;
    }

    .hero-name {
        font-size:
            clamp(
                54px,
                7vw,
                78px
            );
    }

    .hero-name-accent {
        font-size:
            clamp(
                52px,
                6.6vw,
                74px
            );
    }

    .hero-title {
        max-width: 345px;
        font-size: 10.5px;
    }

    .hero-slide:nth-child(1) img { object-position: 50% 0%; }
    .hero-slide:nth-child(2) img { object-position: 50% 0%; }
    .hero-slide:nth-child(3) img { object-position: 52% 0%; }
    .hero-slide:nth-child(4) img { object-position: 50% 0%; }
    .hero-slide:nth-child(5) img { object-position: 55% 0%; }
    .hero-slide:nth-child(6) img { object-position: 50% 0%; }

    .hero-adinkra {
        right: 3vw;
    }

    .hero-slide-control {
        right: 4vw;
    }
}

/* =========================================================
   MOBILE HERO — INDIVIDUAL PHOTO COMPOSITIONS
   ========================================================= */

@media screen and (max-width: 800px) {

    .hero-slide img {
        object-fit: cover !important;
        transform: none !important;
    }

    /*
     * Each photograph gets its own composition.
     * This prevents important faces, regalia and ceremony
     * details from being unnecessarily cropped.
     */

    /* SLIDE 1 — Royal Authority */
    .hero[data-active-slide="1"] .hero-slide:nth-child(1) img {
        object-position: 50% 28% !important;
    }

    /* SLIDE 2 — A Queen of Purpose */
    .hero[data-active-slide="2"] .hero-slide:nth-child(2) img {
        object-position: 50% 22% !important;
    }

    /* SLIDE 3 — Where Heritage Takes Its Place */
    .hero[data-active-slide="3"] .hero-slide:nth-child(3) img {
        object-position: 50% 62% !important;
    }

    /* SLIDE 4 — Leadership Among Her People */
    .hero[data-active-slide="4"] .hero-slide:nth-child(4) img {
        object-position: 50% 35% !important;
    }

    /* SLIDE 5 — Grace, Dignity & Purpose */
    .hero[data-active-slide="5"] .hero-slide:nth-child(5) img {
        object-position: 50% 28% !important;
    }

    /* SLIDE 6 — Bridging Two Worlds */
    .hero[data-active-slide="6"] .hero-slide:nth-child(6) img {
        object-position: 50% 25% !important;
    }

    /* -----------------------------------------------------
       MOBILE CONTENT
       ----------------------------------------------------- */

    .hero-content {
        left: 6.5vw;
        right: 6.5vw;
        bottom: 14vh;
        width: auto;
        max-width: 87vw;
    }

    .hero-content h1 {
        max-width: 100%;
    }

    .hero-title {
        max-width: 100%;
    }

    /*
     * Slightly smaller mobile headline prevents the
     * typography from swallowing the photography.
     */

    .hero-name {
        font-size: clamp(48px, 14vw, 72px);
        line-height: .86;
    }

    .hero-name-accent {
        margin-left: 3vw;
        font-size: clamp(45px, 13.2vw, 68px);
    }

    .hero-title {
        font-size: 10px;
        line-height: 1.65;
    }

    /*
     * Give the copy a little more breathing room from
     * the photograph without creating a visible panel.
     */

    .hero-content::before {
        display: block;
        left: -8vw;
        top: -5vh;
        width: calc(100% + 16vw);
        height: calc(100% + 10vh);
        background:
            radial-gradient(
                ellipse at 20% 50%,
                rgba(8,8,7,.30) 0%,
                rgba(8,8,7,.12) 48%,
                rgba(8,8,7,0) 78%
            );
    }

    /* -----------------------------------------------------
       SLIDE-SPECIFIC MOBILE TEXT COMPOSITION
       ----------------------------------------------------- */

    /* Slide 1 */
    .hero[data-active-slide="1"] .hero-content {
        left: 6.5vw;
        right: 8vw;
        bottom: 14vh;
        width: auto;
    }

    /* Slide 2 */
    .hero[data-active-slide="2"] .hero-content {
        left: 6.5vw;
        right: 8vw;
        bottom: 13vh;
        width: auto;
    }

    /* Slide 3 — reduce the amount of image covered */
    .hero[data-active-slide="3"] .hero-content {
        left: 6.5vw;
        right: 7vw;
        bottom: 11vh;
        width: auto;
    }

    .hero[data-active-slide="3"] .hero-title {
        max-width: 92vw;
    }

    /* Slide 4 */
    .hero[data-active-slide="4"] .hero-content {
        left: 6.5vw;
        right: 8vw;
        bottom: 13vh;
        width: auto;
    }

    /* Slide 5 */
    .hero[data-active-slide="5"] .hero-content {
        left: 6.5vw;
        right: 8vw;
        bottom: 13vh;
        width: auto;
    }

    /* Slide 6 — keep her face completely clear */
    .hero[data-active-slide="6"] .hero-content {
        left: 6.5vw;
        right: 7vw;
        bottom: 12vh;
        width: auto;
    }

    .hero[data-active-slide="6"] .hero-title {
        max-width: 92vw;
    }

    /*
     * Keep watermark masks hidden on mobile for now.
     * The existing mobile photography composition remains
     * clean without introducing artificial dark blocks.
     */

    .hero-watermark-mask {
        display: none;
    }
}

/* =========================================================
   HER STORY — HOMEPAGE
   ROYAL HERITAGE × CONTEMPORARY EDITORIAL
   ========================================================= */

.story-section {
    position: relative;
    width: 100%;
    min-height: 100vh;
    padding: 150px 7vw 90px;
    overflow: hidden;

    background: var(--ivory);
    color: var(--obsidian);
}


/* =========================================================
   STORY INTRO
   ========================================================= */

.story-intro {
    width: 100%;
    display: grid;
    grid-template-columns: 1fr 1.6fr;
    column-gap: 6vw;
    align-items: end;
    margin-bottom: 95px;
}


.story-intro-label {
    display: flex;
    align-items: center;
    gap: 15px;

    padding-bottom: 12px;

    font-size: 8px;
    font-weight: 600;
    letter-spacing: .28em;
    text-transform: uppercase;

    color: rgba(17,17,15,.58);
}


.story-label-line {
    width: 42px;
    height: 1px;
    flex: 0 0 auto;

    background: var(--gold);
}


.story-intro-heading {
    position: relative;
}


.story-overline {
    display: block;

    margin-bottom: 5px;

    font-family:
        "Cormorant Garamond",
        serif;

    font-size: clamp(27px, 3vw, 46px);
    font-weight: 300;
    line-height: .95;

    color: rgba(17,17,15,.58);
}


.story-intro-heading h2 {
    margin: 0;

    font-family:
        "Cormorant Garamond",
        serif;

    font-size: clamp(76px, 10vw, 150px);
    font-weight: 300;
    line-height: .76;
    letter-spacing: -.055em;

    color: var(--obsidian);
}


/* =========================================================
   FEATURE GRID
   ========================================================= */

.story-feature {
    display: grid;

    grid-template-columns:
        minmax(0, 1.2fr)
        minmax(340px, .8fr);

    gap: 8vw;

    align-items: center;

    max-width: 1380px;
    margin: 0 auto;
}


/* =========================================================
   STORY IMAGE
   ========================================================= */

.story-image-wrap {
    position: relative;
}


.story-image {
    position: relative;

    width: 100%;
    height: min(68vh, 760px);

    overflow: hidden;

    background: #ded8cc;
}


.story-image::after {
    content: "";

    position: absolute;
    inset: 0;

    pointer-events: none;

    background:
        linear-gradient(
            180deg,
            rgba(0,0,0,0) 55%,
            rgba(0,0,0,.18) 100%
        );
}


.story-image img {
    width: 100%;
    height: 100%;

    display: block;

    object-fit: cover;
    object-position: center top;

    transform: scale(1.015);

    transition:
        transform 1.2s var(--ease);
}


.story-image-wrap:hover .story-image img {
    transform: scale(1.035);
}


/* =========================================================
   IMAGE CAPTION
   ========================================================= */

.story-image-caption {
    display: flex;
    justify-content: space-between;
    align-items: center;

    margin-top: 14px;

    font-size: 7px;
    font-weight: 500;
    letter-spacing: .20em;
    text-transform: uppercase;

    color: rgba(17,17,15,.48);
}


.story-image-caption span:last-child {
    color: rgba(17,17,15,.35);
}


/* =========================================================
   STORY CONTENT
   ========================================================= */

.story-content {
    position: relative;

    max-width: 530px;

    padding: 20px 0 25px;
}


.story-content-number {
    display: block;

    margin-bottom: 20px;

    font-size: 8px;
    font-weight: 600;
    letter-spacing: .25em;

    color: var(--gold);
}


.story-content-rule {
    width: 55px;
    height: 1px;

    margin-bottom: 35px;

    background: var(--gold);
}


.story-lead {
    margin: 0 0 28px;

    font-family:
        "Cormorant Garamond",
        serif;

    font-size: clamp(28px, 2.5vw, 39px);
    font-weight: 300;
    line-height: 1.08;
    letter-spacing: -.015em;

    color: var(--obsidian);
}


.story-body {
    margin: 0 0 18px;

    max-width: 500px;

    font-size: 13px;
    font-weight: 400;
    line-height: 1.85;
    letter-spacing: .005em;

    color: rgba(17,17,15,.65);
}


/* =========================================================
   STORY LINK
   ========================================================= */

.story-link {
    display: inline-flex;
    align-items: center;
    gap: 22px;

    margin-top: 18px;
    padding-bottom: 12px;

    border-bottom:
        1px solid
        rgba(17,17,15,.35);

    color: var(--obsidian);

    transition:
        color .3s ease,
        border-color .3s ease,
        gap .3s var(--ease);
}


.story-link-text {
    font-size: 8px;
    font-weight: 600;
    letter-spacing: .24em;
    text-transform: uppercase;
}


.story-link-arrow {
    width: 18px;
    height: 18px;

    display: flex;
    align-items: center;
    justify-content: center;

    transition:
        transform .3s var(--ease);
}


.story-link-arrow svg {
    width: 17px;
    height: 17px;

    fill: none;

    stroke: currentColor;
    stroke-width: 1.15;

    stroke-linecap: square;
    stroke-linejoin: miter;
}


.story-link:hover {
    color: #8f733c;

    border-color: #8f733c;

    gap: 27px;
}


.story-link:hover .story-link-arrow {
    transform:
        translate(3px, -3px);
}


/* =========================================================
   STORY FOOTER
   ========================================================= */

.story-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;

    max-width: 1380px;

    margin: 80px auto 0;
    padding-top: 25px;

    border-top:
        1px solid
        rgba(17,17,15,.12);
}


.story-footer p {
    margin: 0;

    font-size: 7px;
    font-weight: 600;
    letter-spacing: .24em;
    text-transform: uppercase;

    color: rgba(17,17,15,.38);
}


.story-footer > span {
    font-size: 7px;
    font-weight: 600;
    letter-spacing: .20em;

    color: rgba(17,17,15,.35);
}


/* =========================================================
   ADINKRAHENE
   ========================================================= */

.story-adinkra {
    width: 42px;
    height: 42px;

    display: flex;
    align-items: center;
    justify-content: center;

    color: var(--gold);
}


.story-adinkra svg {
    width: 31px;
    height: 31px;

    fill: none;

    stroke: currentColor;
    stroke-width: 1;
}


/* =========================================================
   STORY TABLET
   ========================================================= */

@media (max-width: 1050px) {

    .story-section {
        padding:
            120px 6vw
            75px;
    }


    .story-intro {
        grid-template-columns:
            1fr 1.4fr;

        margin-bottom: 70px;
    }


    .story-feature {
        gap: 5vw;
    }


    .story-image {
        height: 620px;
    }


    .story-lead {
        font-size: 31px;
    }

}


/* =========================================================
   STORY MOBILE
   ========================================================= */

@media (max-width: 800px) {

    .story-section {
        min-height: auto;

        padding:
            100px 6.5vw
            65px;
    }


    .story-intro {
        display: block;

        margin-bottom: 55px;
    }


    .story-intro-label {
        margin-bottom: 35px;
    }


    .story-overline {
        font-size: 30px;
    }


    .story-intro-heading h2 {
        font-size: clamp(
            72px,
            22vw,
            112px
        );

        line-height: .78;
    }


    .story-feature {
        display: flex;
        flex-direction: column;

        gap: 45px;

        align-items: stretch;
    }


    .story-image {
        height: 72vh;
        min-height: 500px;
        max-height: 680px;
    }


    .story-image img {
        object-position: center top;
    }


    .story-image-caption {
        flex-direction: column;
        align-items: flex-start;

        gap: 7px;
    }


    .story-content {
        max-width: none;

        padding: 0;
    }


    .story-content-number {
        margin-bottom: 17px;
    }


    .story-content-rule {
        margin-bottom: 28px;
    }


    .story-lead {
        max-width: 92vw;

        font-size: 31px;
        line-height: 1.04;

        margin-bottom: 25px;
    }


    .story-body {
        max-width: 92vw;

        font-size: 12.5px;
        line-height: 1.8;
    }


    .story-link {
        margin-top: 12px;
    }


    .story-footer {
        margin-top: 60px;
    }


    .story-footer p {
        display: none;
    }


    .story-footer > span {
        margin-left: auto;
    }

}


/* =========================================================
   REDUCED MOTION
   ========================================================= */

@media (prefers-reduced-motion: reduce) {

    .story-image img,
    .story-link,
    .story-link-arrow {
        transition: none;
    }

}

/* =========================================================
   03 — HER ROYAL ROLE
   ROYAL HERITAGE × CONTEMPORARY EDITORIAL
========================================================== */

.royal-role-section {
    position: relative;
    overflow: hidden;
    background: #17382f;
    color: var(--ivory);
    padding: 150px 7vw 85px;
}

.royal-role-inner {
    width: 100%;
    max-width: 1440px;
    margin: 0 auto;
}


/* =========================================================
   INTRO
========================================================== */

.royal-role-intro {
    display: grid;
    grid-template-columns: 1fr 1.6fr;
    gap: 8vw;
    align-items: end;
    margin-bottom: 85px;
}

.royal-role-label {
    display: flex;
    align-items: center;
    gap: 14px;

    font-family: "DM Sans", sans-serif;
    font-size: 9px;
    font-weight: 500;
    letter-spacing: .24em;
    text-transform: uppercase;
    color: rgba(244,240,231,.62);
}

.royal-role-label-line {
    display: block;
    width: 42px;
    height: 1px;
    background: var(--gold);
}

.royal-role-intro-heading {
    position: relative;
}

.royal-role-overline {
    display: block;

    font-family: "DM Sans", sans-serif;
    font-size: 10px;
    font-weight: 500;
    letter-spacing: .22em;
    text-transform: uppercase;

    color: var(--gold);
    margin-bottom: 12px;
}

.royal-role-intro-heading h2 {
    margin: 0;

    font-family: "Cormorant Garamond", serif;
    font-size: clamp(70px, 9vw, 132px);
    font-weight: 300;
    line-height: .78;
    letter-spacing: -.045em;
}


/* =========================================================
   MAIN FEATURE
========================================================== */

.royal-role-feature {
    display: grid;
    grid-template-columns: 1.08fr .92fr;
    gap: 8vw;
    align-items: center;
}


/* =========================================================
   IMAGE
========================================================== */

.royal-role-image-wrap {
    position: relative;
}

.royal-role-image {
    position: relative;
    width: 100%;
    height: min(70vh, 780px);
    overflow: hidden;
    background: #10100e;
}

.royal-role-image::after {
    content: "";
    position: absolute;
    inset: 0;

    background:
        linear-gradient(
            180deg,
            rgba(0,0,0,0) 68%,
            rgba(0,0,0,.34) 100%
        );

    pointer-events: none;
}

.royal-role-image img {
    display: block;
    width: 100%;
    height: 100%;

    object-fit: cover;
    object-position: center top;

    transform: scale(1.008);

    transition:
        transform 1.2s var(--ease);
}

.royal-role-image-wrap:hover .royal-role-image img {
    transform: scale(1.025);
}

.royal-role-image-caption {
    display: flex;
    justify-content: space-between;
    gap: 20px;

    margin-top: 14px;

    font-family: "DM Sans", sans-serif;
    font-size: 8px;
    font-weight: 500;
    letter-spacing: .18em;
    text-transform: uppercase;

    color: rgba(244,240,231,.48);
}


/* =========================================================
   CONTENT
========================================================== */

.royal-role-content {
    position: relative;
    padding: 15px 0 20px;
}

.royal-role-symbol {
    position: absolute;
    top: -8px;
    right: 0;

    width: 74px;
    height: 74px;

    opacity: .17;
}

.royal-role-symbol svg {
    width: 100%;
    height: 100%;
    fill: none;
    stroke: var(--gold);
    stroke-width: 1;
}

.royal-role-number {
    display: block;

    font-family: "DM Sans", sans-serif;
    font-size: 9px;
    font-weight: 500;
    letter-spacing: .18em;

    color: var(--gold);
}

.royal-role-rule {
    width: 100%;
    max-width: 90px;
    height: 1px;

    margin: 18px 0 32px;

    background: rgba(213,182,116,.55);
}

.royal-role-lead {
    max-width: 600px;
    margin: 0 0 28px;

    font-family: "Cormorant Garamond", serif;
    font-size: clamp(28px, 3vw, 40px);
    font-weight: 300;
    line-height: 1.08;
    letter-spacing: -.018em;
}

.royal-role-body {
    max-width: 530px;
    margin: 0 0 18px;

    font-family: "DM Sans", sans-serif;
    font-size: 13px;
    font-weight: 300;
    line-height: 1.85;

    color: rgba(244,240,231,.68);
}

.royal-role-link {
    display: inline-flex;
    align-items: center;
    gap: 18px;

    margin-top: 20px;
    padding-bottom: 9px;

    border-bottom: 1px solid rgba(213,182,116,.55);

    color: var(--ivory);

    font-family: "DM Sans", sans-serif;
    font-size: 9px;
    font-weight: 500;
    letter-spacing: .16em;
    text-transform: uppercase;

    text-decoration: none;

    transition:
        color .35s var(--ease),
        border-color .35s var(--ease),
        gap .35s var(--ease);
}

.royal-role-link-arrow {
    display: flex;
    width: 17px;
    height: 17px;
}

.royal-role-link-arrow svg {
    width: 100%;
    height: 100%;

    fill: none;
    stroke: currentColor;
    stroke-width: 1.3;
}

.royal-role-link:hover {
    gap: 24px;
    color: var(--gold);
    border-color: var(--gold);
}


/* =========================================================
   ROYAL OFFICE DETAILS
========================================================== */

.royal-role-details {
    display: grid;
    grid-template-columns: repeat(4, 1fr);

    margin-top: 115px;

    border-top: 1px solid rgba(244,240,231,.16);
}

.royal-role-detail {
    min-height: 190px;
    padding: 25px 28px 10px 0;

    border-right: 1px solid rgba(244,240,231,.12);
}

.royal-role-detail:not(:first-child) {
    padding-left: 28px;
}

.royal-role-detail:last-child {
    border-right: 0;
}

.royal-role-detail-index {
    display: block;

    margin-bottom: 28px;

    font-family: "DM Sans", sans-serif;
    font-size: 8px;
    letter-spacing: .16em;

    color: var(--gold);
}

.royal-role-detail-title {
    display: block;

    margin-bottom: 10px;

    font-family: "Cormorant Garamond", serif;
    font-size: 25px;
    font-weight: 400;
    line-height: 1;
}

.royal-role-detail p {
    max-width: 220px;
    margin: 0;

    font-family: "DM Sans", sans-serif;
    font-size: 10px;
    font-weight: 300;
    line-height: 1.65;

    color: rgba(244,240,231,.53);
}


/* =========================================================
   FOOTER
========================================================== */

.royal-role-footer {
    display: flex;
    align-items: center;
    gap: 16px;

    margin-top: 65px;

    font-family: "DM Sans", sans-serif;
    font-size: 8px;
    font-weight: 500;
    letter-spacing: .18em;
    text-transform: uppercase;

    color: rgba(244,240,231,.42);
}

.royal-role-footer-rule {
    width: 24px;
    height: 1px;
    background: rgba(213,182,116,.45);
}

.royal-role-page {
    margin-left: auto;
    color: rgba(244,240,231,.32);
}


/* =========================================================
   TABLET
========================================================== */

@media screen and (min-width: 801px) and (max-width: 1100px) {

    .royal-role-section {
        padding: 120px 6vw 70px;
    }

    .royal-role-intro {
        gap: 5vw;
    }

    .royal-role-feature {
        gap: 5vw;
    }

    .royal-role-image {
        height: 620px;
    }

    .royal-role-details {
        grid-template-columns: repeat(2, 1fr);
    }

    .royal-role-detail:nth-child(2) {
        border-right: 0;
    }

    .royal-role-detail:nth-child(n + 3) {
        border-top: 1px solid rgba(244,240,231,.12);
    }

}


/* =========================================================
   MOBILE
========================================================== */

@media screen and (max-width: 800px) {

    .royal-role-section {
        padding: 100px 6.5vw 55px;
    }

    .royal-role-intro {
        display: block;
        margin-bottom: 58px;
    }

    .royal-role-label {
        margin-bottom: 45px;
    }

    .royal-role-intro-heading h2 {
        font-size: clamp(66px, 20vw, 100px);
    }

    .royal-role-feature {
        display: flex;
        flex-direction: column;
        gap: 48px;
        align-items: stretch;
    }

    .royal-role-image {
        height: 72vh;
        max-height: 680px;
    }

    .royal-role-image-caption {
        font-size: 7px;
        letter-spacing: .14em;
    }

    .royal-role-content {
        padding-top: 5px;
    }

    .royal-role-symbol {
        width: 62px;
        height: 62px;
        top: -8px;
    }

    .royal-role-lead {
        font-size: clamp(29px, 8.5vw, 39px);
        line-height: 1.04;
        padding-right: 15px;
    }

    .royal-role-body {
        font-size: 12px;
        line-height: 1.8;
    }

    .royal-role-details {
        grid-template-columns: 1fr;
        margin-top: 75px;
    }

    .royal-role-detail,
    .royal-role-detail:not(:first-child) {
        min-height: auto;
        padding: 23px 0;
        border-right: 0;
        border-bottom: 1px solid rgba(244,240,231,.12);
    }

    .royal-role-detail:last-child {
        border-bottom: 0;
    }

    .royal-role-detail-index {
        margin-bottom: 17px;
    }

    .royal-role-detail-title {
        font-size: 27px;
    }

    .royal-role-detail p {
        max-width: 300px;
        font-size: 10px;
    }

    .royal-role-footer {
        flex-wrap: wrap;
        gap: 10px;
        margin-top: 45px;
    }

    .royal-role-page {
        width: 100%;
        margin: 8px 0 0;
    }

}

/* =========================================================
   04 — THE FOUNDATION
   ROYAL RESPONSIBILITY × COMMUNITY IMPACT
========================================================== */

.foundation-section {
    position: relative;
    overflow: hidden;

    background: var(--ivory);
    color: var(--obsidian);

    padding: 150px 7vw 90px;
}

.foundation-inner {
    width: 100%;
    max-width: 1440px;
    margin: 0 auto;
}


/* =========================================================
   INTRO
========================================================== */

.foundation-intro {
    display: grid;
    grid-template-columns: 1fr 1.6fr;

    gap: 8vw;
    align-items: end;

    margin-bottom: 85px;
}

.foundation-label {
    display: flex;
    align-items: center;
    gap: 14px;

    font-family: "DM Sans", sans-serif;
    font-size: 9px;
    font-weight: 500;
    letter-spacing: .24em;
    text-transform: uppercase;

    color: rgba(17,17,15,.52);
}

.foundation-label-line {
    display: block;

    width: 42px;
    height: 1px;

    background: var(--gold);
}

.foundation-heading {
    position: relative;
}

.foundation-overline {
    display: block;

    margin-bottom: 12px;

    font-family: "DM Sans", sans-serif;
    font-size: 10px;
    font-weight: 500;
    letter-spacing: .22em;
    text-transform: uppercase;

    color: #8d7542;
}

.foundation-heading h2 {
    margin: 0;

    font-family: "Cormorant Garamond", serif;
    font-size: clamp(72px, 9vw, 132px);
    font-weight: 300;
    line-height: .78;
    letter-spacing: -.045em;
}


/* =========================================================
   MAIN FEATURE
========================================================== */

.foundation-feature {
    display: grid;
    grid-template-columns: 1.08fr .92fr;

    gap: 8vw;
    align-items: center;
}


/* =========================================================
   IMAGE
========================================================== */

.foundation-image-wrap {
    position: relative;
}

.foundation-image {
    position: relative;

    width: 100%;
    height: min(68vh, 750px);

    overflow: hidden;

    background: #ded9ce;
}

.foundation-image::after {
    content: "";

    position: absolute;
    inset: 0;

    background:
        linear-gradient(
            180deg,
            rgba(0,0,0,0) 68%,
            rgba(0,0,0,.22) 100%
        );

    pointer-events: none;
}

.foundation-image img {
    display: block;

    width: 100%;
    height: 100%;

    object-fit: cover;
    object-position: center top;

    transform: scale(1.008);

    transition:
        transform 1.2s var(--ease);
}

.foundation-image-wrap:hover
.foundation-image img {
    transform: scale(1.025);
}

.foundation-image-caption {
    display: flex;
    justify-content: space-between;
    gap: 20px;

    margin-top: 14px;

    font-family: "DM Sans", sans-serif;
    font-size: 8px;
    font-weight: 500;
    letter-spacing: .18em;
    text-transform: uppercase;

    color: rgba(17,17,15,.43);
}


/* =========================================================
   CONTENT
========================================================== */

.foundation-content {
    position: relative;

    padding: 15px 0 20px;
}

.foundation-number {
    display: block;

    font-family: "DM Sans", sans-serif;
    font-size: 9px;
    font-weight: 500;
    letter-spacing: .18em;

    color: #9a7e43;
}

.foundation-rule {
    width: 90px;
    height: 1px;

    margin: 18px 0 32px;

    background: rgba(141,117,66,.55);
}

.foundation-lead {
    max-width: 590px;

    margin: 0 0 30px;

    font-family: "Cormorant Garamond", serif;
    font-size: clamp(31px, 3.2vw, 44px);
    font-weight: 300;
    line-height: 1.02;
    letter-spacing: -.02em;
}

.foundation-body {
    max-width: 520px;

    margin: 0 0 18px;

    font-family: "DM Sans", sans-serif;
    font-size: 13px;
    font-weight: 300;
    line-height: 1.85;

    color: rgba(17,17,15,.63);
}

.foundation-link {
    display: inline-flex;
    align-items: center;
    gap: 18px;

    margin-top: 22px;
    padding-bottom: 9px;

    border-bottom: 1px solid rgba(141,117,66,.55);

    color: var(--obsidian);

    font-family: "DM Sans", sans-serif;
    font-size: 9px;
    font-weight: 500;
    letter-spacing: .16em;
    text-transform: uppercase;

    text-decoration: none;

    transition:
        color .35s var(--ease),
        border-color .35s var(--ease),
        gap .35s var(--ease);
}

.foundation-link-arrow {
    display: flex;

    width: 17px;
    height: 17px;
}

.foundation-link-arrow svg {
    width: 100%;
    height: 100%;

    fill: none;
    stroke: currentColor;
    stroke-width: 1.3;
}

.foundation-link:hover {
    gap: 24px;

    color: #8d7542;
    border-color: #8d7542;
}


/* =========================================================
   IMPACT
========================================================== */

.foundation-impact {
    display: grid;
    grid-template-columns: 1.15fr .75fr 1.1fr;

    gap: 5vw;

    margin-top: 110px;
    padding: 42px 0 45px;

    border-top: 1px solid rgba(17,17,15,.15);
    border-bottom: 1px solid rgba(17,17,15,.15);

    align-items: center;
}

.foundation-impact-number {
    display: flex;
    align-items: flex-start;

    font-family: "Cormorant Garamond", serif;
    font-weight: 300;

    color: var(--obsidian);
}

.foundation-impact-plus {
    margin-top: 16px;

    font-size: 32px;
    line-height: 1;

    color: #9a7e43;
}

.foundation-impact-value {
    font-size: clamp(105px, 13vw, 175px);
    line-height: .72;
    letter-spacing: -.06em;
}

.foundation-impact-copy {
    padding-left: 5px;
}

.foundation-impact-label {
    display: block;

    margin-bottom: 12px;

    font-family: "DM Sans", sans-serif;
    font-size: 9px;
    font-weight: 500;
    letter-spacing: .18em;
    text-transform: uppercase;

    color: #8d7542;
}

.foundation-impact-copy p {
    max-width: 220px;

    margin: 0;

    font-family: "DM Sans", sans-serif;
    font-size: 11px;
    font-weight: 300;
    line-height: 1.7;

    color: rgba(17,17,15,.55);
}

.foundation-impact-disciplines {
    display: flex;
    flex-direction: column;

    gap: 9px;

    padding-left: 30px;

    border-left: 1px solid rgba(17,17,15,.13);
}

.foundation-impact-disciplines span {
    font-family: "Cormorant Garamond", serif;
    font-size: 20px;
    font-weight: 400;

    color: rgba(17,17,15,.72);
}


/* =========================================================
   STATEMENT
========================================================== */

.foundation-statement {
    display: grid;
    grid-template-columns: 80px 1fr;

    gap: 35px;

    max-width: 850px;

    margin: 105px auto 0;
    padding: 0 0 10px;
}

.foundation-statement-mark {
    position: relative;

    width: 60px;
    height: 60px;
}

.foundation-statement-mark span {
    position: absolute;

    border: 1px solid rgba(141,117,66,.45);
    border-radius: 50%;
}

.foundation-statement-mark span:nth-child(1) {
    inset: 0;
}

.foundation-statement-mark span:nth-child(2) {
    inset: 11px;
}

.foundation-statement-mark span:nth-child(3) {
    inset: 22px;
}

.foundation-statement p {
    margin: -5px 0 0;

    font-family: "Cormorant Garamond", serif;
    font-size: clamp(30px, 3.3vw, 46px);
    font-weight: 300;
    line-height: 1.08;
    letter-spacing: -.02em;

    color: rgba(17,17,15,.82);
}


/* =========================================================
   FOOTER
========================================================== */

.foundation-footer {
    display: flex;
    align-items: center;
    gap: 16px;

    margin-top: 75px;

    font-family: "DM Sans", sans-serif;
    font-size: 8px;
    font-weight: 500;
    letter-spacing: .18em;
    text-transform: uppercase;

    color: rgba(17,17,15,.38);
}

.foundation-footer-rule {
    width: 24px;
    height: 1px;

    background: rgba(141,117,66,.45);
}

.foundation-page {
    margin-left: auto;

    color: rgba(17,17,15,.28);
}


/* =========================================================
   TABLET
========================================================== */

@media screen and (min-width: 801px)
and (max-width: 1100px) {

    .foundation-section {
        padding: 120px 6vw 70px;
    }

    .foundation-intro {
        gap: 5vw;
    }

    .foundation-feature {
        gap: 5vw;
    }

    .foundation-image {
        height: 620px;
    }

    .foundation-impact {
        grid-template-columns: 1fr 1fr;
    }

    .foundation-impact-disciplines {
        grid-column: span 2;

        padding-left: 0;
        padding-top: 25px;

        border-left: 0;
        border-top: 1px solid rgba(17,17,15,.13);
    }

}


/* =========================================================
   MOBILE
========================================================== */

@media screen and (max-width: 800px) {

    .foundation-section {
        padding: 100px 6.5vw 55px;
    }

    .foundation-intro {
        display: block;

        margin-bottom: 58px;
    }

    .foundation-label {
        margin-bottom: 45px;
    }

    .foundation-heading h2 {
        font-size: clamp(68px, 20vw, 102px);
    }

    .foundation-feature {
        display: flex;
        flex-direction: column;

        gap: 48px;

        align-items: stretch;
    }

    .foundation-image {
        height: 72vh;
        max-height: 680px;
    }

    .foundation-image-caption {
        font-size: 7px;
        letter-spacing: .14em;
    }

    .foundation-content {
        padding-top: 5px;
    }

    .foundation-lead {
        font-size: clamp(31px, 8.8vw, 42px);
        line-height: 1.02;
    }

    .foundation-body {
        font-size: 12px;
        line-height: 1.8;
    }

    .foundation-impact {
        display: block;

        margin-top: 75px;
        padding: 38px 0;
    }

    .foundation-impact-number {
        margin-bottom: 35px;
    }

    .foundation-impact-value {
        font-size: clamp(115px, 32vw, 170px);
    }

    .foundation-impact-plus {
        margin-top: 14px;
        font-size: 28px;
    }

    .foundation-impact-copy {
        padding-left: 0;
        margin-bottom: 35px;
    }

    .foundation-impact-copy p {
        max-width: 300px;
    }

    .foundation-impact-disciplines {
        display: grid;
        grid-template-columns: 1fr 1fr;

        gap: 10px 20px;

        padding: 25px 0 0;

        border-left: 0;
        border-top: 1px solid rgba(17,17,15,.13);
    }

    .foundation-impact-disciplines span {
        font-size: 19px;
    }

    .foundation-statement {
        grid-template-columns: 52px 1fr;

        gap: 20px;

        margin-top: 75px;
    }

    .foundation-statement-mark {
        width: 48px;
        height: 48px;
    }

    .foundation-statement p {
        margin: -3px 0 0;

        font-size: clamp(29px, 8vw, 38px);
    }

    .foundation-footer {
        flex-wrap: wrap;

        gap: 10px;

        margin-top: 48px;
    }

    .foundation-page {
        width: 100%;

        margin: 8px 0 0;
    }

}

/* =========================================================
   05 — ROYAL ENGAGEMENTS
   PREMIUM EDITORIAL CAROUSEL
========================================================== */

.engagements-section {
    position: relative;
    overflow: hidden;

    background: var(--obsidian);
    color: var(--ivory);

    padding: 150px 7vw 90px;
}

.engagements-inner {
    width: 100%;
    max-width: 1440px;
    margin: 0 auto;
}


/* =========================================================
   HEADER
========================================================== */

.engagements-header {
    margin-bottom: 65px;
}

.engagements-label {
    display: flex;
    align-items: center;
    gap: 14px;

    margin-bottom: 55px;

    font-family: "DM Sans", sans-serif;
    font-size: 9px;
    font-weight: 500;
    letter-spacing: .24em;
    text-transform: uppercase;

    color: rgba(244,240,231,.5);
}

.engagements-label-line {
    width: 42px;
    height: 1px;

    background: var(--gold);
}

.engagements-header-main {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;

    gap: 60px;
}

.engagements-overline {
    display: block;

    margin-bottom: 13px;

    font-family: "DM Sans", sans-serif;
    font-size: 10px;
    font-weight: 500;
    letter-spacing: .22em;
    text-transform: uppercase;

    color: var(--gold);
}

.engagements-header h2 {
    margin: 0;

    font-family: "Cormorant Garamond", serif;
    font-size: clamp(72px, 9vw, 132px);
    font-weight: 300;
    line-height: .78;
    letter-spacing: -.045em;
}

.engagements-header h2 em {
    font-style: italic;
    font-weight: 300;

    color: rgba(244,240,231,.7);
}


/* =========================================================
   MAIN CTA
========================================================== */

.engagements-main-cta {
    display: inline-flex;
    align-items: center;
    gap: 18px;

    margin-bottom: 8px;
    padding-bottom: 10px;

    border-bottom: 1px solid rgba(213,182,116,.55);

    color: var(--ivory);

    font-family: "DM Sans", sans-serif;
    font-size: 9px;
    font-weight: 500;
    letter-spacing: .16em;
    text-transform: uppercase;

    text-decoration: none;

    transition:
        color .35s var(--ease),
        border-color .35s var(--ease),
        gap .35s var(--ease);
}

.engagements-main-cta:hover {
    gap: 25px;

    color: var(--gold);
    border-color: var(--gold);
}

.engagements-main-cta-arrow {
    display: flex;

    width: 17px;
    height: 17px;
}

.engagements-main-cta-arrow svg {
    width: 100%;
    height: 100%;

    fill: none;
    stroke: currentColor;
    stroke-width: 1.3;
}


/* =========================================================
   INTRODUCTION
========================================================== */

.engagements-introduction {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;

    gap: 50px;

    max-width: 1060px;

    margin: 0 0 70px auto;
}

.engagements-introduction p {
    max-width: 610px;

    margin: 0;

    font-family: "Cormorant Garamond", serif;
    font-size: clamp(26px, 2.8vw, 38px);
    font-weight: 300;
    line-height: 1.1;
    letter-spacing: -.015em;

    color: rgba(244,240,231,.82);
}

.engagements-introduction > span {
    max-width: 190px;

    font-family: "DM Sans", sans-serif;
    font-size: 8px;
    font-weight: 500;
    line-height: 1.7;
    letter-spacing: .15em;
    text-transform: uppercase;

    color: rgba(244,240,231,.34);
}


/* =========================================================
   CAROUSEL
========================================================== */

.engagement-carousel {
    position: relative;
}

.engagement-slides {
    position: relative;

    width: 100%;
    height: min(70vh, 760px);

    overflow: hidden;

    background: #191916;
}

.engagement-slide {
    position: absolute;
    inset: 0;

    display: grid;
    grid-template-columns: 1.38fr .62fr;

    opacity: 0;
    visibility: hidden;

    transform: translateX(25px);

    transition:
        opacity .75s var(--ease),
        transform .75s var(--ease),
        visibility .75s;
}

.engagement-slide.is-active {
    opacity: 1;
    visibility: visible;

    transform: translateX(0);

    z-index: 2;
}


/* =========================================================
   SLIDE IMAGE
========================================================== */

.engagement-slide-image {
    position: relative;

    min-width: 0;
    height: 100%;

    overflow: hidden;
}

.engagement-slide-image::after {
    content: "";

    position: absolute;
    inset: 0;

    background:
        linear-gradient(
            90deg,
            rgba(0,0,0,0) 55%,
            rgba(17,17,15,.9) 100%
        );

    pointer-events: none;
}

.engagement-slide-image img {
    display: block;

    width: 100%;
    height: 100%;

    object-fit: cover;
    object-position: center 50%;

    transform: scale(1.008);

    transition:
        transform 1.5s var(--ease);
}

@media screen and (min-width: 801px) {

    .engagement-slide:nth-child(3) .engagement-slide-image img {
        object-position: center top;
    }

}

.engagement-slide.is-active
.engagement-slide-image img {
    transform: scale(1.018);
}


/* =========================================================
   SLIDE CONTENT
========================================================== */

.engagement-slide-content {
    position: relative;
    z-index: 2;

    display: flex;
    flex-direction: column;
    justify-content: center;

    margin-left: -1px;

    padding: 55px 5vw 55px 4vw;

    background: var(--obsidian);
}

.engagement-slide-meta {
    display: flex;
    align-items: center;
    gap: 17px;

    margin-bottom: 34px;

    font-family: "DM Sans", sans-serif;
    font-size: 8px;
    font-weight: 500;
    letter-spacing: .16em;
    text-transform: uppercase;
}

.engagement-slide-meta span:first-child {
    color: var(--gold);
}

.engagement-slide-meta span:last-child {
    color: rgba(244,240,231,.38);
}

.engagement-slide-content h3 {
    max-width: 430px;

    margin: 0 0 28px;

    font-family: "Cormorant Garamond", serif;
    font-size: clamp(38px, 4vw, 58px);
    font-weight: 300;
    line-height: .98;
    letter-spacing: -.025em;
}

.engagement-slide-content h3 em {
    display: block;

    font-style: italic;
    font-weight: 300;

    color: rgba(244,240,231,.68);
}

.engagement-slide-content p {
    max-width: 390px;

    margin: 0 0 30px;

    font-family: "DM Sans", sans-serif;
    font-size: 11px;
    font-weight: 300;
    line-height: 1.85;

    color: rgba(244,240,231,.53);
}

.engagement-location {
    font-family: "DM Sans", sans-serif;
    font-size: 8px;
    font-weight: 500;
    letter-spacing: .17em;
    text-transform: uppercase;

    color: rgba(244,240,231,.32);
}


/* =========================================================
   CONTROLS
========================================================== */

.engagement-carousel-controls {
    display: flex;
    justify-content: space-between;
    align-items: center;

    padding-top: 20px;
}

.engagement-carousel-counter {
    display: flex;
    align-items: center;
    gap: 13px;

    font-family: "DM Sans", sans-serif;
    font-size: 8px;
    font-weight: 500;
    letter-spacing: .12em;
}

.engagement-current {
    color: var(--gold);
}

.engagement-carousel-counter > span:last-child {
    color: rgba(244,240,231,.3);
}

.engagement-counter-line {
    width: 35px;
    height: 1px;

    background: rgba(213,182,116,.35);
}

.engagement-carousel-arrows {
    display: flex;
    gap: 8px;
}

.engagement-carousel-button {
    display: flex;
    align-items: center;
    justify-content: center;

    width: 48px;
    height: 48px;

    padding: 0;

    border: 1px solid rgba(244,240,231,.18);
    border-radius: 0;

    background: transparent;
    color: var(--ivory);

    cursor: pointer;

    transition:
        border-color .3s var(--ease),
        color .3s var(--ease),
        background .3s var(--ease);
}

.engagement-carousel-button:hover {
    border-color: var(--gold);
    color: var(--gold);
}

.engagement-carousel-button svg {
    width: 18px;
    height: 18px;

    fill: none;
    stroke: currentColor;
    stroke-width: 1.2;
}


/* =========================================================
   CLOSING
========================================================== */

.engagements-closing {
    display: flex;
    flex-direction: column;
    align-items: center;

    text-align: center;

    margin-top: 115px;
}

.engagements-closing-rule {
    width: 45px;
    height: 1px;

    margin-bottom: 30px;

    background: var(--gold);
}

.engagements-closing p {
    margin: 0 0 12px;

    font-family: "Cormorant Garamond", serif;
    font-size: clamp(36px, 4vw, 58px);
    font-weight: 300;
    font-style: italic;
    line-height: 1;

    color: rgba(244,240,231,.88);
}

.engagements-closing span {
    font-family: "DM Sans", sans-serif;
    font-size: 8px;
    font-weight: 500;
    letter-spacing: .18em;
    text-transform: uppercase;

    color: rgba(244,240,231,.35);
}


/* =========================================================
   FOOTER
========================================================== */

.engagements-footer {
    display: flex;
    align-items: center;
    gap: 16px;

    margin-top: 75px;

    font-family: "DM Sans", sans-serif;
    font-size: 8px;
    font-weight: 500;
    letter-spacing: .18em;
    text-transform: uppercase;

    color: rgba(244,240,231,.35);
}

.engagements-footer-rule {
    width: 24px;
    height: 1px;

    background: rgba(213,182,116,.45);
}

.engagements-page {
    margin-left: auto;

    color: rgba(244,240,231,.25);
}


/* =========================================================
   TABLET
========================================================== */

@media screen and (min-width: 801px)
and (max-width: 1100px) {

    .engagements-section {
        padding: 120px 6vw 70px;
    }

    .engagements-header-main {
        gap: 35px;
    }

    .engagements-slide {
        grid-template-columns: 1.25fr .75fr;
    }

    .engagement-slide-content {
        padding-left: 3vw;
        padding-right: 3vw;
    }

}


/* =========================================================
   MOBILE
========================================================== */

@media screen and (max-width: 800px) {

    .engagements-section {
        padding: 100px 6.5vw 55px;
    }

    .engagements-label {
        margin-bottom: 42px;
    }

    .engagements-header-main {
        display: block;
    }

    .engagements-header h2 {
        font-size: clamp(68px, 20vw, 102px);
    }

    .engagements-main-cta {
        margin-top: 35px;
    }

    .engagements-introduction {
        display: block;

        margin: 55px 0 55px;
    }

    .engagements-introduction p {
        font-size: clamp(28px, 8vw, 38px);
    }

    .engagements-introduction > span {
        display: block;

        margin-top: 25px;

        max-width: 250px;
    }


    /* MOBILE CAROUSEL */

    .engagement-slides {
        height: auto;
        min-height: 720px;
    }

    .engagement-slide {
        position: absolute;

        display: flex;
        flex-direction: column;

        min-height: 720px;

        transform: translateX(20px);
    }

    .engagement-slide-image {
        height: 430px;
        flex: 0 0 430px;
    }

    .engagement-slide-image::after {
        background:
            linear-gradient(
                180deg,
                rgba(0,0,0,0) 60%,
                rgba(17,17,15,.65) 100%
            );
    }

    .engagement-slide-content {
        flex: 1;

        margin: 0;

        padding: 32px 7vw 35px;
    }

    .engagement-slide-meta {
        margin-bottom: 21px;
    }

    .engagement-slide-content h3 {
        max-width: 340px;

        margin-bottom: 20px;

        font-size: clamp(36px, 9vw, 48px);
    }

    .engagement-slide-content p {
        max-width: 340px;

        margin-bottom: 22px;

        font-size: 11px;
        line-height: 1.75;
    }

    .engagement-carousel-controls {
        padding-top: 17px;
    }

    .engagement-carousel-button {
        width: 44px;
        height: 44px;
    }

    .engagements-closing {
        margin-top: 80px;
    }

    .engagements-footer {
        flex-wrap: wrap;

        gap: 10px;

        margin-top: 50px;
    }

    .engagements-page {
        width: 100%;
        margin: 8px 0 0;
    }

}

/* =========================================================
   06 — THE ROYAL OFFICE
   FINAL HOMEPAGE / CONTACT
========================================================== */

.royal-office-section {
    position: relative;
    overflow: hidden;

    background: #17382f;
    color: var(--ivory);

    padding: 150px 7vw 65px;
}

.royal-office-inner {
    width: 100%;
    max-width: 1440px;
    margin: 0 auto;
}


/* =========================================================
   LABEL
========================================================== */

.royal-office-label {
    display: flex;
    align-items: center;
    gap: 14px;

    margin-bottom: 65px;

    font-family: "DM Sans", sans-serif;
    font-size: 9px;
    font-weight: 500;
    letter-spacing: .24em;
    text-transform: uppercase;

    color: rgba(244,240,231,.48);
}

.royal-office-label-line {
    width: 42px;
    height: 1px;

    background: var(--gold);
}


/* =========================================================
   HEADING
========================================================== */

.royal-office-heading {
    max-width: 1200px;

    margin-left: auto;
}

.royal-office-overline {
    display: block;

    margin-bottom: 16px;

    font-family: "DM Sans", sans-serif;
    font-size: 10px;
    font-weight: 500;
    letter-spacing: .22em;
    text-transform: uppercase;

    color: var(--gold);
}

.royal-office-heading h2 {
    margin: 0;

    font-family: "Cormorant Garamond", serif;
    font-size: clamp(68px, 9vw, 132px);
    font-weight: 300;
    line-height: .79;
    letter-spacing: -.045em;
}

.royal-office-heading h2 em {
    display: block;

    font-style: italic;
    font-weight: 300;

    color: rgba(244,240,231,.68);
}


/* =========================================================
   CONTACT
========================================================== */

.royal-office-contact {
    display: grid;
    grid-template-columns: 1fr .8fr;

    gap: 10vw;

    margin-top: 100px;
}


/* MESSAGE */

.royal-office-message {
    max-width: 620px;
}

.royal-office-number {
    display: block;

    font-family: "DM Sans", sans-serif;
    font-size: 9px;
    font-weight: 500;
    letter-spacing: .18em;

    color: var(--gold);
}

.royal-office-rule {
    width: 90px;
    height: 1px;

    margin: 18px 0 32px;

    background: rgba(213,182,116,.55);
}

.royal-office-lead {
    margin: 0 0 28px;

    font-family: "Cormorant Garamond", serif;
    font-size: clamp(29px, 3.1vw, 42px);
    font-weight: 300;
    line-height: 1.04;
    letter-spacing: -.018em;
}

.royal-office-body {
    max-width: 500px;

    margin: 0;

    font-family: "DM Sans", sans-serif;
    font-size: 12px;
    font-weight: 300;
    line-height: 1.85;

    color: rgba(244,240,231,.57);
}


/* =========================================================
   DETAILS
========================================================== */

.royal-office-details {
    border-top: 1px solid rgba(244,240,231,.15);
}

.royal-office-detail {
    padding: 25px 0;

    border-bottom: 1px solid rgba(244,240,231,.12);
}

.royal-office-detail-label {
    display: block;

    margin-bottom: 11px;

    font-family: "DM Sans", sans-serif;
    font-size: 8px;
    font-weight: 500;
    letter-spacing: .18em;
    text-transform: uppercase;

    color: var(--gold);
}

.royal-office-email,
.royal-office-phones a {
    display: inline-block;

    font-family: "DM Sans", sans-serif;
    font-size: 12px;
    font-weight: 300;

    color: rgba(244,240,231,.75);

    text-decoration: none;

    transition: color .3s var(--ease);
}

.royal-office-email:hover,
.royal-office-phones a:hover {
    color: var(--gold);
}

.royal-office-phones {
    display: flex;
    flex-direction: column;
    gap: 7px;
}

.royal-office-detail p {
    margin: 0;

    font-family: "DM Sans", sans-serif;
    font-size: 11px;
    font-weight: 300;
    line-height: 1.7;

    color: rgba(244,240,231,.6);
}


/* =========================================================
   CONTACT CTA
========================================================== */

.royal-office-contact-cta {
    display: inline-flex;
    align-items: center;
    gap: 18px;

    margin-top: 28px;
    padding-bottom: 10px;

    border-bottom: 1px solid rgba(213,182,116,.6);

    color: var(--ivory);

    font-family: "DM Sans", sans-serif;
    font-size: 9px;
    font-weight: 500;
    letter-spacing: .16em;
    text-transform: uppercase;

    text-decoration: none;

    transition:
        gap .35s var(--ease),
        color .35s var(--ease),
        border-color .35s var(--ease);
}

.royal-office-contact-cta:hover {
    gap: 25px;

    color: var(--gold);
    border-color: var(--gold);
}

.royal-office-contact-arrow {
    display: flex;

    width: 17px;
    height: 17px;
}

.royal-office-contact-arrow svg {
    width: 100%;
    height: 100%;

    fill: none;
    stroke: currentColor;
    stroke-width: 1.3;
}


/* =========================================================
   DIVIDER
========================================================== */

.royal-office-divider {
    margin-top: 115px;

    border-top: 1px solid rgba(244,240,231,.14);
}

.royal-office-divider span {
    display: block;

    width: 45px;
    height: 1px;

    margin-top: -1px;

    background: var(--gold);
}


/* =========================================================
   DIGITAL PRESENCE
========================================================== */

.royal-office-digital {
    display: grid;
    grid-template-columns: 1fr 1fr;

    gap: 8vw;

    padding: 42px 0;
}

.royal-office-digital-heading > span {
    display: block;

    margin-bottom: 11px;

    font-family: "DM Sans", sans-serif;
    font-size: 8px;
    font-weight: 500;
    letter-spacing: .18em;
    text-transform: uppercase;

    color: var(--gold);
}

.royal-office-digital-heading p {
    max-width: 330px;

    margin: 0;

    font-family: "DM Sans", sans-serif;
    font-size: 10px;
    font-weight: 300;
    line-height: 1.7;

    color: rgba(244,240,231,.42);
}

.royal-office-socials {
    display: flex;
    flex-direction: column;
}

.royal-office-socials a {
    display: flex;
    justify-content: space-between;
    align-items: center;

    padding: 15px 0;

    border-bottom: 1px solid rgba(244,240,231,.11);

    color: rgba(244,240,231,.68);

    font-family: "DM Sans", sans-serif;
    font-size: 10px;
    font-weight: 500;
    letter-spacing: .14em;
    text-transform: uppercase;

    text-decoration: none;

    transition:
        color .3s var(--ease),
        padding .3s var(--ease);
}

.royal-office-socials a:first-child {
    border-top: 1px solid rgba(244,240,231,.11);
}

.royal-office-socials a:hover {
    padding-left: 8px;

    color: var(--gold);
}

.royal-office-social-arrow {
    display: flex;
    align-items: center;
    justify-content: center;

    width: 18px;
    height: 18px;

    flex: 0 0 18px;

    color: currentColor;

    transition:
        transform .35s var(--ease),
        color .35s var(--ease);
}

.royal-office-social-arrow svg {
    display: block;

    width: 100%;
    height: 100%;

    fill: none;
    stroke: currentColor;
    stroke-width: 1.25;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.royal-office-socials a:hover
.royal-office-social-arrow {
    transform: translate(3px, -3px);
}

/* =========================================================
   CLOSING STATEMENT
========================================================== */

.royal-office-closing {
    display: flex;
    align-items: center;
    justify-content: center;

    gap: 55px;

    padding: 95px 0 110px;
}

.royal-office-closing-symbol {
    width: 80px;
    height: 80px;

    opacity: .22;
}

.royal-office-closing-symbol svg {
    width: 100%;
    height: 100%;

    fill: none;
    stroke: var(--gold);
    stroke-width: 1;
}

.royal-office-closing p {
    margin: 0;

    font-family: "Cormorant Garamond", serif;
    font-size: clamp(38px, 5vw, 70px);
    font-weight: 300;
    line-height: .82;
    letter-spacing: -.035em;
}

.royal-office-closing p em {
    font-style: italic;

    color: rgba(244,240,231,.66);
}


/* =========================================================
   FOOTER
========================================================== */

.royal-office-footer {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;

    gap: 50px;

    padding-top: 28px;

    border-top: 1px solid rgba(244,240,231,.15);
}

.royal-office-footer-name {
    display: flex;
    flex-direction: column;
    gap: 7px;
}

.royal-office-footer-name strong {
    font-family: "Cormorant Garamond", serif;
    font-size: 22px;
    font-weight: 400;
}

.royal-office-footer-name span,
.royal-office-footer-role span {
    max-width: 390px;

    font-family: "DM Sans", sans-serif;
    font-size: 8px;
    font-weight: 400;
    line-height: 1.6;
    letter-spacing: .12em;
    text-transform: uppercase;

    color: rgba(244,240,231,.33);
}

.royal-office-footer-role {
    display: flex;
    align-items: flex-end;
    gap: 45px;
}

.royal-office-page {
    color: rgba(213,182,116,.65) !important;
}


/* =========================================================
   TABLET
========================================================== */

@media screen and (min-width: 801px)
and (max-width: 1100px) {

    .royal-office-section {
        padding: 120px 6vw 60px;
    }

    .royal-office-contact {
        gap: 6vw;
    }

    .royal-office-heading {
        margin-left: 0;
    }

}


/* =========================================================
   MOBILE
========================================================== */

@media screen and (max-width: 800px) {

    .royal-office-section {
        padding: 100px 6.5vw 50px;
    }

    .royal-office-label {
        margin-bottom: 45px;
    }

    .royal-office-heading {
        margin-left: 0;
    }

    .royal-office-heading h2 {
        font-size: clamp(65px, 19vw, 100px);
        line-height: .8;
    }

    .royal-office-contact {
        display: flex;
        flex-direction: column;

        gap: 60px;

        margin-top: 70px;
    }

    .royal-office-lead {
        font-size: clamp(29px, 8.5vw, 40px);
    }

    .royal-office-body {
        font-size: 11px;
        line-height: 1.8;
    }

    .royal-office-details {
        width: 100%;
    }

    .royal-office-divider {
        margin-top: 80px;
    }

    .royal-office-digital {
        display: block;

        padding: 35px 0;
    }

    .royal-office-digital-heading {
        margin-bottom: 30px;
    }

    .royal-office-closing {
        flex-direction: column;

        gap: 28px;

        padding: 75px 0 85px;
    }

    .royal-office-closing-symbol {
        width: 65px;
        height: 65px;
    }

    .royal-office-closing p {
        font-size: clamp(40px, 11vw, 58px);
        text-align: center;
    }

    .royal-office-footer {
        display: block;
    }

    .royal-office-footer-role {
        display: flex;
        justify-content: space-between;
        align-items: flex-start;

        gap: 25px;

        margin-top: 25px;
    }

    .royal-office-footer-role span {
        max-width: 270px;
    }

}

/* =========================================================
   GLOBAL ROYAL FOOTER
========================================================== */

.royal-footer {
    position: relative;

    background: #0b0c0b;
    color: var(--ivory);

    padding: 95px 7vw 28px;

    border-top: 1px solid rgba(213,182,116,.18);
}

.royal-footer-inner {
    width: 100%;
    max-width: 1440px;
    margin: 0 auto;
}


/* =========================================================
   TOP
========================================================== */

.royal-footer-top {
    display: grid;
    grid-template-columns: 1.45fr .7fr .85fr;

    gap: 7vw;

    padding-bottom: 85px;
}


/* =========================================================
   IDENTITY
========================================================== */

.royal-footer-identity {
    display: flex;
    align-items: flex-start;

    gap: 35px;
}

.royal-footer-mark {
    position: relative;

    display: flex;
    align-items: center;
    justify-content: center;

    flex: 0 0 72px;

    width: 72px;
    height: 72px;

    margin-top: 7px;

    text-decoration: none;
}

.royal-footer-mark-ring {
    position: absolute;

    display: block;

    border: 1px solid rgba(213,182,116,.65);
    border-radius: 50%;
}

.ring-one {
    width: 72px;
    height: 72px;
}

.ring-two {
    width: 46px;
    height: 46px;
}

.ring-three {
    width: 21px;
    height: 21px;
}

.royal-footer-name {
    max-width: 420px;
}

.royal-footer-kicker {
    display: block;

    margin-bottom: 15px;

    font-family: "DM Sans", sans-serif;
    font-size: 8px;
    font-weight: 500;
    letter-spacing: .2em;
    text-transform: uppercase;

    color: var(--gold);
}

.royal-footer-name h2 {
    margin: 0;

    font-family: "Cormorant Garamond", serif;
    font-size: clamp(42px, 4vw, 64px);
    font-weight: 300;
    line-height: .82;
    letter-spacing: -.035em;
}

.royal-footer-name p {
    margin: 22px 0 0;

    font-family: "DM Sans", sans-serif;
    font-size: 9px;
    font-weight: 300;
    line-height: 1.75;
    letter-spacing: .08em;
    text-transform: uppercase;

    color: rgba(244,240,231,.38);
}


/* =========================================================
   NAVIGATION + CONTACT
========================================================== */

.royal-footer-navigation,
.royal-footer-contact {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.royal-footer-nav-title {
    display: block;

    margin-bottom: 25px;

    font-family: "DM Sans", sans-serif;
    font-size: 8px;
    font-weight: 500;
    letter-spacing: .19em;
    text-transform: uppercase;

    color: var(--gold);
}

.royal-footer-navigation a,
.royal-footer-contact a {
    display: inline-block;

    margin-bottom: 12px;

    font-family: "DM Sans", sans-serif;
    font-size: 10px;
    font-weight: 300;

    color: rgba(244,240,231,.58);

    text-decoration: none;

    transition:
        color .3s var(--ease),
        transform .3s var(--ease);
}

.royal-footer-navigation a:hover,
.royal-footer-contact a:hover {
    color: var(--gold);
    transform: translateX(4px);
}

.royal-footer-location {
    margin-top: 13px;

    font-family: "DM Sans", sans-serif;
    font-size: 8px;
    font-weight: 300;
    line-height: 1.7;
    letter-spacing: .12em;
    text-transform: uppercase;

    color: rgba(244,240,231,.28);
}


/* =========================================================
   MIDDLE
========================================================== */

.royal-footer-middle {
    display: grid;
    grid-template-columns: 1.45fr .55fr;

    gap: 7vw;

    padding: 35px 0 45px;

    border-top: 1px solid rgba(244,240,231,.1);
    border-bottom: 1px solid rgba(244,240,231,.1);
}

.royal-footer-motto > span,
.royal-footer-socials > span {
    display: block;

    margin-bottom: 14px;

    font-family: "DM Sans", sans-serif;
    font-size: 8px;
    font-weight: 500;
    letter-spacing: .18em;
    text-transform: uppercase;

    color: var(--gold);
}

.royal-footer-motto p {
    max-width: 650px;

    margin: 0;

    font-family: "Cormorant Garamond", serif;
    font-size: clamp(23px, 2.3vw, 32px);
    font-weight: 300;
    line-height: 1.15;

    color: rgba(244,240,231,.68);
}

.royal-footer-socials {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.royal-footer-socials a {
    display: flex;
    justify-content: space-between;

    width: 100%;
    max-width: 240px;

    padding: 10px 0;

    border-bottom: 1px solid rgba(244,240,231,.1);

    font-family: "DM Sans", sans-serif;
    font-size: 9px;
    font-weight: 500;
    letter-spacing: .14em;
    text-transform: uppercase;

    color: rgba(244,240,231,.5);

    text-decoration: none;

    transition: color .3s var(--ease);
}

.royal-footer-socials a:first-of-type {
    border-top: 1px solid rgba(244,240,231,.1);
}

.royal-footer-socials a:hover {
    color: var(--gold);
}


/* =========================================================
   BOTTOM
========================================================== */

.royal-footer-bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;

    gap: 30px;

    padding-top: 25px;

    font-family: "DM Sans", sans-serif;
    font-size: 7px;
    font-weight: 400;
    letter-spacing: .13em;
    text-transform: uppercase;

    color: rgba(244,240,231,.24);
}

.royal-footer-bottom a {
    display: inline-flex;
    align-items: center;
    gap: 10px;

    color: rgba(244,240,231,.38);

    text-decoration: none;

    transition: color .3s var(--ease);
}

.royal-footer-bottom a:hover {
    color: var(--gold);
}


/* =========================================================
   MOBILE
========================================================== */

@media screen and (max-width: 800px) {

    .royal-footer {
        padding: 75px 6.5vw 25px;
    }

    .royal-footer-top {
        display: block;

        padding-bottom: 60px;
    }

    .royal-footer-identity {
        gap: 22px;
    }

    .royal-footer-mark {
        flex: 0 0 55px;

        width: 55px;
        height: 55px;
    }

    .ring-one {
        width: 55px;
        height: 55px;
    }

    .ring-two {
        width: 36px;
        height: 36px;
    }

    .ring-three {
        width: 17px;
        height: 17px;
    }

    .royal-footer-name h2 {
        font-size: clamp(40px, 11vw, 55px);
    }

    .royal-footer-name p {
        max-width: 290px;

        font-size: 8px;
    }


    .royal-footer-navigation {
        margin-top: 55px;
    }

    .royal-footer-contact {
        margin-top: 48px;
    }


    .royal-footer-middle {
        display: block;

        padding: 35px 0 40px;
    }

    .royal-footer-motto {
        margin-bottom: 40px;
    }

    .royal-footer-motto p {
        font-size: 25px;
        line-height: 1.12;
    }

    .royal-footer-socials a {
        max-width: none;
    }


    .royal-footer-bottom {
        display: grid;
        grid-template-columns: 1fr 1fr;

        gap: 18px;

        line-height: 1.6;
    }

    .royal-footer-bottom > span:first-child {
        grid-column: span 2;
    }

    .royal-footer-bottom > span:nth-child(2) {
        text-align: left;
    }

    .royal-footer-bottom a {
        justify-self: end;
    }

}


/* =========================================================
   PREMIUM ROYAL FOOTER ARROWS
   Clean SVG system — no pseudo-elements
========================================================= */


/* ---------------------------------------------------------
   SOCIAL LINKS
--------------------------------------------------------- */

.royal-footer-socials a {
    display: flex;
    align-items: center;
    justify-content: space-between;

    width: 100%;
    max-width: 240px;

    padding: 12px 0;

    border-bottom: 1px solid rgba(244, 240, 231, .10);

    color: rgba(244, 240, 231, .50);

    text-decoration: none;

    transition:
        color .35s var(--ease),
        padding-left .35s var(--ease);
}


/* First social item gets a top rule */

.royal-footer-socials a:first-of-type {
    border-top: 1px solid rgba(244, 240, 231, .10);
}


/* Hover */

.royal-footer-socials a:hover {
    color: var(--gold);
    padding-left: 5px;
}


/* ---------------------------------------------------------
   EXTERNAL / SOCIAL ARROW
--------------------------------------------------------- */

.royal-footer-social-arrow {
    display: inline-flex;

    align-items: center;
    justify-content: center;

    width: 18px;
    height: 18px;

    flex: 0 0 18px;

    margin-left: 24px;

    color: currentColor;

    transition:
        transform .45s var(--ease),
        color .35s var(--ease);
}


/* Actual SVG */

.royal-footer-social-arrow svg {
    display: block;

    width: 18px;
    height: 18px;

    fill: none;

    stroke: currentColor;

    stroke-width: 1.15;

    stroke-linecap: round;
    stroke-linejoin: round;

    overflow: visible;
}


/* Refined diagonal movement */

.royal-footer-socials a:hover
.royal-footer-social-arrow {
    transform: translate(3px, -3px);
}


/* ---------------------------------------------------------
   BACK TO TOP
--------------------------------------------------------- */

.royal-footer-bottom a {
    display: inline-flex;

    align-items: center;

    gap: 11px;

    color: rgba(244, 240, 231, .38);

    text-decoration: none;

    transition:
        color .35s var(--ease);
}


/* Back-to-top arrow */

.royal-footer-bottom
.royal-footer-social-arrow {
    display: inline-flex;

    align-items: center;
    justify-content: center;

    width: 15px;
    height: 15px;

    flex: 0 0 15px;

    margin-left: 2px;

    color: currentColor;

    transition:
        transform .4s var(--ease),
        color .35s var(--ease);
}


/* Back-to-top SVG */

.royal-footer-bottom
.royal-footer-social-arrow svg {
    display: block;

    width: 15px;
    height: 15px;

    fill: none;

    stroke: currentColor;

    stroke-width: 1.15;

    stroke-linecap: round;
    stroke-linejoin: round;
}


/* Hover */

.royal-footer-bottom a:hover {
    color: var(--gold);
}

.royal-footer-bottom a:hover
.royal-footer-social-arrow {
    transform: translateY(-3px);
}


/* ---------------------------------------------------------
   MOBILE
--------------------------------------------------------- */

@media screen and (max-width: 800px) {

    .royal-footer-socials a {
        max-width: none;
        padding: 13px 0;
    }

    .royal-footer-social-arrow {
        width: 17px;
        height: 17px;

        flex-basis: 17px;

        margin-left: 20px;
    }

    .royal-footer-social-arrow svg {
        width: 17px;
        height: 17px;
    }

    .royal-footer-bottom
    .royal-footer-social-arrow {
        width: 14px;
        height: 14px;

        flex-basis: 14px;
    }

    .royal-footer-bottom
    .royal-footer-social-arrow svg {
        width: 14px;
        height: 14px;
    }

}
/* =========================================================
   GLOBAL PRIVACY NOTICE + LEGAL LINKS
   Added as the shared site-wide legal layer.
========================================================= */

.royal-footer-legal-links {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    justify-content: flex-end;
    gap: 9px 18px;
    margin-left: auto;
    margin-right: 40px;
}

.royal-footer-legal-links a,
.royal-footer-cookie-preferences {
    padding: 0;
    border: 0;
    background: transparent;
    color: rgba(244,240,231,.42);
    font-family: "DM Sans", sans-serif;
    font-size: 7px;
    font-weight: 500;
    letter-spacing: .12em;
    text-transform: uppercase;
    text-decoration: none;
    cursor: pointer;
    transition: color .25s ease;
}

.royal-footer-legal-links a:hover,
.royal-footer-cookie-preferences:hover,
.royal-footer-legal-links a:focus-visible,
.royal-footer-cookie-preferences:focus-visible {
    color: var(--gold);
}

.privacy-notice {
    position: fixed;
    left: 24px;
    right: 24px;
    bottom: 24px;
    z-index: 2000;
    opacity: 0;
    visibility: hidden;
    transform: translateY(18px);
    pointer-events: none;
    transition: opacity .3s ease, transform .35s var(--ease), visibility 0s linear .35s;
}

.privacy-notice.is-visible {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
    pointer-events: auto;
    transition: opacity .3s ease, transform .35s var(--ease), visibility 0s linear 0s;
}

.privacy-notice-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 35px;
    max-width: 1120px;
    margin: 0 auto;
    padding: 21px 24px;
    border: 1px solid rgba(213,182,116,.24);
    background: rgba(14,14,12,.97);
    box-shadow: 0 18px 50px rgba(0,0,0,.30);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
}

.privacy-notice-copy { min-width: 0; }

.privacy-notice-kicker {
    display: block;
    margin-bottom: 7px;
    color: var(--gold);
    font-family: "DM Sans", sans-serif;
    font-size: 7px;
    font-weight: 500;
    letter-spacing: .22em;
    text-transform: uppercase;
}

.privacy-notice-copy p {
    max-width: 720px;
    margin: 0;
    color: rgba(244,240,231,.68);
    font-family: "DM Sans", sans-serif;
    font-size: 10px;
    font-weight: 300;
    line-height: 1.6;
}

.privacy-notice-actions {
    display: flex;
    align-items: center;
    flex: 0 0 auto;
    gap: 18px;
}

.privacy-notice-actions a,
.privacy-notice-actions button {
    padding: 10px 0;
    border: 0;
    background: transparent;
    color: var(--ivory);
    font-family: "DM Sans", sans-serif;
    font-size: 8px;
    font-weight: 500;
    letter-spacing: .17em;
    text-transform: uppercase;
    cursor: pointer;
}

.privacy-notice-actions a { color: rgba(244,240,231,.60); }

.privacy-notice-actions button {
    padding: 10px 15px;
    border: 1px solid rgba(213,182,116,.48);
    color: var(--gold);
}

.privacy-notice-actions a:hover,
.privacy-notice-actions a:focus-visible,
.privacy-notice-actions button:hover,
.privacy-notice-actions button:focus-visible { color: var(--gold); }

@media (max-width: 800px) {
    .royal-footer-legal-links {
        justify-content: flex-start;
        margin: 22px 0 0;
        padding-top: 18px;
        border-top: 1px solid rgba(244,240,231,.08);
    }

    .privacy-notice {
        left: 12px;
        right: 12px;
        bottom: 12px;
    }

    .privacy-notice-inner {
        display: block;
        padding: 19px;
    }

    .privacy-notice-actions {
        justify-content: space-between;
        margin-top: 15px;
    }
}

@media (prefers-reduced-motion: reduce) {
    .privacy-notice,
    .privacy-notice.is-visible {
        transition: none;
        transform: none;
    }
}

/* =========================================================
   HOMEPAGE — MOBILE BACK TO TOP
   CENTRE EXACTLY LIKE FOUNDATION
========================================================= */

@media screen and (max-width: 800px) {

    .royal-footer-bottom > a {
        grid-column: 1 / -1 !important;
        justify-self: center !important;
        text-align: center !important;
        margin-left: 0 !important;
        margin-right: 0 !important;
    }

}