/* =============================================================
   NANA EFUA APIATEWA III
   HER STORY
   ROYAL HERITAGE × CONTEMPORARY EDITORIAL
   ============================================================= */


/* =============================================================
   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
   ============================================================= */

*,
*::before,
*::after {
    box-sizing: border-box;
}


html {
    margin: 0;
    padding: 0;

    scroll-behavior: smooth;
}


body {
    margin: 0;
    padding: 0;

    background: var(--ivory);
    color: var(--obsidian);

    font-family: "DM Sans", sans-serif;

    -webkit-font-smoothing: antialiased;
    text-rendering: optimizeLegibility;
}


img {
    display: block;
    max-width: 100%;
}


button,
a {
    font: inherit;
}


a {
    color: inherit;
}


button {
    border: 0;
    padding: 0;

    background: none;
}


/* =============================================================
   SITE HEADER
   ============================================================= */

.site-header {

    position: fixed;

    top: 0;
    left: 0;

    z-index: 1000;

    width: 100%;
    height: 92px;

    display: flex;
    align-items: center;
    justify-content: space-between;

    padding: 0 6vw;

    color: var(--ivory);

    pointer-events: none;
}


/* =============================================================
   ROYAL MARK
   ============================================================= */

.royal-mark {

    position: relative;

    display: inline-flex;
    align-items: center;

    gap: 14px;

    color: var(--ivory);

    text-decoration: none;

    pointer-events: auto;

    z-index: 1002;
}


.royal-mark-symbol {

    position: relative;

    width: 52px;
    height: 52px;

    display: flex;
    align-items: center;
    justify-content: center;
}


.royal-mark-symbol svg {

    width: 27px;
    height: 27px;

    overflow: visible;
}


.royal-mark-symbol circle {

    fill: none;

    stroke: var(--gold);

    stroke-width: 1;
}


.royal-mark-name {

    font-family: "DM Sans", sans-serif;

    font-size: 10px;
    font-weight: 500;

    letter-spacing: .34em;

    white-space: nowrap;
}


/* =============================================================
   DESKTOP NAVIGATION
   ============================================================= */

.main-navigation {

    position: relative;

    width: auto;
    height: auto;

    background: transparent;

    color: var(--ivory);

    opacity: 1;
    visibility: visible;

    transform: none;

    pointer-events: auto;

    transition: none;
}


.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;

    color: rgba(244, 240, 231, .78);

    font-family: "DM Sans", sans-serif;

    font-size: 9px;
    font-weight: 500;

    letter-spacing: .18em;

    line-height: 1;

    text-decoration: none;

    text-transform: uppercase;

    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);
}


/* =============================================================
   SECTION 2
   HER STORY HERO
   ============================================================= */

.story-hero {

    position: relative;

    width: 100%;

    min-height: 720px;
    height: 100svh;

    overflow: hidden;

    isolation: isolate;

    background: var(--obsidian);

    color: var(--ivory);
}


/* =============================================================
   HERO IMAGE
   ============================================================= */

.story-hero-media {

    position: absolute;

    inset: 0;

    z-index: -3;

    overflow: hidden;
}


.story-hero-image {

    width: 100%;
    height: 100%;

    object-fit: cover;

    object-position: center top;

    transform: scale(1.015);

    transition:
        transform 1.8s var(--ease);
}


.story-hero:hover .story-hero-image {

    transform: scale(1.035);
}


/* =============================================================
   HERO OVERLAY
   ============================================================= */

.story-hero-overlay {

    position: absolute;

    inset: 0;

    z-index: -2;

    background:
        linear-gradient(
            90deg,
            rgba(8, 8, 7, .82) 0%,
            rgba(8, 8, 7, .52) 34%,
            rgba(8, 8, 7, .18) 68%,
            rgba(8, 8, 7, .30) 100%
        );

    pointer-events: none;
}


.story-hero-overlay::after {

    content: "";

    position: absolute;

    inset: 0;

    background:
        linear-gradient(
            180deg,
            rgba(8, 8, 7, .42) 0%,
            transparent 28%,
            transparent 62%,
            rgba(8, 8, 7, .58) 100%
        );
}


/* =============================================================
   ADINKRA DETAIL
   ============================================================= */

.story-hero-adinkra {

    position: absolute;

    top: 50%;
    right: 7vw;

    width: clamp(150px, 16vw, 235px);

    aspect-ratio: 1;

    transform: translateY(-50%);

    opacity: .17;

    pointer-events: none;
}


.story-hero-adinkra svg {

    width: 100%;
    height: 100%;
}


.story-hero-adinkra circle {

    fill: none;

    stroke: var(--gold);

    stroke-width: .65;
}


/* =============================================================
   HERO CONTENT
   ============================================================= */

.story-hero-content {

    position: absolute;

    left: 7vw;
    bottom: 14vh;

    width: min(760px, 70vw);
}


.story-hero-kicker {

    display: flex;
    align-items: center;

    gap: 15px;

    margin-bottom: 28px;

    color: var(--gold);

    font-family: "DM Sans", sans-serif;

    font-size: 10px;
    font-weight: 500;

    letter-spacing: .22em;

    line-height: 1;

    text-transform: uppercase;
}


.story-hero-line {

    display: block;

    width: 38px;
    height: 1px;

    background: var(--gold-soft);
}


/* =============================================================
   HERO TITLE
   ============================================================= */

.story-hero-title {

    margin: 0;

    color: var(--ivory);

    font-family: "Cormorant Garamond", serif;

    font-size: clamp(82px, 11vw, 170px);

    font-weight: 300;

    letter-spacing: -.055em;

    line-height: .76;
}


.story-hero-title em {

    display: inline-block;

    margin-left: .55em;

    color: var(--gold);

    font-weight: 300;

    font-style: italic;

    letter-spacing: -.06em;
}


/* =============================================================
   HERO IDENTITY
   ============================================================= */

.story-hero-identity {

    margin-top: 48px;

    padding-left: 2px;

    max-width: 520px;
}


.story-hero-name {

    margin: 0 0 10px;

    color: var(--ivory);

    font-family: "Cormorant Garamond", serif;

    font-size: clamp(24px, 2.2vw, 32px);

    font-weight: 400;

    line-height: 1.1;
}


.story-hero-title-line {

    margin: 0;

    max-width: 500px;

    color: var(--ivory-soft);

    font-family: "DM Sans", sans-serif;

    font-size: 9px;

    font-weight: 400;

    letter-spacing: .1em;

    line-height: 1.8;

    text-transform: uppercase;
}


.story-hero-title-line span {

    margin: 0 7px;

    color: var(--gold);
}


/* =============================================================
   HERO LOCATION
   ============================================================= */

.story-hero-location {

    position: absolute;

    right: 7vw;
    bottom: 7vh;

    display: flex;
    align-items: center;

    gap: 13px;

    color: rgba(244, 240, 231, .58);

    font-family: "DM Sans", sans-serif;

    font-size: 8px;
    font-weight: 500;

    letter-spacing: .18em;

    line-height: 1;

    text-transform: uppercase;
}


.story-hero-location-divider {

    width: 24px;
    height: 1px;

    background: var(--gold-soft);
}


/* =============================================================
   HERO SCROLL CUE
   ============================================================= */

.story-hero-scroll {

    position: absolute;

    left: 7vw;
    bottom: 6.5vh;

    display: flex;
    align-items: center;

    gap: 13px;

    color: var(--ivory-soft);

    text-decoration: none;

    transition:
        color .35s var(--ease);
}


.story-hero-scroll:hover {

    color: var(--gold);
}


.story-hero-scroll-label {

    font-family: "DM Sans", sans-serif;

    font-size: 8px;
    font-weight: 500;

    letter-spacing: .18em;

    text-transform: uppercase;
}


.story-hero-scroll-line {

    width: 34px;
    height: 1px;

    background: rgba(244, 240, 231, .4);

    transition:
        width .45s var(--ease),
        background .35s var(--ease);
}


.story-hero-scroll:hover .story-hero-scroll-line {

    width: 48px;

    background: var(--gold);
}


.story-hero-scroll-arrow {

    width: 18px;
    height: 18px;

    display: inline-flex;
    align-items: center;
    justify-content: center;

    flex: 0 0 18px;

    color: var(--gold);

    transform: translateY(-1px);

    transition:
        transform .4s var(--ease),
        color .35s var(--ease);
}


.story-hero-scroll-arrow svg {

    display: block;

    width: 18px;
    height: 18px;

    fill: none;

    stroke: currentColor;

    stroke-width: 1.15;

    stroke-linecap: round;
    stroke-linejoin: round;

    overflow: visible;
}


.story-hero-scroll:hover .story-hero-scroll-arrow {

    transform: translateY(3px);

    color: var(--gold);
}


/* =============================================================
   MOBILE NAVIGATION
   ============================================================= */

@media screen and (max-width: 800px) {


    /* ---------------------------------------------------------
       HEADER
       --------------------------------------------------------- */

    .site-header {

        height: 82px;

        padding: 0 6vw;
    }


    /* ---------------------------------------------------------
       ROYAL MARK
       --------------------------------------------------------- */

    .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;
    }


    /* ---------------------------------------------------------
       MOBILE BUTTON
       --------------------------------------------------------- */

    .menu-toggle {

        display: flex;
    }


    /* ---------------------------------------------------------
       FULL-SCREEN MOBILE NAVIGATION
       --------------------------------------------------------- */

    .main-navigation {

        position: fixed;

        inset: 0;

        width: 100%;
        height: 100svh;

        display: flex;

        align-items: stretch;
        justify-content: flex-start;

        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;
    }


    /* ---------------------------------------------------------
       FULL-WIDTH NAVIGATION INNER
       --------------------------------------------------------- */

    .navigation-inner {

        width: 100%;
        height: 100%;

        padding: 115px 8vw 40px;

        display: flex;
        flex-direction: column;
        align-items: stretch;
        justify-content: space-between;
    }


    /* ---------------------------------------------------------
       MOBILE NAVIGATION HEADING
       --------------------------------------------------------- */

    .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);
    }


    /* ---------------------------------------------------------
       MOBILE NAVIGATION LINKS
       --------------------------------------------------------- */

    .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);
    }


    /* ---------------------------------------------------------
       NAVIGATION NUMBERS
       --------------------------------------------------------- */

    .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);
    }


    /* ---------------------------------------------------------
       MOBILE NAVIGATION FOOTER
       --------------------------------------------------------- */

    .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;
    }


    /* =========================================================
       HER STORY HERO — MOBILE
       ========================================================= */

    .story-hero {

        min-height: 680px;

        height: 100svh;
    }


    .story-hero-image {

        object-position: 50% 28%;

        transform: none;
    }


    .story-hero:hover .story-hero-image {

        transform: none;
    }


    /* ---------------------------------------------------------
       MOBILE HERO OVERLAY
       --------------------------------------------------------- */

    .story-hero-overlay {

        background:
            linear-gradient(
                180deg,
                rgba(8, 8, 7, .30) 0%,
                rgba(8, 8, 7, .10) 34%,
                rgba(8, 8, 7, .46) 66%,
                rgba(8, 8, 7, .84) 100%
            );
    }


    .story-hero-overlay::after {

        background:
            linear-gradient(
                180deg,
                rgba(8, 8, 7, .25) 0%,
                transparent 30%,
                transparent 52%,
                rgba(8, 8, 7, .48) 100%
            );
    }


    /* ---------------------------------------------------------
       MOBILE ADINKRA
       --------------------------------------------------------- */

    .story-hero-adinkra {

        top: 27%;
        right: 6vw;

        width: 105px;

        opacity: .13;

        transform: none;
    }


    /* ---------------------------------------------------------
       MOBILE HERO CONTENT
       --------------------------------------------------------- */

    .story-hero-content {

        left: 6.5vw;
        right: 6.5vw;

        bottom: 15vh;

        width: auto;
    }


    .story-hero-kicker {

        margin-bottom: 22px;

        font-size: 9px;

        letter-spacing: .18em;
    }


    .story-hero-line {

        width: 28px;
    }


    /* ---------------------------------------------------------
       MOBILE HERO TITLE
       --------------------------------------------------------- */

    .story-hero-title {

        font-size:
            clamp(
                76px,
                22vw,
                112px
            );

        line-height: .76;
    }


    .story-hero-title em {

        margin-left: .32em;
    }


    /* ---------------------------------------------------------
       MOBILE HERO IDENTITY
       --------------------------------------------------------- */

    .story-hero-identity {

        margin-top: 34px;

        max-width: 86vw;
    }


    .story-hero-name {

        font-size: 25px;

        line-height: 1.05;
    }


    .story-hero-title-line {

        max-width: 82vw;

        font-size: 8px;

        letter-spacing: .08em;

        line-height: 1.75;
    }


    .story-hero-title-line span {

        display: none;
    }


    /* ---------------------------------------------------------
       MOBILE LOCATION
       --------------------------------------------------------- */

    .story-hero-location {

        display: none;
    }


    /* ---------------------------------------------------------
       MOBILE SCROLL CUE
       --------------------------------------------------------- */

    .story-hero-scroll {

        left: 6.5vw;

        bottom: 5vh;
    }

}


/* =============================================================
   SMALL MOBILE
   ============================================================= */

@media screen and (max-width: 420px) {


    .story-hero-content {

        bottom: 14vh;
    }


    .story-hero-title {

        font-size:
            clamp(
                68px,
                21vw,
                94px
            );
    }


    .story-hero-name {

        font-size: 22px;
    }


    .story-hero-identity {

        margin-top: 29px;
    }


    .story-hero-scroll {

        bottom: 4.5vh;
    }









    .navigation-inner {

        padding: 105px 7vw 32px;
    }


    .navigation-links a {

        min-height: 58px;
        font-size: 28px;
    }



}


/* =============================================================
   SECTION 3 — ORIGINS
   ============================================================= */

.story-origins {

    position: relative;

    width: 100%;

    overflow: hidden;

    background: var(--ivory);

    color: var(--obsidian);

    padding:
        150px
        7vw
        145px;
}


.story-origins-inner {

    width: 100%;

    max-width: 1440px;

    margin: 0 auto;
}


/* =============================================================
   SECTION HEADER
   ============================================================= */

.story-origins-header {

    display: grid;

    grid-template-columns:
        minmax(180px, .55fr)
        minmax(0, 1.45fr);

    column-gap: 7vw;

    align-items: start;
}


.story-section-label {

    display: flex;

    align-items: center;

    gap: 13px;

    padding-top: 16px;

    color:
        rgba(
            17,
            17,
            15,
            .48
        );

    font-family: "DM Sans", sans-serif;

    font-size: 8px;

    font-weight: 500;

    letter-spacing: .18em;

    line-height: 1;

    text-transform: uppercase;
}


.story-section-number {

    color: var(--gold);

    font-size: 9px;
}


.story-section-label-line {

    width: 28px;

    height: 1px;

    background: var(--gold-soft);
}


/* =============================================================
   ORIGINS HEADING
   ============================================================= */

.story-origins-title {

    margin: 0;

    max-width: 900px;

    color: var(--obsidian);

    font-family: "Cormorant Garamond", serif;

    font-size:
        clamp(
            70px,
            8.2vw,
            125px
        );

    font-weight: 300;

    letter-spacing: -.055em;

    line-height: .82;
}


.story-origins-title em {

    color: #8e7744;

    font-weight: 300;

    font-style: italic;
}


/* =============================================================
   MAIN EDITORIAL GRID
   ============================================================= */

.story-origins-grid {

    display: grid;

    grid-template-columns:
        minmax(0, .95fr)
        minmax(0, 1.05fr);

    column-gap: 8vw;

    align-items: start;

    margin-top: 105px;
}


/* =============================================================
   ORIGINS IMAGE
   ============================================================= */

.story-origins-image {

    position: relative;

    margin: 0;

    width: 100%;

    max-width: 610px;

    justify-self: start;
}


.story-origins-image-frame {

    position: relative;

    width: 100%;

    aspect-ratio: 4 / 5;

    overflow: hidden;

    background: #ddd8cd;
}


.story-origins-image-frame::after {

    content: "";

    position: absolute;

    inset: 0;

    pointer-events: none;

    background:
        linear-gradient(
            180deg,
            rgba(8, 8, 7, 0) 60%,
            rgba(8, 8, 7, .18) 100%
        );
}


.story-origins-image-frame img {

    width: 100%;

    height: 100%;

    object-fit: cover;

    object-position: center center;

    transition:
        transform 1.2s var(--ease);
}


.story-origins-image:hover
.story-origins-image-frame img {

    transform: scale(1.025);
}


/* =============================================================
   IMAGE CAPTION
   ============================================================= */

.story-origins-caption {

    display: flex;

    align-items: center;

    justify-content: space-between;

    gap: 20px;

    margin-top: 14px;

    padding-top: 11px;

    border-top:
        1px solid
        rgba(
            17,
            17,
            15,
            .14
        );

    color:
        rgba(
            17,
            17,
            15,
            .42
        );

    font-family: "DM Sans", sans-serif;

    font-size: 7px;

    font-weight: 500;

    letter-spacing: .16em;

    line-height: 1.4;

    text-transform: uppercase;
}


.story-origins-caption span:first-child {

    color: var(--gold);

    font-size: 8px;
}


/* =============================================================
   STORY CONTENT
   ============================================================= */

.story-origins-content {

    max-width: 640px;

    padding-top: 38px;
}


.story-origins-lead {

    margin: 0;

    max-width: 590px;

    color:
        rgba(
            17,
            17,
            15,
            .88
        );

    font-family: "Cormorant Garamond", serif;

    font-size:
        clamp(
            28px,
            2.5vw,
            38px
        );

    font-weight: 400;

    letter-spacing: -.015em;

    line-height: 1.12;
}


.story-origins-text {

    margin-top: 42px;

    max-width: 570px;
}


.story-origins-text p {

    margin: 0 0 25px;

    color:
        rgba(
            17,
            17,
            15,
            .64
        );

    font-family: "DM Sans", sans-serif;

    font-size: 13px;

    font-weight: 400;

    letter-spacing: .005em;

    line-height: 1.95;
}


.story-origins-text p:last-child {

    margin-bottom: 0;
}


/* =============================================================
   ORIGIN DETAILS
   ============================================================= */

.story-origins-details {

    margin-top: 52px;

    border-top:
        1px solid
        rgba(
            17,
            17,
            15,
            .15
        );
}


.story-origin-detail {

    display: grid;

    grid-template-columns:
        .65fr
        1fr
        1fr;

    align-items: baseline;

    column-gap: 18px;

    padding:
        18px
        0;

    border-bottom:
        1px solid
        rgba(
            17,
            17,
            15,
            .11
        );
}


.story-origin-detail-label {

    color: var(--gold);

    font-family: "DM Sans", sans-serif;

    font-size: 7px;

    font-weight: 500;

    letter-spacing: .17em;

    line-height: 1.4;

    text-transform: uppercase;
}


.story-origin-detail-value {

    color: var(--obsidian);

    font-family: "Cormorant Garamond", serif;

    font-size: 25px;

    font-weight: 400;

    line-height: 1;
}


.story-origin-detail-note {

    color:
        rgba(
            17,
            17,
            15,
            .43
        );

    font-family: "DM Sans", sans-serif;

    font-size: 7px;

    font-weight: 400;

    letter-spacing: .08em;

    line-height: 1.5;

    text-transform: uppercase;
}


/* =============================================================
   CLOSING HERITAGE STATEMENT
   ============================================================= */

.story-origins-closing {

    display: grid;

    grid-template-columns:
        minmax(180px, .55fr)
        minmax(0, 1.45fr);

    column-gap: 7vw;

    margin-top: 120px;

    padding-top: 42px;

    border-top:
        1px solid
        rgba(
            17,
            17,
            15,
            .13
        );
}


.story-origins-closing-mark {

    position: relative;

    width: 62px;

    height: 62px;

    display: flex;

    align-items: center;

    justify-content: center;
}


.story-origins-closing-mark span {

    position: absolute;

    display: block;

    border:
        1px solid
        rgba(
            142,
            119,
            68,
            .55
        );

    border-radius: 50%;
}


.story-origins-closing-mark span:nth-child(1) {

    width: 62px;

    height: 62px;
}


.story-origins-closing-mark span:nth-child(2) {

    width: 40px;

    height: 40px;
}


.story-origins-closing-mark span:nth-child(3) {

    width: 16px;

    height: 16px;
}


.story-origins-closing p {

    margin: 0;

    max-width: 730px;

    color:
        rgba(
            17,
            17,
            15,
            .55
        );

    font-family: "Cormorant Garamond", serif;

    font-size:
        clamp(
            25px,
            2.5vw,
            37px
        );

    font-weight: 300;

    font-style: italic;

    letter-spacing: -.015em;

    line-height: 1.15;
}


/* =============================================================
   SECTION 3 — MOBILE
   ============================================================= */

@media screen and (max-width: 800px) {

    .story-origins {

        padding:
            100px
            6.5vw
            95px;
    }


    .story-origins-header {

        display: block;
    }


    .story-section-label {

        padding-top: 0;

        margin-bottom: 38px;
    }


    .story-origins-title {

        max-width: 92vw;

        font-size:
            clamp(
                62px,
                18vw,
                92px
            );

        line-height: .84;
    }


    /* ---------------------------------------------------------
       IMAGE
       --------------------------------------------------------- */

    .story-origins-grid {

        display: flex;

        flex-direction: column;

        margin-top: 65px;
    }


    .story-origins-image {

        width: 100%;

        max-width: none;

        order: 1;
    }


    .story-origins-image-frame {

        aspect-ratio: 4 / 5;
    }


    .story-origins-image-frame img {

        object-position: center center;

        transform: none;
    }


    .story-origins-image:hover
    .story-origins-image-frame img {

        transform: none;
    }


    /* ---------------------------------------------------------
       CONTENT
       --------------------------------------------------------- */

    .story-origins-content {

        width: 100%;

        max-width: none;

        padding-top: 48px;

        order: 2;
    }


    .story-origins-lead {

        max-width: none;

        font-size:
            clamp(
                27px,
                7.5vw,
                34px
            );

        line-height: 1.12;
    }


    .story-origins-text {

        margin-top: 34px;

        max-width: none;
    }


    .story-origins-text p {

        margin-bottom: 21px;

        font-size: 12px;

        line-height: 1.9;
    }


    /* ---------------------------------------------------------
       DETAILS
       --------------------------------------------------------- */

    .story-origins-details {

        margin-top: 48px;
    }


    .story-origin-detail {

        grid-template-columns:
            .65fr
            1fr;

        row-gap: 7px;

        column-gap: 15px;

        padding:
            17px
            0
            18px;
    }


    .story-origin-detail-note {

        grid-column: 2;

    }


    .story-origin-detail-value {

        font-size: 27px;
    }


    /* ---------------------------------------------------------
       CLOSING STATEMENT
       --------------------------------------------------------- */

    .story-origins-closing {

        display: block;

        margin-top: 85px;

        padding-top: 35px;
    }


    .story-origins-closing-mark {

        width: 52px;

        height: 52px;

        margin-bottom: 30px;
    }


    .story-origins-closing-mark span:nth-child(1) {

        width: 52px;

        height: 52px;
    }


    .story-origins-closing-mark span:nth-child(2) {

        width: 34px;

        height: 34px;
    }


    .story-origins-closing-mark span:nth-child(3) {

        width: 14px;

        height: 14px;
    }


    .story-origins-closing p {

        font-size:
            clamp(
                25px,
                7vw,
                32px
            );

        line-height: 1.15;
    }

}


/* =============================================================
   SECTION 3 — SMALL MOBILE
   ============================================================= */

@media screen and (max-width: 420px) {

    .story-origins {

        padding:
            88px
            6.5vw
            82px;
    }


    .story-origins-title {

        font-size:
            clamp(
                59px,
                18vw,
                82px
            );
    }


    .story-origins-grid {

        margin-top: 58px;
    }


    .story-origins-content {

        padding-top: 42px;
    }


    .story-origins-lead {

        font-size: 26px;
    }


    .story-origins-text p {

        font-size: 11.5px;

        line-height: 1.88;
    }

}

/* =============================================================
   SECTION 4 — THE JOURNEY
   ============================================================= */

.story-journey {

    position: relative;

    width: 100%;

    overflow: hidden;

    background: var(--obsidian);

    color: var(--ivory);

    padding:
        155px
        7vw
        155px;
}


.story-journey-inner {

    width: 100%;

    max-width: 1440px;

    margin: 0 auto;
}


/* -------------------------------------------------------------
   SECTION HEADER
   ------------------------------------------------------------- */

.story-journey-header {

    display: grid;

    grid-template-columns:
        minmax(180px, .55fr)
        minmax(0, 1.45fr);

    column-gap: 7vw;

    align-items: start;
}


.story-journey-heading {

    max-width: 900px;
}


.story-journey-eyebrow {

    margin: 0 0 24px;

    color: var(--gold);

    font-family: "DM Sans", sans-serif;

    font-size: 8px;

    font-weight: 500;

    letter-spacing: .22em;

    line-height: 1;

    text-transform: uppercase;
}


.story-journey-title {

    margin: 0;

    max-width: 900px;

    color: var(--ivory);

    font-family: "Cormorant Garamond", serif;

    font-size:
        clamp(
            72px,
            8.2vw,
            125px
        );

    font-weight: 300;

    letter-spacing: -.055em;

    line-height: .82;
}


.story-journey-title em {

    color: var(--gold);

    font-weight: 300;

    font-style: italic;
}


.story-journey-intro {

    max-width: 500px;

    margin: 48px 0 0;

    color: var(--ivory-soft);

    font-family: "Cormorant Garamond", serif;

    font-size:
        clamp(
            24px,
            2.1vw,
            32px
        );

    font-weight: 300;

    letter-spacing: -.01em;

    line-height: 1.18;
}


/* -------------------------------------------------------------
   TIMELINE
   ------------------------------------------------------------- */

.story-journey-timeline {

    position: relative;

    margin-top: 145px;
}


.story-journey-timeline::before {

    content: "";

    position: absolute;

    top: 0;
    bottom: 0;

    left: 50%;

    width: 1px;

    background:
        linear-gradient(
            180deg,
            transparent,
            var(--gold-faint) 8%,
            var(--gold-faint) 92%,
            transparent
        );

    transform: translateX(-50%);

    pointer-events: none;
}


/* -------------------------------------------------------------
   JOURNEY ITEM
   ------------------------------------------------------------- */

.story-journey-item {

    position: relative;

    display: grid;

    grid-template-columns:
        90px
        minmax(0, 1fr)
        minmax(0, 1fr);

    column-gap: 5vw;

    align-items: start;

    min-height: 620px;

    margin-bottom: 150px;
}


.story-journey-item:last-child {

    margin-bottom: 0;
}


/* -------------------------------------------------------------
   INDEX
   ------------------------------------------------------------- */

.story-journey-index {

    position: relative;

    display: flex;

    flex-direction: column;

    align-items: flex-start;

    gap: 14px;

    padding-top: 8px;

    z-index: 2;
}


.story-journey-index span:first-child {

    color: var(--gold);

    font-family: "DM Sans", sans-serif;

    font-size: 8px;

    font-weight: 500;

    letter-spacing: .18em;

    line-height: 1;
}


.story-journey-index-line {

    width: 30px;

    height: 1px;

    background: var(--gold-soft);
}


/* -------------------------------------------------------------
   IMAGE
   ------------------------------------------------------------- */

.story-journey-image {

    width: 100%;

    max-width: 570px;

    margin: 0;

    justify-self: end;
}


.story-journey-item-reverse
.story-journey-image {

    order: 2;

    justify-self: start;
}


.story-journey-image-frame {

    position: relative;

    width: 100%;

    aspect-ratio: 4 / 5;

    overflow: hidden;

    background: #1c1c19;
}


.story-journey-image-frame::after {

    content: "";

    position: absolute;

    inset: 0;

    pointer-events: none;

    background:
        linear-gradient(
            180deg,
            rgba(0,0,0,0) 58%,
            rgba(0,0,0,.24) 100%
        );
}


.story-journey-image-frame img {

    width: 100%;

    height: 100%;

    object-fit: cover;

    object-position: center center;

    transition:
        transform 1.2s var(--ease);
}


.story-journey-image:hover
.story-journey-image-frame img {

    transform: scale(1.025);
}


.story-journey-image-royal
.story-journey-image-frame {

    aspect-ratio: 3 / 4;
}


/* -------------------------------------------------------------
   CAPTION
   ------------------------------------------------------------- */

.story-journey-image figcaption {

    display: flex;

    align-items: center;

    justify-content: space-between;

    gap: 20px;

    margin-top: 14px;

    padding-top: 11px;

    border-top:
        1px solid
        rgba(244,240,231,.15);

    color:
        rgba(244,240,231,.38);

    font-family: "DM Sans", sans-serif;

    font-size: 7px;

    font-weight: 500;

    letter-spacing: .16em;

    line-height: 1.4;

    text-transform: uppercase;
}


.story-journey-image figcaption span:first-child {

    color: var(--gold);

    font-size: 8px;
}


/* -------------------------------------------------------------
   CONTENT
   ------------------------------------------------------------- */

.story-journey-content {

    max-width: 500px;

    padding-top: 80px;

    justify-self: start;
}


.story-journey-item-reverse
.story-journey-content {

    order: 1;

    justify-self: end;

    text-align: right;
}


.story-journey-period {

    margin: 0 0 25px;

    color: var(--gold);

    font-family: "DM Sans", sans-serif;

    font-size: 8px;

    font-weight: 500;

    letter-spacing: .19em;

    line-height: 1;

    text-transform: uppercase;
}


.story-journey-content h3 {

    margin: 0;

    color: var(--ivory);

    font-family: "Cormorant Garamond", serif;

    font-size:
        clamp(
            45px,
            4.2vw,
            68px
        );

    font-weight: 300;

    letter-spacing: -.04em;

    line-height: .92;
}


.story-journey-content h3 em {

    color: var(--gold);

    font-weight: 300;

    font-style: italic;
}


.story-journey-content p:not(.story-journey-period) {

    max-width: 470px;

    margin:
        35px
        0
        0;

    color:
        rgba(244,240,231,.58);

    font-family: "DM Sans", sans-serif;

    font-size: 12px;

    font-weight: 400;

    letter-spacing: .005em;

    line-height: 1.9;
}


.story-journey-item-reverse
.story-journey-content p:not(.story-journey-period) {

    margin-left: auto;
}


/* -------------------------------------------------------------
   CLOSING
   ------------------------------------------------------------- */

.story-journey-closing {

    display: grid;

    grid-template-columns:
        minmax(180px, .55fr)
        minmax(0, 1.45fr);

    column-gap: 7vw;

    margin-top: 30px;

    padding-top: 48px;

    border-top:
        1px solid
        rgba(244,240,231,.13);
}


.story-journey-closing-mark {

    position: relative;

    width: 62px;

    height: 62px;

    display: flex;

    align-items: center;

    justify-content: center;
}


.story-journey-closing-mark span {

    position: absolute;

    display: block;

    border:
        1px solid
        rgba(213,182,116,.48);

    border-radius: 50%;
}


.story-journey-closing-mark span:nth-child(1) {

    width: 62px;

    height: 62px;
}


.story-journey-closing-mark span:nth-child(2) {

    width: 40px;

    height: 40px;
}


.story-journey-closing-mark span:nth-child(3) {

    width: 16px;

    height: 16px;
}


.story-journey-closing p {

    max-width: 720px;

    margin: 0;

    color:
        rgba(244,240,231,.52);

    font-family: "Cormorant Garamond", serif;

    font-size:
        clamp(
            28px,
            3vw,
            43px
        );

    font-weight: 300;

    font-style: italic;

    letter-spacing: -.015em;

    line-height: 1.12;
}


/* =============================================================
   SECTION 4 — MOBILE
   ============================================================= */

@media screen and (max-width: 800px) {

    .story-journey {

        padding:
            100px
            6.5vw
            100px;
    }


    .story-journey-header {

        display: block;
    }


    .story-journey-heading {

        max-width: none;
    }


    .story-journey-eyebrow {

        margin-bottom: 20px;
    }


    .story-journey-title {

        max-width: 92vw;

        font-size:
            clamp(
                62px,
                18vw,
                92px
            );
    }


    .story-journey-intro {

        max-width: none;

        margin-top: 38px;

        font-size:
            clamp(
                24px,
                7vw,
                32px
            );
    }


    /* ---------------------------------------------------------
       MOBILE TIMELINE
       --------------------------------------------------------- */

    .story-journey-timeline {

        margin-top: 78px;
    }


    .story-journey-timeline::before {

        display: none;
    }


    .story-journey-item,
    .story-journey-item-reverse {

        display: flex;

        flex-direction: column;

        min-height: 0;

        margin-bottom: 105px;
    }


    .story-journey-index {

        flex-direction: row;

        align-items: center;

        gap: 13px;

        padding-top: 0;

        margin-bottom: 18px;
    }


    .story-journey-index-line {

        width: 28px;
    }


    /* ---------------------------------------------------------
       IMAGE
       --------------------------------------------------------- */

    .story-journey-image,
    .story-journey-item-reverse
    .story-journey-image {

        order: 1;

        width: 100%;

        max-width: none;

        justify-self: auto;
    }


    .story-journey-image-frame,
    .story-journey-image-royal
    .story-journey-image-frame {

        aspect-ratio: 4 / 5;
    }


    /* ---------------------------------------------------------
       CONTENT
       --------------------------------------------------------- */

    .story-journey-content,
    .story-journey-item-reverse
    .story-journey-content {

        order: 2;

        width: 100%;

        max-width: none;

        padding-top: 42px;

        justify-self: auto;

        text-align: left;
    }


    .story-journey-period {

        margin-bottom: 20px;

        font-size: 7px;
    }


    .story-journey-content h3 {

        max-width: 90vw;

        font-size:
            clamp(
                42px,
                12vw,
                58px
            );
    }


    .story-journey-content p:not(.story-journey-period),
    .story-journey-item-reverse
    .story-journey-content p:not(.story-journey-period) {

        max-width: none;

        margin-top: 28px;

        margin-left: 0;

        font-size: 12px;

        line-height: 1.88;
    }


    /* ---------------------------------------------------------
       CLOSING
       --------------------------------------------------------- */

    .story-journey-closing {

        display: block;

        margin-top: 0;

        padding-top: 35px;
    }


    .story-journey-closing-mark {

        width: 52px;

        height: 52px;

        margin-bottom: 30px;
    }


    .story-journey-closing-mark span:nth-child(1) {

        width: 52px;

        height: 52px;
    }


    .story-journey-closing-mark span:nth-child(2) {

        width: 34px;

        height: 34px;
    }


    .story-journey-closing-mark span:nth-child(3) {

        width: 14px;

        height: 14px;
    }


    .story-journey-closing p {

        font-size:
            clamp(
                25px,
                7vw,
                32px
            );

        line-height: 1.15;
    }

}


/* =============================================================
   SECTION 4 — SMALL MOBILE
   ============================================================= */

@media screen and (max-width: 420px) {

    .story-journey {

        padding:
            88px
            6.5vw
            82px;
    }


    .story-journey-timeline {

        margin-top: 65px;
    }


    .story-journey-item {

        margin-bottom: 88px;
    }


    .story-journey-content {

        padding-top: 38px;
    }


    .story-journey-content h3 {

        font-size: 40px;
    }


    .story-journey-content p:not(.story-journey-period) {

        font-size: 11.5px;

        line-height: 1.88;
    }

}

/* =============================================================
   SECTION 5 — THE CALLING
   ============================================================= */

.story-calling {

    position: relative;

    width: 100%;

    overflow: hidden;

    background: var(--obsidian);

    color: var(--ivory);

    padding:
        165px
        7vw
        155px;
}


.story-calling-inner {

    width: 100%;

    max-width: 1440px;

    margin: 0 auto;
}


/* -------------------------------------------------------------
   SECTION HEADER
   ------------------------------------------------------------- */

.story-calling-header {

    display: grid;

    grid-template-columns:
        minmax(180px, .55fr)
        minmax(0, 1.45fr);

    column-gap: 7vw;

    align-items: start;
}


.story-calling-heading {

    max-width: 930px;
}


.story-calling-eyebrow {

    margin: 0 0 25px;

    color: var(--gold);

    font-family: "DM Sans", sans-serif;

    font-size: 8px;

    font-weight: 500;

    letter-spacing: .22em;

    line-height: 1;

    text-transform: uppercase;
}


.story-calling-title {

    max-width: 900px;

    margin: 0;

    color: var(--ivory);

    font-family: "Cormorant Garamond", serif;

    font-size:
        clamp(
            72px,
            8.3vw,
            128px
        );

    font-weight: 300;

    letter-spacing: -.055em;

    line-height: .82;
}


.story-calling-title em {

    color: var(--gold);

    font-weight: 300;

    font-style: italic;
}


/* -------------------------------------------------------------
   FEATURE IMAGE
   ------------------------------------------------------------- */

.story-calling-feature {

    position: relative;

    display: grid;

    grid-template-columns:
        minmax(0, 1fr)
        110px;

    column-gap: 5vw;

    align-items: end;

    margin-top: 120px;
}


.story-calling-image {

    width: 100%;

    max-width: 900px;

    margin: 0;
}


.story-calling-image-frame {

    position: relative;

    width: 100%;

    aspect-ratio: 16 / 10;

    overflow: hidden;

    background: #1c1c19;
}


.story-calling-image-frame::after {

    content: "";

    position: absolute;

    inset: 0;

    pointer-events: none;

    background:
        linear-gradient(
            180deg,
            rgba(0,0,0,0) 50%,
            rgba(0,0,0,.34) 100%
        );
}


.story-calling-image-frame img {

    width: 100%;

    height: 100%;

    object-fit: cover;

    object-position: center top;

    transition:
        transform 1.4s var(--ease);
}


.story-calling-image:hover
.story-calling-image-frame img {

    transform: scale(1.025);
}


/* -------------------------------------------------------------
   IMAGE CAPTION
   ------------------------------------------------------------- */

.story-calling-caption {

    display: flex;

    align-items: center;

    justify-content: space-between;

    gap: 20px;

    margin-top: 14px;

    padding-top: 11px;

    border-top:
        1px solid
        rgba(244,240,231,.15);

    color:
        rgba(244,240,231,.38);

    font-family: "DM Sans", sans-serif;

    font-size: 7px;

    font-weight: 500;

    letter-spacing: .16em;

    line-height: 1.4;

    text-transform: uppercase;
}


.story-calling-caption span:first-child {

    color: var(--gold);

    font-size: 8px;
}


/* -------------------------------------------------------------
   DATE
   ------------------------------------------------------------- */

.story-calling-date {

    display: flex;

    flex-direction: column;

    align-items: flex-start;

    gap: 16px;

    padding-bottom: 42px;
}


.story-calling-date-line {

    width: 30px;

    height: 1px;

    background: var(--gold-soft);
}


.story-calling-date > span:last-child {

    color:
        rgba(244,240,231,.58);

    font-family: "DM Sans", sans-serif;

    font-size: 8px;

    font-weight: 500;

    letter-spacing: .17em;

    line-height: 1.7;

    text-transform: uppercase;
}


/* -------------------------------------------------------------
   STORY
   ------------------------------------------------------------- */

.story-calling-story {

    display: grid;

    grid-template-columns:
        minmax(180px, .55fr)
        minmax(0, 1.45fr);

    column-gap: 7vw;

    margin-top: 135px;

    padding-top: 55px;

    border-top:
        1px solid
        rgba(244,240,231,.13);
}


.story-calling-story-mark {

    position: relative;

    width: 62px;

    height: 62px;

    display: flex;

    align-items: center;

    justify-content: center;
}


.story-calling-story-mark span {

    position: absolute;

    display: block;

    border:
        1px solid
        rgba(213,182,116,.48);

    border-radius: 50%;
}


.story-calling-story-mark span:nth-child(1) {

    width: 62px;

    height: 62px;
}


.story-calling-story-mark span:nth-child(2) {

    width: 40px;

    height: 40px;
}


.story-calling-story-mark span:nth-child(3) {

    width: 16px;

    height: 16px;
}


.story-calling-copy {

    max-width: 760px;
}


.story-calling-lead {

    max-width: 700px;

    margin: 0;

    color: var(--ivory);

    font-family: "Cormorant Garamond", serif;

    font-size:
        clamp(
            32px,
            3.3vw,
            48px
        );

    font-weight: 300;

    letter-spacing: -.018em;

    line-height: 1.08;
}


.story-calling-text {

    max-width: 610px;

    margin-top: 48px;
}


.story-calling-text p {

    margin: 0 0 25px;

    color:
        rgba(244,240,231,.58);

    font-family: "DM Sans", sans-serif;

    font-size: 13px;

    font-weight: 400;

    letter-spacing: .005em;

    line-height: 1.95;
}


.story-calling-text p:last-child {

    margin-bottom: 0;
}


/* -------------------------------------------------------------
   RESPONSIBILITY
   ------------------------------------------------------------- */

.story-calling-responsibility {

    display: grid;

    grid-template-columns:
        minmax(180px, .55fr)
        minmax(0, 1.45fr);

    column-gap: 7vw;

    margin-top: 125px;

    padding-top: 40px;

    border-top:
        1px solid
        rgba(244,240,231,.13);
}


.story-calling-responsibility-label {

    display: flex;

    align-items: center;

    gap: 13px;

    padding-top: 8px;

    color:
        rgba(244,240,231,.48);

    font-family: "DM Sans", sans-serif;

    font-size: 8px;

    font-weight: 500;

    letter-spacing: .18em;

    line-height: 1;

    text-transform: uppercase;
}


.story-calling-responsibility-line {

    width: 28px;

    height: 1px;

    background: var(--gold-soft);
}


.story-calling-responsibility > p {

    max-width: 760px;

    margin: 0;

    color:
        rgba(244,240,231,.62);

    font-family: "Cormorant Garamond", serif;

    font-size:
        clamp(
            28px,
            3vw,
            43px
        );

    font-weight: 300;

    letter-spacing: -.015em;

    line-height: 1.12;
}


/* -------------------------------------------------------------
   CLOSING
   ------------------------------------------------------------- */

.story-calling-closing {

    display: flex;

    align-items: center;

    gap: 30px;

    margin-top: 120px;

    padding-top: 38px;

    border-top:
        1px solid
        rgba(244,240,231,.10);
}


.story-calling-closing-symbol {

    flex: 0 0 62px;

    width: 62px;

    height: 62px;

    display: flex;

    align-items: center;

    justify-content: center;
}


.story-calling-closing-symbol svg {

    width: 100%;

    height: 100%;
}


.story-calling-closing-symbol circle {

    fill: none;

    stroke: var(--gold);

    stroke-width: .65;
}


.story-calling-closing p {

    max-width: 620px;

    margin: 0;

    color:
        rgba(244,240,231,.48);

    font-family: "Cormorant Garamond", serif;

    font-size:
        clamp(
            25px,
            2.6vw,
            38px
        );

    font-weight: 300;

    font-style: italic;

    letter-spacing: -.015em;

    line-height: 1.12;
}


/* =============================================================
   SECTION 5 — MOBILE
   ============================================================= */

@media screen and (max-width: 800px) {

    .story-calling {

        padding:
            100px
            6.5vw
            100px;
    }


    .story-calling-header {

        display: block;
    }


    .story-calling-heading {

        max-width: none;
    }


    .story-calling-eyebrow {

        margin-bottom: 20px;
    }


    .story-calling-title {

        max-width: 92vw;

        font-size:
            clamp(
                60px,
                17.5vw,
                90px
            );
    }


    /* ---------------------------------------------------------
       FEATURE
       --------------------------------------------------------- */

    .story-calling-feature {

        display: block;

        margin-top: 70px;
    }


    .story-calling-image {

        width: 100%;

        max-width: none;
    }


    .story-calling-image-frame {

        aspect-ratio: 4 / 5;
    }


    .story-calling-date {

        flex-direction: row;

        align-items: center;

        gap: 13px;

        padding: 20px 0 0;
    }


    .story-calling-date-line {

        width: 28px;
    }


    .story-calling-date > span:last-child {

        font-size: 7px;

        line-height: 1;

        letter-spacing: .15em;
    }


    /* ---------------------------------------------------------
       STORY
       --------------------------------------------------------- */

    .story-calling-story {

        display: block;

        margin-top: 85px;

        padding-top: 35px;
    }


    .story-calling-story-mark {

        width: 52px;

        height: 52px;

        margin-bottom: 35px;
    }


    .story-calling-story-mark span:nth-child(1) {

        width: 52px;

        height: 52px;
    }


    .story-calling-story-mark span:nth-child(2) {

        width: 34px;

        height: 34px;
    }


    .story-calling-story-mark span:nth-child(3) {

        width: 14px;

        height: 14px;
    }


    .story-calling-copy {

        max-width: none;
    }


    .story-calling-lead {

        max-width: none;

        font-size:
            clamp(
                29px,
                7.8vw,
                36px
            );

        line-height: 1.1;
    }


    .story-calling-text {

        max-width: none;

        margin-top: 35px;
    }


    .story-calling-text p {

        margin-bottom: 21px;

        font-size: 12px;

        line-height: 1.9;
    }


    /* ---------------------------------------------------------
       RESPONSIBILITY
       --------------------------------------------------------- */

    .story-calling-responsibility {

        display: block;

        margin-top: 85px;

        padding-top: 35px;
    }


    .story-calling-responsibility-label {

        padding-top: 0;

        margin-bottom: 30px;

        font-size: 7px;
    }


    .story-calling-responsibility > p {

        max-width: none;

        font-size:
            clamp(
                27px,
                7vw,
                34px
            );

        line-height: 1.14;
    }


    /* ---------------------------------------------------------
       CLOSING
       --------------------------------------------------------- */

    .story-calling-closing {

        align-items: flex-start;

        gap: 22px;

        margin-top: 85px;

        padding-top: 30px;
    }


    .story-calling-closing-symbol {

        flex: 0 0 48px;

        width: 48px;

        height: 48px;
    }


    .story-calling-closing p {

        max-width: none;

        font-size:
            clamp(
                24px,
                6.8vw,
                31px
            );
    }

}


/* =============================================================
   SECTION 5 — SMALL MOBILE
   ============================================================= */

@media screen and (max-width: 420px) {

    .story-calling {

        padding:
            88px
            6.5vw
            82px;
    }


    .story-calling-title {

        font-size:
            clamp(
                56px,
                17.5vw,
                82px
            );
    }


    .story-calling-feature {

        margin-top: 62px;
    }


    .story-calling-image-frame {

        aspect-ratio: 4 / 5;
    }


    .story-calling-story {

        margin-top: 75px;
    }


    .story-calling-lead {

        font-size: 27px;
    }


    .story-calling-text p {

        font-size: 11.5px;

        line-height: 1.88;
    }


    .story-calling-responsibility {

        margin-top: 75px;
    }


    .story-calling-responsibility > p {

        font-size: 26px;
    }


    .story-calling-closing {

        margin-top: 75px;
    }

}

/* =============================================================
   SECTION 6 — THE LEGACY
   ============================================================= */

.story-legacy {

    position: relative;

    width: 100%;

    overflow: hidden;

    background: var(--ivory);

    color: var(--obsidian);

    padding:
        155px
        7vw
        155px;
}


.story-legacy-inner {

    width: 100%;

    max-width: 1440px;

    margin: 0 auto;
}


/* -------------------------------------------------------------
   SECTION HEADER
   ------------------------------------------------------------- */

.story-legacy-header {

    display: grid;

    grid-template-columns:
        minmax(180px, .55fr)
        minmax(0, 1.45fr);

    column-gap: 7vw;

    align-items: start;
}


.story-legacy-heading {

    max-width: 920px;
}


.story-legacy-eyebrow {

    margin: 0 0 25px;

    color: #8e7744;

    font-family: "DM Sans", sans-serif;

    font-size: 8px;

    font-weight: 500;

    letter-spacing: .22em;

    line-height: 1;

    text-transform: uppercase;
}


.story-legacy-title {

    max-width: 900px;

    margin: 0;

    color: var(--obsidian);

    font-family: "Cormorant Garamond", serif;

    font-size:
        clamp(
            72px,
            8.2vw,
            125px
        );

    font-weight: 300;

    letter-spacing: -.055em;

    line-height: .82;
}


.story-legacy-title em {

    color: #8e7744;

    font-weight: 300;

    font-style: italic;
}


.story-legacy-intro {

    max-width: 540px;

    margin: 48px 0 0;

    color:
        rgba(17,17,15,.62);

    font-family: "Cormorant Garamond", serif;

    font-size:
        clamp(
            24px,
            2.2vw,
            33px
        );

    font-weight: 300;

    letter-spacing: -.01em;

    line-height: 1.18;
}


/* -------------------------------------------------------------
   FEATURE
   ------------------------------------------------------------- */

.story-legacy-feature {

    display: grid;

    grid-template-columns:
        minmax(0, 1.45fr)
        minmax(220px, .55fr);

    column-gap: 7vw;

    align-items: end;

    margin-top: 120px;
}


.story-legacy-image {

    width: 100%;

    max-width: 820px;

    margin: 0;
}


.story-legacy-image-frame {

    position: relative;

    width: 100%;

    aspect-ratio: 16 / 10;

    overflow: hidden;

    background: #ddd8cd;
}


.story-legacy-image-frame::after {

    content: "";

    position: absolute;

    inset: 0;

    pointer-events: none;

    background:
        linear-gradient(
            180deg,
            rgba(8,8,7,0) 55%,
            rgba(8,8,7,.18) 100%
        );
}


.story-legacy-image-frame img {

    width: 100%;

    height: 100%;

    object-fit: cover;

    object-position: center center;

    transition:
        transform 1.2s var(--ease);
}


.story-legacy-image:hover
.story-legacy-image-frame img {

    transform: scale(1.025);
}


/* -------------------------------------------------------------
   IMAGE CAPTION
   ------------------------------------------------------------- */

.story-legacy-caption {

    display: flex;

    align-items: center;

    justify-content: space-between;

    gap: 20px;

    margin-top: 14px;

    padding-top: 11px;

    border-top:
        1px solid
        rgba(17,17,15,.14);

    color:
        rgba(17,17,15,.40);

    font-family: "DM Sans", sans-serif;

    font-size: 7px;

    font-weight: 500;

    letter-spacing: .16em;

    line-height: 1.4;

    text-transform: uppercase;
}


.story-legacy-caption span:first-child {

    color: #8e7744;

    font-size: 8px;
}


/* -------------------------------------------------------------
   FEATURE STATEMENT
   ------------------------------------------------------------- */

.story-legacy-statement {

    max-width: 390px;

    padding-bottom: 55px;
}


.story-legacy-statement p {

    margin: 0;

    color:
        rgba(17,17,15,.68);

    font-family: "Cormorant Garamond", serif;

    font-size:
        clamp(
            30px,
            3vw,
            44px
        );

    font-weight: 300;

    font-style: italic;

    letter-spacing: -.018em;

    line-height: 1.08;
}


/* -------------------------------------------------------------
   LEGACY PILLARS
   ------------------------------------------------------------- */

.story-legacy-pillars {

    display: grid;

    grid-template-columns:
        repeat(4, minmax(0, 1fr));

    column-gap: 3vw;

    margin-top: 125px;

    border-top:
        1px solid
        rgba(17,17,15,.14);
}


.story-legacy-pillar {

    min-height: 300px;

    padding:
        25px
        0
        15px;

    border-bottom:
        1px solid
        rgba(17,17,15,.14);
}


.story-legacy-pillar-number {

    display: block;

    margin-bottom: 55px;

    color: #8e7744;

    font-family: "DM Sans", sans-serif;

    font-size: 8px;

    font-weight: 500;

    letter-spacing: .18em;

    line-height: 1;
}


.story-legacy-pillar h3 {

    margin: 0;

    color: var(--obsidian);

    font-family: "Cormorant Garamond", serif;

    font-size:
        clamp(
            32px,
            3vw,
            46px
        );

    font-weight: 400;

    letter-spacing: -.025em;

    line-height: .95;
}


.story-legacy-pillar p {

    max-width: 250px;

    margin: 28px 0 0;

    color:
        rgba(17,17,15,.57);

    font-family: "DM Sans", sans-serif;

    font-size: 11px;

    font-weight: 400;

    letter-spacing: .005em;

    line-height: 1.85;
}


/* -------------------------------------------------------------
   IMPACT
   ------------------------------------------------------------- */

.story-legacy-impact {

    display: grid;

    grid-template-columns:
        minmax(180px, .8fr)
        minmax(0, 1.2fr);

    column-gap: 7vw;

    align-items: center;

    margin-top: 125px;

    padding:
        55px
        0;

    border-top:
        1px solid
        rgba(17,17,15,.14);

    border-bottom:
        1px solid
        rgba(17,17,15,.14);
}


.story-legacy-impact-number {

    color: var(--obsidian);

    font-family: "Cormorant Garamond", serif;

    font-size:
        clamp(
            110px,
            13vw,
            190px
        );

    font-weight: 300;

    letter-spacing: -.07em;

    line-height: .72;
}


.story-legacy-impact-number span {

    color: #8e7744;

    font-size: .55em;

    vertical-align: top;
}


.story-legacy-impact-copy {

    max-width: 520px;
}


.story-legacy-impact-label {

    margin: 0 0 22px;

    color: #8e7744;

    font-family: "DM Sans", sans-serif;

    font-size: 8px;

    font-weight: 500;

    letter-spacing: .19em;

    line-height: 1;

    text-transform: uppercase;
}


.story-legacy-impact-copy p:last-child {

    margin: 0;

    color:
        rgba(17,17,15,.60);

    font-family: "Cormorant Garamond", serif;

    font-size:
        clamp(
            25px,
            2.5vw,
            37px
        );

    font-weight: 300;

    letter-spacing: -.012em;

    line-height: 1.12;
}


/* -------------------------------------------------------------
   CLOSING
   ------------------------------------------------------------- */

.story-legacy-closing {

    display: grid;

    grid-template-columns:
        minmax(180px, .55fr)
        minmax(0, 1.45fr);

    column-gap: 7vw;

    margin-top: 120px;

    padding-top: 42px;

    border-top:
        1px solid
        rgba(17,17,15,.13);
}


.story-legacy-closing-mark {

    position: relative;

    width: 62px;

    height: 62px;

    display: flex;

    align-items: center;

    justify-content: center;
}


.story-legacy-closing-mark span {

    position: absolute;

    display: block;

    border:
        1px solid
        rgba(142,119,68,.55);

    border-radius: 50%;
}


.story-legacy-closing-mark span:nth-child(1) {

    width: 62px;

    height: 62px;
}


.story-legacy-closing-mark span:nth-child(2) {

    width: 40px;

    height: 40px;
}


.story-legacy-closing-mark span:nth-child(3) {

    width: 16px;

    height: 16px;
}


.story-legacy-closing-copy {

    max-width: 760px;
}


.story-legacy-closing-lead {

    margin: 0;

    color:
        rgba(17,17,15,.65);

    font-family: "Cormorant Garamond", serif;

    font-size:
        clamp(
            30px,
            3vw,
            45px
        );

    font-weight: 300;

    font-style: italic;

    letter-spacing: -.018em;

    line-height: 1.12;
}


.story-legacy-closing-small {

    margin: 35px 0 0;

    color:
        rgba(17,17,15,.38);

    font-family: "DM Sans", sans-serif;

    font-size: 7px;

    font-weight: 500;

    letter-spacing: .20em;

    line-height: 1;

    text-transform: uppercase;
}


/* =============================================================
   SECTION 6 — MOBILE
   ============================================================= */

@media screen and (max-width: 800px) {

    .story-legacy {

        padding:
            100px
            6.5vw
            100px;
    }


    .story-legacy-header {

        display: block;
    }


    .story-legacy-heading {

        max-width: none;
    }


    .story-legacy-eyebrow {

        margin-bottom: 20px;
    }


    .story-legacy-title {

        max-width: 92vw;

        font-size:
            clamp(
                60px,
                17.5vw,
                90px
            );
    }


    .story-legacy-intro {

        max-width: none;

        margin-top: 38px;

        font-size:
            clamp(
                24px,
                7vw,
                32px
            );
    }


    /* ---------------------------------------------------------
       FEATURE
       --------------------------------------------------------- */

    .story-legacy-feature {

        display: flex;

        flex-direction: column;

        margin-top: 70px;
    }


    .story-legacy-image {

        width: 100%;

        max-width: none;

        order: 1;
    }


    .story-legacy-image-frame {

        aspect-ratio: 4 / 5;
    }


    .story-legacy-statement {

        max-width: none;

        padding: 38px 0 0;

        order: 2;
    }


    .story-legacy-statement p {

        max-width: none;

        font-size:
            clamp(
                28px,
                7.5vw,
                35px
            );
    }


    /* ---------------------------------------------------------
       PILLARS
       --------------------------------------------------------- */

    .story-legacy-pillars {

        display: grid;

        grid-template-columns:
            repeat(2, minmax(0, 1fr));

        column-gap: 7vw;

        row-gap: 0;

        margin-top: 85px;
    }


    .story-legacy-pillar {

        min-height: 255px;

        padding:
            21px
            0
            25px;
    }


    .story-legacy-pillar-number {

        margin-bottom: 40px;

        font-size: 7px;
    }


    .story-legacy-pillar h3 {

        font-size: 34px;
    }


    .story-legacy-pillar p {

        max-width: none;

        margin-top: 21px;

        font-size: 11px;

        line-height: 1.85;
    }


    /* ---------------------------------------------------------
       IMPACT
       --------------------------------------------------------- */

    .story-legacy-impact {

        display: block;

        margin-top: 85px;

        padding:
            42px
            0;
    }


    .story-legacy-impact-number {

        font-size:
            clamp(
                105px,
                29vw,
                145px
            );

        line-height: .72;
    }


    .story-legacy-impact-copy {

        max-width: none;

        margin-top: 40px;
    }


    .story-legacy-impact-label {

        margin-bottom: 18px;

        font-size: 7px;
    }


    .story-legacy-impact-copy p:last-child {

        font-size:
            clamp(
                25px,
                7vw,
                32px
            );
    }


    /* ---------------------------------------------------------
       CLOSING
       --------------------------------------------------------- */

    .story-legacy-closing {

        display: block;

        margin-top: 85px;

        padding-top: 35px;
    }


    .story-legacy-closing-mark {

        width: 52px;

        height: 52px;

        margin-bottom: 30px;
    }


    .story-legacy-closing-mark span:nth-child(1) {

        width: 52px;

        height: 52px;
    }


    .story-legacy-closing-mark span:nth-child(2) {

        width: 34px;

        height: 34px;
    }


    .story-legacy-closing-mark span:nth-child(3) {

        width: 14px;

        height: 14px;
    }


    .story-legacy-closing-lead {

        font-size:
            clamp(
                26px,
                7vw,
                33px
            );

        line-height: 1.14;
    }


    .story-legacy-closing-small {

        margin-top: 28px;

        font-size: 7px;
    }

}


/* =============================================================
   SECTION 6 — SMALL MOBILE
   ============================================================= */

@media screen and (max-width: 420px) {

    .story-legacy {

        padding:
            88px
            6.5vw
            82px;
    }


    .story-legacy-title {

        font-size:
            clamp(
                56px,
                17.5vw,
                82px
            );
    }


    .story-legacy-feature {

        margin-top: 62px;
    }


    .story-legacy-statement {

        padding-top: 35px;
    }


    .story-legacy-statement p {

        font-size: 27px;
    }


    .story-legacy-pillars {

        margin-top: 75px;

        column-gap: 6vw;
    }


    .story-legacy-pillar {

        min-height: 245px;
    }


    .story-legacy-pillar h3 {

        font-size: 31px;
    }


    .story-legacy-pillar p {

        font-size: 10.5px;

        line-height: 1.82;
    }


    .story-legacy-impact {

        margin-top: 75px;
    }


    .story-legacy-impact-number {

        font-size: 105px;
    }


    .story-legacy-impact-copy {

        margin-top: 35px;
    }


    .story-legacy-impact-copy p:last-child {

        font-size: 25px;
    }


    .story-legacy-closing {

        margin-top: 75px;
    }


    .story-legacy-closing-lead {

        font-size: 25px;
    }

}

/* =========================================================
   SECTION 7 — HER STORY CONTINUES
   ========================================================= */

.story-continues {
  position: relative;
  background: var(--obsidian);
  color: var(--ivory);
  overflow: hidden;
  padding: 150px 0 120px;
}

.story-continues-inner {
  width: min(1280px, 84vw);
  margin: 0 auto;
}


/* ---------------------------------------------------------
   TOP
   --------------------------------------------------------- */

.story-continues-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  padding-bottom: 70px;
}

.story-continues-label {
  display: flex;
  align-items: center;
  gap: 14px;
}

.story-continues-label .story-section-number {
  font-family: "DM Sans", sans-serif;
  font-size: 8px;
  font-weight: 500;
  letter-spacing: .18em;
  color: var(--gold);
}

.story-continues-label .story-section-label-line {
  display: block;
  width: 42px;
  height: 1px;
  background: var(--gold-soft);
}

.story-continues-label > span:last-child {
  font-family: "DM Sans", sans-serif;
  font-size: 8px;
  font-weight: 500;
  letter-spacing: .24em;
  text-transform: uppercase;
  color: var(--ivory-soft);
}

.story-continues-kicker {
  margin: 0;
  font-family: "DM Sans", sans-serif;
  font-size: 7px;
  font-weight: 500;
  letter-spacing: .28em;
  color: var(--gold-soft);
  text-transform: uppercase;
}


/* ---------------------------------------------------------
   MAIN EDITORIAL AREA
   --------------------------------------------------------- */

.story-continues-main {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(320px, .85fr);
  gap: 100px;
  align-items: end;
  padding: 40px 0 115px;
}

.story-continues-heading {
  max-width: 760px;
}

.story-continues-title {
  margin: 0;
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(64px, 7.5vw, 116px);
  font-weight: 400;
  line-height: .88;
  letter-spacing: -.045em;
  color: var(--ivory);
}

.story-continues-title em {
  display: block;
  color: var(--gold);
  font-style: italic;
  font-weight: 400;
}

.story-continues-copy {
  max-width: 430px;
  padding-bottom: 4px;
}

.story-continues-copy p {
  margin: 0 0 24px;
  font-family: "DM Sans", sans-serif;
  font-size: 13px;
  font-weight: 400;
  line-height: 1.9;
  letter-spacing: .01em;
  color: rgba(244,240,231,.62);
}

.story-continues-copy p:last-child {
  margin-bottom: 0;
}

.story-continues-copy .story-continues-lead {
  margin-bottom: 28px;
  font-family: "Cormorant Garamond", serif;
  font-size: 22px;
  line-height: 1.45;
  letter-spacing: -.01em;
  color: rgba(244,240,231,.9);
}


/* ---------------------------------------------------------
   DIVIDER
   --------------------------------------------------------- */

.story-continues-divider {
  width: 100%;
  height: 1px;
  background: rgba(213,182,116,.18);
}

.story-continues-divider span {
  display: block;
  width: 72px;
  height: 1px;
  background: var(--gold);
}


/* ---------------------------------------------------------
   CLOSING STATEMENT
   --------------------------------------------------------- */

.story-continues-closing {
  display: grid;
  grid-template-columns: 120px minmax(0, 1fr);
  gap: 55px;
  align-items: center;
  padding: 100px 0 105px;
}

.story-continues-mark {
  position: relative;
  width: 82px;
  height: 82px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.story-continues-mark span {
  position: absolute;
  display: block;
  border: 1px solid var(--gold-soft);
  border-radius: 50%;
}

.story-continues-mark span:nth-child(1) {
  width: 76px;
  height: 76px;
}

.story-continues-mark span:nth-child(2) {
  width: 51px;
  height: 51px;
}

.story-continues-mark span:nth-child(3) {
  width: 25px;
  height: 25px;
  background: rgba(213,182,116,.08);
}

.story-continues-closing-copy {
  max-width: 720px;
}

.story-continues-closing-lead {
  margin: 0 0 24px;
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(42px, 4.8vw, 70px);
  font-weight: 400;
  line-height: .98;
  letter-spacing: -.035em;
  color: var(--ivory);
}

.story-continues-closing-small {
  margin: 0;
  font-family: "DM Sans", sans-serif;
  font-size: 7px;
  font-weight: 500;
  letter-spacing: .3em;
  color: var(--gold);
}


/* ---------------------------------------------------------
   NEXT-CHAPTER LINKS
   --------------------------------------------------------- */

.story-continues-links {
  border-top: 1px solid rgba(213,182,116,.18);
}

.story-continues-link {
  min-height: 88px;
  display: grid;
  grid-template-columns: 55px minmax(0, 1fr) 30px;
  align-items: center;
  gap: 20px;
  border-bottom: 1px solid rgba(213,182,116,.14);
  text-decoration: none;
  transition:
    padding .5s var(--ease),
    background-color .5s var(--ease);
}

.story-continues-link:hover {
  padding-left: 18px;
  background: rgba(213,182,116,.035);
}

.story-continues-link-number {
  font-family: "DM Sans", sans-serif;
  font-size: 7px;
  font-weight: 500;
  letter-spacing: .18em;
  color: var(--gold);
}

.story-continues-link-title {
  font-family: "Cormorant Garamond", serif;
  font-size: 29px;
  font-weight: 400;
  line-height: 1;
  color: var(--ivory);
  transition: color .4s var(--ease);
}

.story-continues-link:hover .story-continues-link-title {
  color: var(--gold);
}

.story-continues-link-arrow {

  width: 22px;
  height: 22px;

  display: inline-flex;
  align-items: center;
  justify-content: center;

  flex: 0 0 22px;

  color: var(--gold-soft);

  text-align: right;

  transition:
    transform .4s var(--ease),
    color .35s var(--ease);
}


.story-continues-link-arrow svg {

  display: block;

  width: 18px;
  height: 18px;

  fill: none;

  stroke: currentColor;

  stroke-width: 1.15;

  stroke-linecap: round;
  stroke-linejoin: round;

  overflow: visible;
}

.story-continues-link:hover .story-continues-link-arrow {
  transform: translate(4px, -4px);
}


/* ---------------------------------------------------------
   TABLET
   --------------------------------------------------------- */

@media (max-width: 900px) {

  .story-continues {
    padding: 120px 0 95px;
  }

  .story-continues-inner {
    width: 86vw;
  }

  .story-continues-top {
    padding-bottom: 55px;
  }

  .story-continues-main {
    grid-template-columns: 1fr;
    gap: 55px;
    padding: 30px 0 90px;
  }

  .story-continues-heading {
    max-width: 760px;
  }

  .story-continues-copy {
    max-width: 620px;
    margin-left: auto;
  }

  .story-continues-closing {
    padding: 80px 0 85px;
  }
}


/* ---------------------------------------------------------
   MOBILE
   --------------------------------------------------------- */

@media (max-width: 800px) {

  .story-continues {
    padding: 95px 0 75px;
  }

  .story-continues-inner {
    width: 86vw;
  }

  .story-continues-top {
    display: block;
    padding-bottom: 48px;
  }

  .story-continues-kicker {
    margin-top: 22px;
  }

  .story-continues-main {
    gap: 42px;
    padding: 20px 0 68px;
  }

  .story-continues-title {
    font-size: clamp(55px, 15vw, 82px);
    line-height: .9;
  }

  .story-continues-copy {
    margin-left: 0;
    max-width: 100%;
  }

  .story-continues-copy .story-continues-lead {
    font-size: 20px;
    line-height: 1.45;
  }

  .story-continues-copy p {
    font-size: 12px;
    line-height: 1.85;
  }

  .story-continues-closing {
    grid-template-columns: 70px minmax(0, 1fr);
    gap: 28px;
    padding: 65px 0 70px;
  }

  .story-continues-mark {
    width: 62px;
    height: 62px;
  }

  .story-continues-mark span:nth-child(1) {
    width: 58px;
    height: 58px;
  }

  .story-continues-mark span:nth-child(2) {
    width: 39px;
    height: 39px;
  }

  .story-continues-mark span:nth-child(3) {
    width: 19px;
    height: 19px;
  }

  .story-continues-closing-lead {
    font-size: clamp(36px, 10vw, 54px);
  }

  .story-continues-link {
    min-height: 72px;
    grid-template-columns: 35px minmax(0, 1fr) 24px;
    gap: 12px;
  }

  .story-continues-link:hover {
    padding-left: 0;
    background: transparent;
  }

  .story-continues-link-title {
    font-size: 24px;
  }

  .story-continues-link-arrow {
    width: 22px;
    height: 22px;
    flex-basis: 22px;
  }

  .story-continues-link-arrow svg {
    width: 17px;
    height: 17px;
  }
}


/* ---------------------------------------------------------
   SMALL MOBILE
   --------------------------------------------------------- */

@media (max-width: 420px) {

  .story-continues {
    padding: 82px 0 60px;
  }

  .story-continues-inner {
    width: 86vw;
  }

  .story-continues-top {
    padding-bottom: 40px;
  }

  .story-continues-label {
    gap: 10px;
  }

  .story-continues-label .story-section-label-line {
    width: 30px;
  }

  .story-continues-title {
    font-size: 52px;
  }

  .story-continues-main {
    gap: 36px;
    padding-bottom: 58px;
  }

  .story-continues-copy .story-continues-lead {
    font-size: 19px;
  }

  .story-continues-closing {
    grid-template-columns: 1fr;
    gap: 30px;
    padding: 58px 0 62px;
  }

  .story-continues-closing-lead {
    font-size: 39px;
  }

  .story-continues-link {
    min-height: 68px;
  }

  .story-continues-link-title {
    font-size: 22px;
  }
}


/* =========================================================
   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;
    }

}

/* =========================================================
   HER STORY — LEGAL FOOTER LINKS
   Matches Home + Foundation
========================================================= */


/* ---------------------------------------------------------
   LEGAL LINKS — DESKTOP
--------------------------------------------------------- */

.royal-footer-legal-links {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;

    gap: 10px 22px;

    margin: 0;
    padding: 0;

    font-family: "DM Sans", sans-serif;
    font-size: 7px;
    font-weight: 400;
    line-height: 1.6;
    letter-spacing: .13em;
    text-transform: uppercase;
}


.royal-footer-legal-links a,
.royal-footer-cookie-preferences {

    display: inline-block;

    margin: 0;
    padding: 0;

    border: 0;

    background: transparent;

    color: rgba(244, 240, 231, .30);

    font-family: "DM Sans", sans-serif;
    font-size: 7px;
    font-weight: 400;
    line-height: 1.6;
    letter-spacing: .13em;
    text-transform: uppercase;

    text-decoration: none;

    cursor: pointer;

    transition:
        color .3s var(--ease),
        opacity .3s ease;
}


/* GOLD HOVER / ACTIVE / FOCUS STATE */

.royal-footer-legal-links a:hover,
.royal-footer-legal-links a:focus,
.royal-footer-legal-links a:focus-visible,
.royal-footer-legal-links a:active,
.royal-footer-cookie-preferences:hover,
.royal-footer-cookie-preferences:focus,
.royal-footer-cookie-preferences:focus-visible,
.royal-footer-cookie-preferences:active {

    color: var(--gold) !important;
}


/* ---------------------------------------------------------
   PRIVACY NOTICE
--------------------------------------------------------- */

.privacy-notice {

    position: fixed;

    left: 50%;
    bottom: 24px;

    z-index: 2000;

    width: min(720px, calc(100vw - 40px));

    transform:
        translate(-50%, calc(100% + 40px));

    opacity: 0;
    visibility: hidden;

    background: rgba(12, 12, 11, .97);

    border: 1px solid rgba(213, 182, 116, .20);

    box-shadow:
        0 20px 70px rgba(0, 0, 0, .35);

    transition:
        transform .45s var(--ease),
        opacity .35s ease,
        visibility 0s linear .45s;
}


.privacy-notice.is-visible {

    transform: translate(-50%, 0);

    opacity: 1;
    visibility: visible;

    transition:
        transform .45s var(--ease),
        opacity .35s ease,
        visibility 0s linear 0s;
}


.privacy-notice-inner {

    display: grid;

    grid-template-columns:
        minmax(0, 1fr)
        auto;

    gap: 35px;

    align-items: center;

    padding: 25px 28px;
}


.privacy-notice-copy {
    min-width: 0;
}


.privacy-notice-kicker {

    display: block;

    margin-bottom: 9px;

    color: var(--gold);

    font-family: "DM Sans", sans-serif;
    font-size: 7px;
    font-weight: 600;
    line-height: 1.4;
    letter-spacing: .22em;
    text-transform: uppercase;
}


.privacy-notice-copy p {

    margin: 0;

    max-width: 500px;

    color: rgba(244, 240, 231, .58);

    font-family: "DM Sans", sans-serif;
    font-size: 9px;
    font-weight: 400;
    line-height: 1.7;
}


.privacy-notice-actions {

    display: flex;

    flex-direction: column;

    align-items: flex-end;

    gap: 12px;

    white-space: nowrap;
}


.privacy-notice-actions a,
.privacy-notice-actions button {

    padding: 0;

    border: 0;

    background: transparent;

    color: rgba(244, 240, 231, .50);

    font-family: "DM Sans", sans-serif;
    font-size: 7px;
    font-weight: 500;
    line-height: 1.5;
    letter-spacing: .16em;
    text-transform: uppercase;

    text-decoration: none;

    cursor: pointer;

    transition:
        color .3s ease;
}


.privacy-notice-actions a:hover,
.privacy-notice-actions a:focus,
.privacy-notice-actions a:focus-visible,
.privacy-notice-actions a:active,
.privacy-notice-actions button:hover,
.privacy-notice-actions button:focus,
.privacy-notice-actions button:focus-visible,
.privacy-notice-actions button:active {

    color: var(--gold);
}


/* =========================================================
   MOBILE LEGAL FOOTER
   Matches approved Foundation / Home arrangement
========================================================= */

@media screen and (max-width: 800px) {

    .royal-footer-bottom {

        position: relative;

        display: grid;

        grid-template-columns:
            minmax(0, 1fr)
            minmax(0, 1fr);

        grid-template-rows:
            auto
            auto
            auto;

        column-gap: 24px;
        row-gap: 0;

        align-items: start;

        padding-top: 25px;
    }


    /* COPYRIGHT */

    .royal-footer-bottom > span:first-child {

        grid-column: 1 / -1;
        grid-row: 1;

        padding-bottom: 38px;

        text-align: left;
    }


    /* DIVIDER */

    .royal-footer-bottom::before {

        content: "";

        position: absolute;

        left: 0;
        right: 0;

        top: 82px;

        height: 1px;

        background:
            rgba(244, 240, 231, .10);

        pointer-events: none;
    }


    /* GHANA · UNITED KINGDOM */

    .royal-footer-bottom > span:nth-child(2) {

        grid-column: 1;
        grid-row: 2;

        margin: 39px 0 0;

        text-align: left;

        align-self: start;
    }


    /* LEGAL LINKS */

    .royal-footer-bottom
    .royal-footer-legal-links {

        grid-column: 2;
        grid-row: 2;

        width: 100%;
        max-width: none;

        margin: 39px 0 0;
        padding: 0;

        display: grid;

        grid-template-columns:
            minmax(0, 1fr)
            minmax(0, 1fr);

        column-gap: 24px;
        row-gap: 14px;

        justify-self: stretch !important;
        align-self: start;

        text-align: left;
    }


    /* INDIVIDUAL LEGAL LINKS */

    .royal-footer-bottom
    .royal-footer-legal-links a,
    .royal-footer-bottom
    .royal-footer-cookie-preferences {

        display: block;

        width: auto;

        margin: 0;
        padding: 0;

        white-space: nowrap;

        text-align: left;

        justify-self: start !important;
    }


    /* PRIVACY PREFERENCES */

    .royal-footer-bottom
    .royal-footer-legal-links
    .royal-footer-cookie-preferences {

        grid-column: 1 / -1;
    }


    /* GOLD MOBILE INTERACTION */

    .royal-footer-bottom
    .royal-footer-legal-links a:hover,
    .royal-footer-bottom
    .royal-footer-legal-links a:focus,
    .royal-footer-bottom
    .royal-footer-legal-links a:focus-visible,
    .royal-footer-bottom
    .royal-footer-legal-links a:active,
    .royal-footer-bottom
    .royal-footer-legal-links
    .royal-footer-cookie-preferences:hover,
    .royal-footer-bottom
    .royal-footer-legal-links
    .royal-footer-cookie-preferences:focus,
    .royal-footer-bottom
    .royal-footer-legal-links
    .royal-footer-cookie-preferences:focus-visible,
    .royal-footer-bottom
    .royal-footer-legal-links
    .royal-footer-cookie-preferences:active {

        color: var(--gold) !important;
    }


    /* BACK TO TOP — CENTRED */

    .royal-footer-bottom > a {

        grid-column: 1 / -1;
        grid-row: 3;

        justify-self: center !important;

        margin-top: 39px;

        margin-left: 0 !important;
        margin-right: 0 !important;

        text-align: center !important;
    }


    /* ---------------------------------------------------------
       PRIVACY NOTICE — MOBILE
    --------------------------------------------------------- */

    .privacy-notice {

        left: 50%;
        bottom: 15px;

        width: calc(100vw - 30px);
    }


    .privacy-notice-inner {

        display: block;

        padding: 21px 20px;
    }


    .privacy-notice-copy p {

        font-size: 9px;
        line-height: 1.65;
    }


    .privacy-notice-actions {

        flex-direction: row;

        align-items: center;
        justify-content: space-between;

        gap: 20px;

        margin-top: 18px;
    }
}


/* =========================================================
   SMALL MOBILE
========================================================= */

@media screen and (max-width: 420px) {

    .royal-footer-bottom {

        column-gap: 18px;
    }


    .royal-footer-bottom
    .royal-footer-legal-links {

        column-gap: 18px;
        row-gap: 13px;
    }


    .royal-footer-bottom::before {

        top: 82px;
    }


    .privacy-notice {

        width: calc(100vw - 24px);
    }


    .privacy-notice-inner {

        padding: 20px 17px;
    }


    .privacy-notice-actions {

        gap: 15px;
    }
}