/* =========================================================
   NANA EFUA APIATEWA III
   THE ROYAL OFFICE
   PAGE STYLESHEET
   ========================================================= */


/* =========================================================
   DESIGN TOKENS
   ========================================================= */

:root {
    --obsidian: #11110f;
    --ivory: #f4f0e7;
    --ivory-soft: rgba(244, 240, 231, 0.72);

    --gold: #d5b674;
    --gold-soft: rgba(213, 182, 116, 0.65);
    --gold-faint: rgba(213, 182, 116, 0.25);

    --black: rgba(0, 0, 0, 0.92);

    --ease: cubic-bezier(0.25, 0.1, 0.25, 1);
}


/* =========================================================
   RESET
   ========================================================= */

*,
*::before,
*::after {
    box-sizing: border-box;
}

html {
    margin: 0;
    padding: 0;
    scroll-behavior: smooth;
}

body {
    margin: 0;
    padding: 0;
    background: var(--obsidian);
    color: var(--ivory);
    font-family: "DM Sans", sans-serif;
    font-weight: 300;
    -webkit-font-smoothing: antialiased;
    text-rendering: optimizeLegibility;
}

body,
button,
a {
    -webkit-tap-highlight-color: transparent;
}

img {
    max-width: 100%;
}

button,
input,
textarea,
select {
    font: inherit;
}

button {
    border: 0;
}

a {
    color: inherit;
}

::selection {
    background: var(--gold);
    color: var(--obsidian);
}


/* =========================================================
   ACCESSIBILITY
   ========================================================= */

:focus-visible {
    outline: 1px solid var(--gold);
    outline-offset: 5px;
}


/* =========================================================
   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;

    pointer-events: none;
}


/* =========================================================
   ROYAL MARK
   ========================================================= */

.royal-mark {
    display: inline-flex;
    align-items: center;
    gap: 14px;

    color: var(--ivory);
    text-decoration: none;

    pointer-events: auto;

    position: relative;
    z-index: 1002;
}

.royal-mark-symbol {
    width: 52px;
    height: 52px;

    display: flex;
    align-items: center;
    justify-content: center;
}

.royal-mark-symbol svg {
    width: 27px;
    height: 27px;

    display: block;
    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;
    line-height: 1;

    letter-spacing: 0.34em;
    color: var(--ivory);
}


/* =========================================================
   PRIMARY NAVIGATION
   ========================================================= */

.main-navigation {
    position: relative;

    width: auto;
    height: auto;

    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, 0.78);

    font-family: "DM Sans", sans-serif;
    font-size: 9px;
    font-weight: 500;
    line-height: 1;

    letter-spacing: 0.18em;
    text-transform: uppercase;

    text-decoration: none;

    transition:
        color 0.35s ease;
}

.navigation-links a::after {
    content: "";

    position: absolute;
    left: 0;
    bottom: 3px;

    width: 0;
    height: 1px;

    background: var(--gold);

    transition:
        width 0.4s var(--ease);
}

.navigation-links a:hover {
    color: var(--gold);
}

.navigation-links a:hover::after {
    width: 100%;
}


/* ACTIVE PAGE */

.navigation-links a[aria-current="page"] {
    color: var(--gold);
}

.navigation-links a[aria-current="page"]::after {
    width: 100%;
}


/* =========================================================
   NAV NUMBERS
   ========================================================= */

.nav-number {
    display: none;
}


/* =========================================================
   MOBILE MENU BUTTON
   ========================================================= */

.menu-toggle {
    width: 46px;
    height: 46px;

    display: none;
    align-items: center;
    justify-content: center;

    position: relative;
    z-index: 1002;

    padding: 0;

    background: transparent;
    cursor: pointer;

    pointer-events: auto;
}

.menu-toggle span {
    position: absolute;

    width: 23px;
    height: 1px;

    background: var(--ivory);

    transition:
        top 0.4s var(--ease),
        transform 0.4s var(--ease);
}

.menu-toggle span:first-child {
    top: 18px;
}

.menu-toggle span:last-child {
    top: 27px;
}


/* 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 01
   THE ROYAL OFFICE HERO
   ========================================================= */

.royal-office-hero {
    position: relative;

    min-height: 720px;
    height: 100svh;

    overflow: hidden;
    isolation: isolate;

    background: var(--obsidian);
    color: var(--ivory);
}


/* =========================================================
   HERO MEDIA
   ========================================================= */

.royal-office-hero-media {
    position: absolute;
    inset: 0;

    z-index: -3;

    overflow: hidden;
}

.royal-office-hero-image {
    display: block;

    width: 100%;
    height: 100%;

    object-fit: cover;
    object-position: center top;

    transform: scale(1.015);

    transition:
        transform 1.8s var(--ease);
}

.royal-office-hero:hover .royal-office-hero-image {
    transform: scale(1.035);
}


/* =========================================================
   HERO OVERLAY
   ========================================================= */

.royal-office-hero-overlay {
    position: absolute;
    inset: 0;

    z-index: -2;

    background:
        linear-gradient(
            90deg,
            rgba(8, 8, 7, 0.82) 0%,
            rgba(8, 8, 7, 0.52) 34%,
            rgba(8, 8, 7, 0.18) 68%,
            rgba(8, 8, 7, 0.30) 100%
        );
}

.royal-office-hero-overlay::after {
    content: "";

    position: absolute;
    inset: 0;

    background:
        linear-gradient(
            180deg,
            rgba(8, 8, 7, 0.42) 0%,
            transparent 28%,
            transparent 62%,
            rgba(8, 8, 7, 0.58) 100%
        );
}


/* =========================================================
   ADINKRAHENE
   ========================================================= */

.royal-office-hero-adinkra {
    position: absolute;

    top: 50%;
    right: 7vw;

    width: clamp(150px, 16vw, 235px);
    aspect-ratio: 1 / 1;

    transform: translateY(-50%);

    opacity: 0.17;

    pointer-events: none;
}

.royal-office-hero-adinkra svg {
    display: block;

    width: 100%;
    height: 100%;

    overflow: visible;
}

.royal-office-hero-adinkra circle {
    fill: none;

    stroke: var(--gold);
    stroke-width: 0.75;
}


/* =========================================================
   HERO CONTENT
   ========================================================= */

.royal-office-hero-content {
    position: absolute;

    left: 7vw;
    bottom: 14vh;

    width: min(760px, 70vw);
}


/* =========================================================
   HERO KICKER
   ========================================================= */

.royal-office-hero-kicker {
    display: flex;
    align-items: center;
    gap: 15px;

    margin-bottom: 28px;

    font-family: "DM Sans", sans-serif;
    font-size: 10px;
    font-weight: 500;
    line-height: 1.4;

    letter-spacing: 0.22em;
    text-transform: uppercase;

    color: var(--gold);
}

.royal-office-hero-line {
    width: 38px;
    height: 1px;

    flex: 0 0 auto;

    background: var(--gold-soft);
}


/* =========================================================
   HERO TITLE
   ========================================================= */

.royal-office-hero-title {
    margin: 0;

    font-family: "Cormorant Garamond", serif;

    font-size: clamp(82px, 11vw, 170px);
    font-weight: 300;
    line-height: 0.76;

    letter-spacing: -0.055em;

    color: var(--ivory);
}

.royal-office-hero-title em {
    display: inline-block;

    margin-left: 0.55em;

    font-style: italic;
    font-weight: 300;

    letter-spacing: -0.06em;

    color: var(--gold);
}


/* =========================================================
   HERO IDENTITY
   ========================================================= */

.royal-office-hero-identity {
    max-width: 520px;

    margin-top: 48px;
    padding-left: 2px;
}

.royal-office-hero-name {
    margin: 0 0 8px;

    font-family: "Cormorant Garamond", serif;

    font-size: clamp(24px, 2.2vw, 32px);
    font-weight: 400;
    line-height: 1.1;

    color: var(--ivory);
}

.royal-office-hero-title-line {
    max-width: 500px;

    margin: 0;

    font-family: "DM Sans", sans-serif;

    font-size: 9px;
    font-weight: 400;
    line-height: 1.8;

    letter-spacing: 0.10em;
    text-transform: uppercase;

    color: var(--ivory-soft);
}

.royal-office-hero-title-line span {
    margin: 0 7px;

    color: var(--gold);
}


/* =========================================================
   HERO LOCATION
   ========================================================= */

.royal-office-hero-location {
    position: absolute;

    right: 7vw;
    bottom: 7vh;

    display: flex;
    align-items: center;
    gap: 13px;

    font-family: "DM Sans", sans-serif;

    font-size: 8px;
    font-weight: 500;
    line-height: 1.4;

    letter-spacing: 0.18em;
    text-transform: uppercase;

    color: rgba(244, 240, 231, 0.58);
}

.royal-office-hero-location-divider {
    width: 24px;
    height: 1px;

    flex: 0 0 auto;

    background: var(--gold-soft);
}


/* =========================================================
   HERO SCROLL
   ========================================================= */

.royal-office-hero-scroll {
    position: absolute;

    left: 7vw;
    bottom: 6.5vh;

    display: flex;
    align-items: center;
    gap: 13px;

    color: var(--ivory-soft);

    text-decoration: none;
}

.royal-office-hero-scroll-label {
    font-family: "DM Sans", sans-serif;

    font-size: 8px;
    font-weight: 500;
    line-height: 1.4;

    letter-spacing: 0.18em;
    text-transform: uppercase;
}

.royal-office-hero-scroll-line {
    width: 34px;
    height: 1px;

    background: var(--gold-soft);

    transition:
        width 0.4s var(--ease);
}

.royal-office-hero-scroll-arrow {
    font-family: "DM Sans", sans-serif;

    font-size: 13px;
    font-weight: 300;
    line-height: 1;

    color: var(--gold);
}

.royal-office-hero-scroll:hover .royal-office-hero-scroll-line {
    width: 48px;
}


/* =========================================================
   TABLET
   ========================================================= */

@media (max-width: 1050px) {

    .navigation-links {
        gap: 24px;
    }

    .navigation-links a {
        font-size: 8px;
        letter-spacing: 0.15em;
    }

    .royal-office-hero-content {
        width: min(700px, 72vw);
    }

    .royal-office-hero-adinkra {
        right: 5vw;
        width: clamp(140px, 18vw, 210px);
    }

}


/* =========================================================
   MOBILE NAVIGATION
   ========================================================= */

@media (max-width: 800px) {

    .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: 0.29em;
    }


    /* -----------------------------------------------------
       MENU BUTTON
       ----------------------------------------------------- */

    .menu-toggle {
        display: flex;
    }


    /* -----------------------------------------------------
       MOBILE NAV
       ----------------------------------------------------- */

    .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, 0.985);

        opacity: 0;
        visibility: hidden;

        transform: translateX(100%);

        pointer-events: none;

        transition:
            transform 0.55s var(--ease),
            opacity 0.35s ease,
            visibility 0s linear 0.55s;
    }


    .main-navigation.navigation-open {
        opacity: 1;
        visibility: visible;

        transform: translateX(0);

        pointer-events: auto;

        transition:
            transform 0.55s var(--ease),
            opacity 0.35s ease,
            visibility 0s linear 0s;
    }


    .navigation-inner {
        width: 100%;
        height: 100%;

        padding: 115px 8vw 40px;

        display: flex;
        flex-direction: column;
        align-items: stretch;
        justify-content: space-between;
    }


    /* -----------------------------------------------------
       MOBILE NAV HEADING
       ----------------------------------------------------- */

    .navigation-heading {
        display: flex;
        align-items: center;
        justify-content: space-between;

        padding-bottom: 20px;

        border-bottom: 1px solid rgba(213, 182, 116, 0.22);

        font-family: "DM Sans", sans-serif;
        font-size: 8px;
        font-weight: 500;
        line-height: 1.4;

        letter-spacing: 0.25em;
        text-transform: uppercase;

        color: var(--gold);
    }


    /* -----------------------------------------------------
       MOBILE NAV 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, 0.10);

        font-family: "Cormorant Garamond", serif;

        font-size: 31px;
        font-weight: 300;
        line-height: 1;

        letter-spacing: -0.015em;
        text-transform: none;

        color: rgba(244, 240, 231, 0.92);
    }

    .navigation-links a::after {
        display: none;
    }

    .navigation-links a:hover {
        color: var(--gold);
    }


    /* ACTIVE MOBILE LINK */

    .navigation-links a[aria-current="page"] {
        color: var(--gold);
    }


    /* -----------------------------------------------------
       NAV NUMBERS
       ----------------------------------------------------- */

    .nav-number {
        display: inline-block;

        width: 22px;

        font-family: "DM Sans", sans-serif;

        font-size: 7px;
        font-weight: 500;
        line-height: 1;

        letter-spacing: 0.15em;

        color: var(--gold);
    }


    /* -----------------------------------------------------
       MOBILE NAV FOOTER
       ----------------------------------------------------- */

    .navigation-footer {
        display: flex;
        flex-direction: column;
        gap: 8px;

        font-family: "DM Sans", sans-serif;

        font-size: 7px;
        font-weight: 500;
        line-height: 1.4;

        letter-spacing: 0.19em;
        text-transform: uppercase;

        color: rgba(244, 240, 231, 0.45);
    }


    /* =====================================================
       HERO — MOBILE
       ===================================================== */

    .royal-office-hero {
        min-height: 680px;
        height: 100svh;
    }


    /* -----------------------------------------------------
       IMAGE
       ----------------------------------------------------- */

    .royal-office-hero-image {
        object-position: 50% 28%;
        transform: none;
    }

    .royal-office-hero:hover .royal-office-hero-image {
        transform: none;
    }


    /* -----------------------------------------------------
       OVERLAY
       ----------------------------------------------------- */

    .royal-office-hero-overlay {
        background:
            linear-gradient(
                180deg,
                rgba(8, 8, 7, 0.30) 0%,
                rgba(8, 8, 7, 0.10) 34%,
                rgba(8, 8, 7, 0.46) 66%,
                rgba(8, 8, 7, 0.84) 100%
            );
    }

    .royal-office-hero-overlay::after {
        background:
            linear-gradient(
                180deg,
                rgba(8, 8, 7, 0.25) 0%,
                transparent 30%,
                transparent 52%,
                rgba(8, 8, 7, 0.48) 100%
            );
    }


    /* -----------------------------------------------------
       ADINKRA
       ----------------------------------------------------- */

    .royal-office-hero-adinkra {
        top: 27%;
        right: 6vw;

        width: 105px;

        opacity: 0.13;

        transform: none;
    }


    /* -----------------------------------------------------
       HERO CONTENT
       ----------------------------------------------------- */

    .royal-office-hero-content {
        left: 6.5vw;
        right: 6.5vw;
        bottom: 15vh;

        width: auto;
    }


    /* -----------------------------------------------------
       KICKER
       ----------------------------------------------------- */

    .royal-office-hero-kicker {
        margin-bottom: 22px;

        font-size: 9px;
        letter-spacing: 0.18em;
    }

    .royal-office-hero-line {
        width: 28px;
    }


    /* -----------------------------------------------------
       TITLE
       ----------------------------------------------------- */

    .royal-office-hero-title {
        font-size: clamp(76px, 22vw, 112px);
        line-height: 0.76;
    }

    .royal-office-hero-title em {
        margin-left: 0.32em;
    }


    /* -----------------------------------------------------
       IDENTITY
       ----------------------------------------------------- */

    .royal-office-hero-identity {
        max-width: 86vw;

        margin-top: 34px;
    }

    .royal-office-hero-name {
        font-size: 25px;
        line-height: 1.05;
    }

    .royal-office-hero-title-line {
        max-width: 82vw;

        font-size: 8px;
        line-height: 1.75;

        letter-spacing: 0.08em;
    }

    .royal-office-hero-title-line span {
        display: none;
    }


    /* -----------------------------------------------------
       LOCATION
       ----------------------------------------------------- */

    .royal-office-hero-location {
        display: none;
    }


    /* -----------------------------------------------------
       SCROLL
       ----------------------------------------------------- */

    .royal-office-hero-scroll {
        left: 6.5vw;
        bottom: 5vh;
    }

}


/* =========================================================
   SMALL MOBILE
   ========================================================= */

@media (max-width: 420px) {

    .navigation-inner {
        padding: 105px 7vw 32px;
    }

    .navigation-links a {
        min-height: 58px;
        font-size: 28px;
    }


    /* -----------------------------------------------------
       HERO
       ----------------------------------------------------- */

    .royal-office-hero-content {
        bottom: 14vh;
    }

    .royal-office-hero-title {
        font-size: clamp(68px, 21vw, 94px);
    }

    .royal-office-hero-name {
        font-size: 22px;
    }

    .royal-office-hero-identity {
        margin-top: 29px;
    }

    .royal-office-hero-scroll {
        bottom: 4.5vh;
    }

}


/* =========================================================
   REDUCED MOTION
   ========================================================= */

@media (prefers-reduced-motion: reduce) {

    html {
        scroll-behavior: auto;
    }

    .royal-office-hero-image,
    .navigation-links a,
    .navigation-links a::after,
    .menu-toggle span,
    .main-navigation,
    .royal-office-hero-scroll-line {
        transition: none;
    }

    .royal-office-hero:hover .royal-office-hero-image {
        transform: none;
    }

    .royal-office-hero-scroll:hover .royal-office-hero-scroll-line {
        width: 34px;
    }
}

/* =========================================================
   SECTION 02 — THE OFFICE
   ========================================================= */

.royal-office-office {
    position: relative;
    background: var(--ivory);
    color: var(--obsidian);
    overflow: hidden;
}

.royal-office-office-inner {
    width: min(1400px, 100%);
    margin: 0 auto;
    padding: 120px 7vw 135px;
}


/* =========================================================
   SECTION INTRO
   ========================================================= */

.royal-office-office-intro {
    display: flex;
    align-items: center;
    justify-content: space-between;

    margin-bottom: 76px;
    padding-bottom: 18px;

    border-bottom: 1px solid rgba(17, 17, 15, 0.14);
}

.royal-office-office-marker,
.royal-office-office-place {
    margin: 0;

    font-family: "DM Sans", sans-serif;
    font-size: 8px;
    font-weight: 500;
    line-height: 1.4;

    letter-spacing: 0.20em;
    text-transform: uppercase;
}

.royal-office-office-marker {
    color: var(--obsidian);
}

.royal-office-office-place {
    color: rgba(17, 17, 15, 0.48);
}


/* =========================================================
   MAIN GRID
   ========================================================= */

.royal-office-office-grid {
    display: grid;

    grid-template-columns:
        minmax(0, 0.92fr)
        minmax(420px, 0.78fr);

    gap: clamp(70px, 9vw, 150px);

    align-items: start;
}


/* =========================================================
   CONTENT
   ========================================================= */

.royal-office-office-content {
    padding-top: 8px;
}

.royal-office-office-heading {
    max-width: 720px;
}

.royal-office-office-eyebrow {
    margin: 0 0 25px;

    font-family: "DM Sans", sans-serif;
    font-size: 8px;
    font-weight: 500;
    line-height: 1.4;

    letter-spacing: 0.22em;
    text-transform: uppercase;

    color: rgba(17, 17, 15, 0.50);
}

.royal-office-office-heading h2 {
    margin: 0;

    font-family: "Cormorant Garamond", serif;

    font-size: clamp(64px, 7.5vw, 112px);
    font-weight: 300;
    line-height: 0.82;

    letter-spacing: -0.055em;

    color: var(--obsidian);
}

.royal-office-office-heading h2 em {
    display: inline-block;

    margin-left: 0.48em;

    font-style: italic;
    font-weight: 300;

    letter-spacing: -0.06em;

    color: #8c6f35;
}


/* =========================================================
   COPY
   ========================================================= */

.royal-office-office-copy {
    max-width: 610px;
    margin-top: 54px;
}

.royal-office-office-copy p {
    margin: 0 0 22px;

    font-family: "DM Sans", sans-serif;

    font-size: 13px;
    font-weight: 300;
    line-height: 1.95;

    letter-spacing: 0.005em;

    color: rgba(17, 17, 15, 0.66);
}

.royal-office-office-copy p:last-child {
    margin-bottom: 0;
}

.royal-office-office-copy .royal-office-office-lead {
    margin-bottom: 28px;

    font-family: "Cormorant Garamond", serif;

    font-size: clamp(24px, 2.15vw, 31px);
    font-weight: 400;
    line-height: 1.18;

    letter-spacing: -0.015em;

    color: var(--obsidian);
}


/* =========================================================
   OFFICE PRINCIPLES
   ========================================================= */

.royal-office-office-principles {
    margin-top: 58px;

    border-top: 1px solid rgba(17, 17, 15, 0.16);
}

.royal-office-office-principle {
    display: grid;

    grid-template-columns:
        34px
        130px
        minmax(0, 1fr);

    column-gap: 18px;

    align-items: baseline;

    padding: 19px 0;

    border-bottom: 1px solid rgba(17, 17, 15, 0.12);
}

.royal-office-office-principle-number {
    font-family: "DM Sans", sans-serif;

    font-size: 7px;
    font-weight: 500;
    line-height: 1.4;

    letter-spacing: 0.14em;

    color: #8c6f35;
}

.royal-office-office-principle-title {
    font-family: "Cormorant Garamond", serif;

    font-size: 22px;
    font-weight: 400;
    line-height: 1;

    letter-spacing: -0.015em;

    color: var(--obsidian);
}

.royal-office-office-principle-text {
    font-family: "DM Sans", sans-serif;

    font-size: 9px;
    font-weight: 300;
    line-height: 1.65;

    letter-spacing: 0.015em;

    color: rgba(17, 17, 15, 0.52);
}


/* =========================================================
   FOOTER LINE
   ========================================================= */

.royal-office-office-footer {
    display: flex;
    align-items: center;

    gap: 13px;

    margin-top: 46px;

    font-family: "DM Sans", sans-serif;

    font-size: 8px;
    font-weight: 500;
    line-height: 1.4;

    letter-spacing: 0.18em;
    text-transform: uppercase;

    color: rgba(17, 17, 15, 0.46);
}

.royal-office-office-rule {
    width: 34px;
    height: 1px;

    flex: 0 0 auto;

    background: rgba(140, 111, 53, 0.55);
}


/* =========================================================
   IMAGE
   ========================================================= */

.royal-office-office-media {
    position: relative;

    margin: 0;
    padding: 0;
}

.royal-office-office-image {
    display: block;

    width: 100%;
    height: clamp(540px, 48vw, 720px);

    object-fit: cover;
    object-position: center center;

    filter: saturate(0.88);

    transform: scale(1.005);

    transition:
        transform 1.4s var(--ease);
}

.royal-office-office-media:hover
.royal-office-office-image {
    transform: scale(1.025);
}

.royal-office-office-caption {
    display: flex;
    align-items: center;
    justify-content: space-between;

    margin-top: 13px;
    padding: 0 2px;

    font-family: "DM Sans", sans-serif;

    font-size: 7px;
    font-weight: 500;
    line-height: 1.4;

    letter-spacing: 0.17em;
    text-transform: uppercase;

    color: rgba(17, 17, 15, 0.44);
}

.royal-office-office-caption span:first-child {
    color: #8c6f35;
}


/* =========================================================
   TABLET
   ========================================================= */

@media (max-width: 1050px) {

    .royal-office-office-inner {
        padding: 105px 6vw 115px;
    }

    .royal-office-office-grid {
        grid-template-columns:
            minmax(0, 0.92fr)
            minmax(330px, 0.78fr);

        gap: 55px;
    }

    .royal-office-office-heading h2 {
        font-size: clamp(58px, 8vw, 88px);
    }

    .royal-office-office-copy {
        margin-top: 46px;
    }

    .royal-office-office-principle {
        grid-template-columns:
            30px
            105px
            minmax(0, 1fr);

        column-gap: 13px;
    }

    .royal-office-office-image {
        height: 610px;
    }
}


/* =========================================================
   MOBILE
   Content first / image second
   ========================================================= */

@media (max-width: 800px) {

    .royal-office-office-inner {
        padding: 82px 6.5vw 92px;
    }


    /* -----------------------------------------------------
       INTRO
       ----------------------------------------------------- */

    .royal-office-office-intro {
        margin-bottom: 54px;
        padding-bottom: 15px;
    }

    .royal-office-office-marker,
    .royal-office-office-place {
        font-size: 7px;
        letter-spacing: 0.16em;
    }


    /* -----------------------------------------------------
       GRID
       ----------------------------------------------------- */

    .royal-office-office-grid {
        display: flex;
        flex-direction: column;

        gap: 56px;
    }


    /* -----------------------------------------------------
       CONTENT FIRST
       ----------------------------------------------------- */

    .royal-office-office-content {
        order: 1;
        padding-top: 0;
    }


    /* -----------------------------------------------------
       IMAGE SECOND
       ----------------------------------------------------- */

    .royal-office-office-media {
        order: 2;
        width: 100%;
    }


    /* -----------------------------------------------------
       HEADING
       ----------------------------------------------------- */

    .royal-office-office-eyebrow {
        margin-bottom: 20px;

        font-size: 7px;
        letter-spacing: 0.18em;
    }

    .royal-office-office-heading h2 {
        font-size: clamp(60px, 17vw, 86px);
        line-height: 0.80;
    }

    .royal-office-office-heading h2 em {
        margin-left: 0.30em;
    }


    /* -----------------------------------------------------
       COPY
       ----------------------------------------------------- */

    .royal-office-office-copy {
        margin-top: 37px;
        max-width: 100%;
    }

    .royal-office-office-copy p {
        margin-bottom: 19px;

        font-size: 11px;
        line-height: 1.82;
    }

    .royal-office-office-copy
    .royal-office-office-lead {
        margin-bottom: 25px;

        font-size: 24px;
        line-height: 1.17;
    }


    /* -----------------------------------------------------
       PRINCIPLES
       ----------------------------------------------------- */

    .royal-office-office-principles {
        margin-top: 42px;
    }

    .royal-office-office-principle {
        grid-template-columns:
            25px
            minmax(0, 1fr);

        column-gap: 13px;
        row-gap: 7px;

        padding: 17px 0;
    }

    .royal-office-office-principle-number {
        grid-column: 1;
        grid-row: 1 / span 2;

        padding-top: 3px;
    }

    .royal-office-office-principle-title {
        grid-column: 2;
        grid-row: 1;

        font-size: 21px;
    }

    .royal-office-office-principle-text {
        grid-column: 2;
        grid-row: 2;

        font-size: 9px;
        line-height: 1.65;
    }


    /* -----------------------------------------------------
       FOOTER
       ----------------------------------------------------- */

    .royal-office-office-footer {
        margin-top: 36px;

        font-size: 7px;
        letter-spacing: 0.15em;
    }

    .royal-office-office-rule {
        width: 25px;
    }


    /* -----------------------------------------------------
       IMAGE
       ----------------------------------------------------- */

    .royal-office-office-image {
        height: min(118vw, 620px);

        object-position: center center;

        transform: none;
    }

    .royal-office-office-media:hover
    .royal-office-office-image {
        transform: none;
    }

    .royal-office-office-caption {
        margin-top: 11px;

        font-size: 6.5px;
        letter-spacing: 0.14em;
    }
}


/* =========================================================
   SMALL MOBILE
   ========================================================= */

@media (max-width: 420px) {

    .royal-office-office-inner {
        padding: 72px 7vw 82px;
    }

    .royal-office-office-intro {
        margin-bottom: 47px;
    }

    .royal-office-office-place {
        max-width: 40%;

        text-align: right;
        line-height: 1.55;
    }


    /* -----------------------------------------------------
       HEADING
       ----------------------------------------------------- */

    .royal-office-office-heading h2 {
        font-size: clamp(53px, 17vw, 76px);
    }


    /* -----------------------------------------------------
       COPY
       ----------------------------------------------------- */

    .royal-office-office-copy {
        margin-top: 32px;
    }

    .royal-office-office-copy
    .royal-office-office-lead {
        font-size: 22px;
    }

    .royal-office-office-copy p {
        font-size: 10.5px;
        line-height: 1.8;
    }


    /* -----------------------------------------------------
       PRINCIPLES
       ----------------------------------------------------- */

    .royal-office-office-principles {
        margin-top: 36px;
    }

    .royal-office-office-principle-title {
        font-size: 20px;
    }

    .royal-office-office-principle-text {
        font-size: 8.5px;
    }


    /* -----------------------------------------------------
       FOOTER
       ----------------------------------------------------- */

    .royal-office-office-footer {
        flex-wrap: wrap;
        row-gap: 8px;
    }


    /* -----------------------------------------------------
       IMAGE
       ----------------------------------------------------- */

    .royal-office-office-image {
        height: 112vw;
        max-height: 500px;
    }
}


/* =========================================================
   REDUCED MOTION
   ========================================================= */

@media (prefers-reduced-motion: reduce) {

    .royal-office-office-image {
        transition: none;
    }

    .royal-office-office-media:hover
    .royal-office-office-image {
        transform: none;
    }
}

/* =========================================================
   SECTION 03 — ROYAL ENQUIRIES
   Ultra-Premium Editorial Form
   ========================================================= */

.royal-office-enquiries {
    position: relative;
    background: var(--obsidian);
    color: var(--ivory);
    overflow: hidden;
}

.royal-office-enquiries-inner {
    width: min(1400px, 100%);
    margin: 0 auto;
    padding: 125px 7vw 140px;
}


/* =========================================================
   SECTION INTRO
   ========================================================= */

.royal-office-enquiries-intro {
    display: flex;
    align-items: center;
    justify-content: space-between;

    margin-bottom: 82px;
    padding-bottom: 18px;

    border-bottom: 1px solid rgba(244, 240, 231, 0.14);
}

.royal-office-enquiries-marker,
.royal-office-enquiries-place {
    margin: 0;

    font-family: "DM Sans", sans-serif;
    font-size: 8px;
    font-weight: 500;
    line-height: 1.4;

    letter-spacing: 0.20em;
    text-transform: uppercase;
}

.royal-office-enquiries-marker {
    color: var(--gold);
}

.royal-office-enquiries-place {
    color: rgba(244, 240, 231, 0.42);
}


/* =========================================================
   EDITORIAL INTRODUCTION
   ========================================================= */

.royal-office-enquiries-heading {
    display: grid;

    grid-template-columns:
        minmax(0, 1.12fr)
        minmax(320px, 0.68fr);

    gap: clamp(70px, 10vw, 160px);

    align-items: end;

    margin-bottom: 105px;
}

.royal-office-enquiries-heading-main {
    max-width: 800px;
}

.royal-office-enquiries-eyebrow {
    margin: 0 0 26px;

    font-family: "DM Sans", sans-serif;
    font-size: 8px;
    font-weight: 500;
    line-height: 1.4;

    letter-spacing: 0.22em;
    text-transform: uppercase;

    color: var(--gold-soft);
}

.royal-office-enquiries-heading h2 {
    margin: 0;

    font-family: "Cormorant Garamond", serif;

    font-size: clamp(62px, 7.7vw, 116px);
    font-weight: 300;
    line-height: 0.81;

    letter-spacing: -0.055em;

    color: var(--ivory);
}

.royal-office-enquiries-heading h2 em {
    display: inline-block;

    margin-left: 0.43em;

    font-style: italic;
    font-weight: 300;

    letter-spacing: -0.06em;

    color: var(--gold);
}

.royal-office-enquiries-heading-copy {
    max-width: 490px;
    padding-bottom: 4px;
}

.royal-office-enquiries-heading-copy p {
    margin: 0 0 22px;

    font-family: "DM Sans", sans-serif;

    font-size: 11px;
    font-weight: 300;
    line-height: 1.9;

    letter-spacing: 0.01em;

    color: rgba(244, 240, 231, 0.54);
}

.royal-office-enquiries-heading-copy
.royal-office-enquiries-lead {
    margin-bottom: 25px;

    font-family: "Cormorant Garamond", serif;

    font-size: clamp(22px, 2vw, 29px);
    font-weight: 400;
    line-height: 1.22;

    letter-spacing: -0.012em;

    color: rgba(244, 240, 231, 0.86);
}


/* =========================================================
   ENQUIRY CATEGORIES
   ========================================================= */

.royal-office-enquiries-categories {
    margin-bottom: 112px;
}

.royal-office-enquiries-categories-header {
    display: flex;
    align-items: center;
    justify-content: space-between;

    margin-bottom: 0;
    padding-bottom: 16px;

    border-bottom: 1px solid rgba(244, 240, 231, 0.16);

    font-family: "DM Sans", sans-serif;
    font-size: 7px;
    font-weight: 500;
    line-height: 1.4;

    letter-spacing: 0.19em;
    text-transform: uppercase;
}

.royal-office-enquiries-categories-header span:first-child {
    color: var(--gold);
}

.royal-office-enquiries-categories-header span:last-child {
    color: rgba(244, 240, 231, 0.35);
}

.royal-office-enquiries-category-list {
    display: grid;

    grid-template-columns: repeat(2, minmax(0, 1fr));

    column-gap: 70px;
}

.royal-office-enquiries-category {
    display: grid;

    grid-template-columns: 36px minmax(0, 1fr) 25px;

    align-items: center;

    min-height: 77px;

    border-bottom: 1px solid rgba(244, 240, 231, 0.10);

    transition:
        border-color 0.35s ease,
        padding 0.35s var(--ease);
}

.royal-office-enquiries-category:hover {
    padding-left: 8px;

    border-bottom-color: rgba(213, 182, 116, 0.48);
}

.royal-office-enquiries-category-number {
    font-family: "DM Sans", sans-serif;

    font-size: 7px;
    font-weight: 500;
    line-height: 1.4;

    letter-spacing: 0.14em;

    color: var(--gold-soft);
}

.royal-office-enquiries-category-title {
    font-family: "Cormorant Garamond", serif;

    font-size: 22px;
    font-weight: 400;
    line-height: 1.1;

    letter-spacing: -0.01em;

    color: rgba(244, 240, 231, 0.88);

    transition: color 0.3s ease;
}

.royal-office-enquiries-category:hover
.royal-office-enquiries-category-title {
    color: var(--gold);
}

.royal-office-enquiries-category-arrow {
    justify-self: end;

    font-family: "DM Sans", sans-serif;

    font-size: 13px;
    font-weight: 300;

    color: rgba(213, 182, 116, 0.48);

    transition:
        transform 0.35s var(--ease),
        color 0.3s ease;
}

.royal-office-enquiries-category:hover
.royal-office-enquiries-category-arrow {
    transform: translateX(5px);
    color: var(--gold);
}


/* =========================================================
   FORM WRAPPER
   ========================================================= */

.royal-office-enquiries-form-wrapper {
    display: grid;

    grid-template-columns:
        minmax(230px, 0.38fr)
        minmax(0, 1fr);

    gap: clamp(55px, 9vw, 145px);

    padding-top: 12px;
}

.royal-office-enquiries-form-intro {
    align-self: start;

    position: sticky;
    top: 120px;
}

.royal-office-enquiries-form-number {
    margin: 0 0 18px;

    font-family: "DM Sans", sans-serif;

    font-size: 7px;
    font-weight: 500;
    line-height: 1.4;

    letter-spacing: 0.20em;
    text-transform: uppercase;

    color: var(--gold);
}

.royal-office-enquiries-form-intro h3 {
    margin: 0 0 22px;

    font-family: "Cormorant Garamond", serif;

    font-size: clamp(42px, 4.2vw, 64px);
    font-weight: 300;
    line-height: 0.9;

    letter-spacing: -0.04em;

    color: var(--ivory);
}

.royal-office-enquiries-form-intro > p:last-child {
    max-width: 260px;

    margin: 0;

    font-family: "DM Sans", sans-serif;

    font-size: 9px;
    font-weight: 300;
    line-height: 1.8;

    color: rgba(244, 240, 231, 0.42);
}


/* =========================================================
   FORM
   ========================================================= */

.royal-office-enquiries-form {
    min-width: 0;
}

.royal-office-enquiries-fieldset {
    min-width: 0;

    margin: 0 0 62px;
    padding: 0;

    border: 0;
}

.royal-office-enquiries-fieldset legend {
    display: flex;
    align-items: center;
    gap: 15px;

    width: 100%;

    margin: 0 0 30px;
    padding: 0 0 15px;

    border-bottom: 1px solid rgba(244, 240, 231, 0.15);

    font-family: "DM Sans", sans-serif;

    font-size: 8px;
    font-weight: 500;
    line-height: 1.4;

    letter-spacing: 0.19em;
    text-transform: uppercase;

    color: rgba(244, 240, 231, 0.58);
}

.royal-office-enquiries-fieldset legend span {
    color: var(--gold);
}

.royal-office-enquiries-fields {
    display: grid;

    grid-template-columns: repeat(2, minmax(0, 1fr));

    gap: 34px 30px;
}

.royal-office-enquiries-field {
    min-width: 0;
}

.royal-office-enquiries-field-full {
    grid-column: 1 / -1;
}


/* =========================================================
   LABELS
   ========================================================= */

.royal-office-enquiries-field label {
    display: flex;
    align-items: center;
    gap: 7px;

    margin-bottom: 12px;

    font-family: "DM Sans", sans-serif;

    font-size: 8px;
    font-weight: 500;
    line-height: 1.4;

    letter-spacing: 0.16em;
    text-transform: uppercase;

    color: rgba(244, 240, 231, 0.62);
}

.royal-office-enquiries-field label > span:not(.royal-office-enquiries-optional) {
    color: var(--gold);
}

.royal-office-enquiries-optional {
    color: rgba(244, 240, 231, 0.27);
}


/* =========================================================
   INPUTS / SELECT / TEXTAREA
   ========================================================= */

.royal-office-enquiries-field input,
.royal-office-enquiries-field select,
.royal-office-enquiries-field textarea {
    display: block;

    width: 100%;

    border: 0;
    border-bottom: 1px solid rgba(244, 240, 231, 0.22);
    border-radius: 0;

    outline: none;

    background: transparent;

    font-family: "DM Sans", sans-serif;
    font-size: 12px;
    font-weight: 300;
    line-height: 1.5;

    letter-spacing: 0.01em;

    color: var(--ivory);

    transition:
        border-color 0.3s ease,
        background-color 0.3s ease;
}

.royal-office-enquiries-field input,
.royal-office-enquiries-field select {
    height: 53px;
    padding: 0 2px;
}

.royal-office-enquiries-field textarea {
    min-height: 190px;
    padding: 12px 2px 14px;

    resize: vertical;
}

.royal-office-enquiries-field input::placeholder,
.royal-office-enquiries-field textarea::placeholder {
    color: rgba(244, 240, 231, 0.24);
    opacity: 1;
}

.royal-office-enquiries-field input:focus,
.royal-office-enquiries-field select:focus,
.royal-office-enquiries-field textarea:focus {
    border-bottom-color: var(--gold);
}


/* =========================================================
   SELECT
   ========================================================= */

.royal-office-enquiries-select {
    position: relative;
}

.royal-office-enquiries-select::after {
    content: "";

    position: absolute;
    top: 50%;
    right: 3px;

    transform: translateY(-50%);

    pointer-events: none;

    width: 7px;
    height: 7px;

    border-right: 1px solid var(--gold);
    border-bottom: 1px solid var(--gold);

    transform: translateY(-65%) rotate(45deg);
}

.royal-office-enquiries-field select {
    appearance: none;
    -webkit-appearance: none;

    padding-right: 30px;

    cursor: pointer;
}

.royal-office-enquiries-field select:invalid {
    color: rgba(244, 240, 231, 0.24);
}

.royal-office-enquiries-field select option {
    background: #171714;
    color: var(--ivory);
}


/* =========================================================
   DATE INPUT
   ========================================================= */

.royal-office-enquiries-field input[type="date"] {
    color-scheme: dark;
}

.royal-office-enquiries-field input[type="date"]::-webkit-calendar-picker-indicator {
    opacity: 0.5;
    cursor: pointer;
}


/* =========================================================
   VALIDATION
   ========================================================= */

.royal-office-enquiries-field input:user-invalid,
.royal-office-enquiries-field select:user-invalid,
.royal-office-enquiries-field textarea:user-invalid {
    border-bottom-color: rgba(213, 182, 116, 0.45);
}

.royal-office-enquiries-field input:focus:invalid,
.royal-office-enquiries-field select:focus:invalid,
.royal-office-enquiries-field textarea:focus:invalid {
    border-bottom-color: var(--gold);
}


/* =========================================================
   SUBMISSION AREA
   ========================================================= */

.royal-office-enquiries-submit-area {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;

    gap: 45px;

    padding-top: 8px;

    border-top: 1px solid rgba(244, 240, 231, 0.15);
}


/* =========================================================
   CONSENT
   ========================================================= */

.royal-office-enquiries-consent {
    max-width: 520px;
    padding-top: 25px;
}

.royal-office-enquiries-checkbox {
    display: grid;

    grid-template-columns: 17px minmax(0, 1fr);

    column-gap: 12px;
    align-items: start;

    cursor: pointer;
}

.royal-office-enquiries-checkbox input {
    position: absolute;

    width: 1px;
    height: 1px;

    opacity: 0;
    pointer-events: none;
}

.royal-office-enquiries-checkbox-mark {
    position: relative;

    display: block;

    width: 15px;
    height: 15px;

    margin-top: 2px;

    border: 1px solid rgba(244, 240, 231, 0.35);

    transition:
        border-color 0.25s ease,
        background-color 0.25s ease;
}

.royal-office-enquiries-checkbox-mark::after {
    content: "";

    position: absolute;

    left: 4px;
    top: 1px;

    width: 4px;
    height: 8px;

    border-right: 1px solid var(--obsidian);
    border-bottom: 1px solid var(--obsidian);

    opacity: 0;

    transform: rotate(45deg) scale(0.7);

    transition:
        opacity 0.2s ease,
        transform 0.2s ease;
}

.royal-office-enquiries-checkbox input:checked
+ .royal-office-enquiries-checkbox-mark {
    border-color: var(--gold);
    background: var(--gold);
}

.royal-office-enquiries-checkbox input:checked
+ .royal-office-enquiries-checkbox-mark::after {
    opacity: 1;
    transform: rotate(45deg) scale(1);
}

.royal-office-enquiries-checkbox input:focus-visible
+ .royal-office-enquiries-checkbox-mark {
    outline: 1px solid var(--gold);
    outline-offset: 4px;
}

.royal-office-enquiries-checkbox-text {
    font-family: "DM Sans", sans-serif;

    font-size: 8px;
    font-weight: 300;
    line-height: 1.75;

    letter-spacing: 0.005em;

    color: rgba(244, 240, 231, 0.40);
}

.royal-office-enquiries-checkbox-text > span {
    color: var(--gold);
}


/* =========================================================
   SUBMIT BUTTON
   ========================================================= */

.royal-office-enquiries-submit {
    flex: 0 0 auto;
}

.royal-office-enquiries-submit-button {
    display: inline-flex;
    align-items: center;
    justify-content: space-between;

    min-width: 205px;

    padding: 18px 0 17px;

    border: 0;
    border-bottom: 1px solid var(--gold);

    background: transparent;

    cursor: pointer;

    font-family: "DM Sans", sans-serif;

    font-size: 8px;
    font-weight: 500;
    line-height: 1.4;

    letter-spacing: 0.19em;
    text-transform: uppercase;

    color: var(--ivory);

    transition:
        color 0.3s ease,
        min-width 0.4s var(--ease);
}

.royal-office-enquiries-submit-button:hover {
    min-width: 225px;
    color: var(--gold);
}

.royal-office-enquiries-submit-arrow {
    margin-left: 30px;

    font-size: 15px;
    font-weight: 300;

    color: var(--gold);

    transition: transform 0.35s var(--ease);
}

.royal-office-enquiries-submit-button:hover
.royal-office-enquiries-submit-arrow {
    transform: translateX(6px);
}

.royal-office-enquiries-submit-button:focus-visible {
    outline: 1px solid var(--gold);
    outline-offset: 7px;
}


/* =========================================================
   FORM STATUS
   ========================================================= */

.royal-office-enquiries-form-status {
    min-height: 20px;

    margin-top: 20px;

    font-family: "DM Sans", sans-serif;

    font-size: 8px;
    font-weight: 400;
    line-height: 1.6;

    letter-spacing: 0.08em;

    color: var(--gold);
}


/* =========================================================
   CLOSING NOTE
   ========================================================= */

.royal-office-enquiries-note {
    display: flex;
    align-items: center;

    gap: 15px;

    margin-top: 92px;
}

.royal-office-enquiries-note-line {
    width: 35px;
    height: 1px;

    flex: 0 0 auto;

    background: var(--gold-soft);
}

.royal-office-enquiries-note p {
    margin: 0;

    font-family: "DM Sans", sans-serif;

    font-size: 7px;
    font-weight: 400;
    line-height: 1.6;

    letter-spacing: 0.10em;
    text-transform: uppercase;

    color: rgba(244, 240, 231, 0.30);
}


/* =========================================================
   TABLET
   ========================================================= */

@media (max-width: 1050px) {

    .royal-office-enquiries-inner {
        padding: 105px 6vw 120px;
    }

    .royal-office-enquiries-heading {
        gap: 55px;
        margin-bottom: 85px;
    }

    .royal-office-enquiries-heading h2 {
        font-size: clamp(56px, 8vw, 92px);
    }

    .royal-office-enquiries-category-list {
        column-gap: 40px;
    }

    .royal-office-enquiries-category {
        grid-template-columns: 30px minmax(0, 1fr) 20px;
    }

    .royal-office-enquiries-category-title {
        font-size: 20px;
    }

    .royal-office-enquiries-form-wrapper {
        gap: 55px;
    }

    .royal-office-enquiries-form-intro {
        position: static;
    }
}


/* =========================================================
   MOBILE
   ========================================================= */

@media (max-width: 800px) {

    .royal-office-enquiries-inner {
        padding: 82px 6.5vw 92px;
    }


    /* -----------------------------------------------------
       INTRO
       ----------------------------------------------------- */

    .royal-office-enquiries-intro {
        margin-bottom: 55px;
        padding-bottom: 15px;
    }

    .royal-office-enquiries-marker,
    .royal-office-enquiries-place {
        font-size: 7px;
        letter-spacing: 0.16em;
    }


    /* -----------------------------------------------------
       EDITORIAL HEADING
       ----------------------------------------------------- */

    .royal-office-enquiries-heading {
        display: flex;
        flex-direction: column;

        gap: 35px;

        margin-bottom: 70px;

        align-items: stretch;
    }

    .royal-office-enquiries-eyebrow {
        margin-bottom: 20px;

        font-size: 7px;
        letter-spacing: 0.18em;
    }

    .royal-office-enquiries-heading h2 {
        font-size: clamp(57px, 17vw, 86px);
        line-height: 0.80;
    }

    .royal-office-enquiries-heading h2 em {
        margin-left: 0.28em;
    }

    .royal-office-enquiries-heading-copy {
        max-width: 100%;
    }

    .royal-office-enquiries-heading-copy
    .royal-office-enquiries-lead {
        margin-bottom: 22px;

        font-size: 23px;
        line-height: 1.18;
    }

    .royal-office-enquiries-heading-copy p {
        font-size: 10.5px;
        line-height: 1.8;
    }


    /* -----------------------------------------------------
       CATEGORIES
       ----------------------------------------------------- */

    .royal-office-enquiries-categories {
        margin-bottom: 78px;
    }

    .royal-office-enquiries-categories-header {
        display: block;

        padding-bottom: 13px;

        line-height: 1.7;
    }

    .royal-office-enquiries-categories-header span {
        display: block;
    }

    .royal-office-enquiries-categories-header
    span:last-child {
        margin-top: 6px;
    }

    .royal-office-enquiries-category-list {
        display: block;
    }

    .royal-office-enquiries-category {
        grid-template-columns: 27px minmax(0, 1fr) 20px;

        min-height: 67px;
    }

    .royal-office-enquiries-category:hover {
        padding-left: 0;
    }

    .royal-office-enquiries-category-number {
        font-size: 6.5px;
    }

    .royal-office-enquiries-category-title {
        font-size: 20px;
    }

    .royal-office-enquiries-category-arrow {
        font-size: 12px;
    }


    /* -----------------------------------------------------
       FORM WRAPPER
       ----------------------------------------------------- */

    .royal-office-enquiries-form-wrapper {
        display: block;
    }

    .royal-office-enquiries-form-intro {
        position: static;

        margin-bottom: 48px;
    }

    .royal-office-enquiries-form-number {
        margin-bottom: 15px;

        font-size: 7px;
    }

    .royal-office-enquiries-form-intro h3 {
        margin-bottom: 17px;

        font-size: 48px;
    }

    .royal-office-enquiries-form-intro > p:last-child {
        max-width: 360px;

        font-size: 9px;
        line-height: 1.75;
    }


    /* -----------------------------------------------------
       FIELDSETS
       ----------------------------------------------------- */

    .royal-office-enquiries-fieldset {
        margin-bottom: 48px;
    }

    .royal-office-enquiries-fieldset legend {
        margin-bottom: 25px;

        font-size: 7px;
    }

    .royal-office-enquiries-fields {
        display: grid;

        grid-template-columns: 1fr;

        gap: 28px;
    }

    .royal-office-enquiries-field-full {
        grid-column: auto;
    }


    /* -----------------------------------------------------
       FORM CONTROLS
       ----------------------------------------------------- */

    .royal-office-enquiries-field label {
        margin-bottom: 10px;

        font-size: 7px;
        letter-spacing: 0.14em;
    }

    .royal-office-enquiries-field input,
    .royal-office-enquiries-field select,
    .royal-office-enquiries-field textarea {
        font-size: 11px;
    }

    .royal-office-enquiries-field input,
    .royal-office-enquiries-field select {
        height: 51px;
    }

    .royal-office-enquiries-field textarea {
        min-height: 170px;
    }


    /* -----------------------------------------------------
       SUBMISSION
       ----------------------------------------------------- */

    .royal-office-enquiries-submit-area {
        display: flex;
        flex-direction: column;
        align-items: stretch;

        gap: 32px;

        padding-top: 0;
    }

    .royal-office-enquiries-consent {
        max-width: 100%;
        padding-top: 23px;
    }

    .royal-office-enquiries-checkbox-text {
        font-size: 8px;
        line-height: 1.7;
    }

    .royal-office-enquiries-submit-button {
        width: 100%;
        min-width: 0;
        padding: 17px 0 16px;
    }

    .royal-office-enquiries-submit-button:hover {
        min-width: 0;
    }


    /* -----------------------------------------------------
       NOTE
       ----------------------------------------------------- */

    .royal-office-enquiries-note {
        align-items: flex-start;

        margin-top: 70px;
    }

    .royal-office-enquiries-note-line {
        margin-top: 5px;
    }

    .royal-office-enquiries-note p {
        font-size: 6.5px;
        line-height: 1.7;
    }
}


/* =========================================================
   SMALL MOBILE
   ========================================================= */

@media (max-width: 420px) {

    .royal-office-enquiries-inner {
        padding: 72px 7vw 82px;
    }

    .royal-office-enquiries-intro {
        margin-bottom: 47px;
    }

    .royal-office-enquiries-place {
        max-width: 42%;

        text-align: right;
        line-height: 1.55;
    }


    /* -----------------------------------------------------
       HEADING
       ----------------------------------------------------- */

    .royal-office-enquiries-heading {
        gap: 30px;
        margin-bottom: 62px;
    }

    .royal-office-enquiries-heading h2 {
        font-size: clamp(52px, 17vw, 76px);
    }

    .royal-office-enquiries-heading-copy
    .royal-office-enquiries-lead {
        font-size: 21px;
    }

    .royal-office-enquiries-heading-copy p {
        font-size: 10px;
    }


    /* -----------------------------------------------------
       CATEGORIES
       ----------------------------------------------------- */

    .royal-office-enquiries-categories {
        margin-bottom: 66px;
    }

    .royal-office-enquiries-category {
        grid-template-columns: 24px minmax(0, 1fr) 18px;

        min-height: 63px;
    }

    .royal-office-enquiries-category-title {
        font-size: 18px;
    }


    /* -----------------------------------------------------
       FORM
       ----------------------------------------------------- */

    .royal-office-enquiries-form-intro {
        margin-bottom: 42px;
    }

    .royal-office-enquiries-form-intro h3 {
        font-size: 44px;
    }

    .royal-office-enquiries-fieldset {
        margin-bottom: 43px;
    }

    .royal-office-enquiries-fields {
        gap: 25px;
    }

    .royal-office-enquiries-field textarea {
        min-height: 155px;
    }

    .royal-office-enquiries-checkbox-text {
        font-size: 7.5px;
    }

    .royal-office-enquiries-note {
        margin-top: 60px;
    }
}


/* =========================================================
   REDUCED MOTION
   ========================================================= */

@media (prefers-reduced-motion: reduce) {

    .royal-office-enquiries-category,
    .royal-office-enquiries-category-title,
    .royal-office-enquiries-category-arrow,
    .royal-office-enquiries-field input,
    .royal-office-enquiries-field select,
    .royal-office-enquiries-field textarea,
    .royal-office-enquiries-checkbox-mark,
    .royal-office-enquiries-checkbox-mark::after,
    .royal-office-enquiries-submit-button,
    .royal-office-enquiries-submit-arrow {
        transition: none;
    }

    .royal-office-enquiries-category:hover {
        padding-left: 0;
    }

    .royal-office-enquiries-category:hover
    .royal-office-enquiries-category-arrow {
        transform: none;
    }

    .royal-office-enquiries-submit-button:hover {
        min-width: 205px;
    }

    .royal-office-enquiries-submit-button:hover
    .royal-office-enquiries-submit-arrow {
        transform: none;
    }
}

/* =========================================================
   FORM STATUS STATES
   ========================================================= */

.royal-office-enquiries-form-status[data-status="success"] {
    color: var(--gold);
}

.royal-office-enquiries-form-status[data-status="error"] {
    color: rgba(244, 240, 231, 0.72);
}

.royal-office-enquiries-form-status[data-status="sending"] {
    color: rgba(244, 240, 231, 0.42);
}

.royal-office-enquiries-submit-button:disabled {
    cursor: wait;
    opacity: 0.58;
}

/* =========================================================
   SECTION 04 — GHANA & UNITED KINGDOM
   Ultra-Premium Editorial Location Section
   ========================================================= */

.royal-office-locations {
    position: relative;
    background: #e8e1d4;
    color: var(--obsidian);
    overflow: hidden;
}

.royal-office-locations-inner {
    width: min(1400px, 100%);
    margin: 0 auto;
    padding: 125px 7vw 135px;
}


/* =========================================================
   SECTION INTRO
   ========================================================= */

.royal-office-locations-intro {
    display: flex;
    align-items: center;
    justify-content: space-between;

    margin-bottom: 78px;
    padding-bottom: 18px;

    border-bottom: 1px solid rgba(17, 17, 15, 0.15);
}

.royal-office-locations-marker,
.royal-office-locations-place {
    margin: 0;

    font-family: "DM Sans", sans-serif;
    font-size: 8px;
    font-weight: 500;
    line-height: 1.4;

    letter-spacing: 0.20em;
    text-transform: uppercase;
}

.royal-office-locations-marker {
    color: #8c6f35;
}

.royal-office-locations-place {
    color: rgba(17, 17, 15, 0.44);
}


/* =========================================================
   EDITORIAL HEADING
   ========================================================= */

.royal-office-locations-heading {
    max-width: 920px;
    margin-bottom: 92px;
}

.royal-office-locations-eyebrow {
    margin: 0 0 25px;

    font-family: "DM Sans", sans-serif;
    font-size: 8px;
    font-weight: 500;
    line-height: 1.4;

    letter-spacing: 0.22em;
    text-transform: uppercase;

    color: rgba(17, 17, 15, 0.48);
}

.royal-office-locations-heading h2 {
    margin: 0;

    font-family: "Cormorant Garamond", serif;

    font-size: clamp(68px, 8vw, 120px);
    font-weight: 300;
    line-height: 0.79;

    letter-spacing: -0.058em;

    color: var(--obsidian);
}

.royal-office-locations-heading h2 em {
    display: inline-block;

    margin-left: 0.45em;

    font-style: italic;
    font-weight: 300;

    letter-spacing: -0.06em;

    color: #8c6f35;
}


/* =========================================================
   LOCATIONS GRID
   ========================================================= */

.royal-office-locations-grid {
    display: grid;

    grid-template-columns:
        minmax(0, 1fr)
        100px
        minmax(0, 1fr);

    align-items: stretch;

    border-top: 1px solid rgba(17, 17, 15, 0.18);
    border-bottom: 1px solid rgba(17, 17, 15, 0.18);
}


/* =========================================================
   LOCATION
   ========================================================= */

.royal-office-location {
    min-height: 535px;

    display: flex;
    flex-direction: column;

    padding: 30px 0 26px;
}

.royal-office-location-ghana {
    padding-right: clamp(35px, 5vw, 80px);
}

.royal-office-location-uk {
    padding-left: clamp(35px, 5vw, 80px);

    border-left: 1px solid rgba(17, 17, 15, 0.14);
}


/* =========================================================
   LOCATION TOP
   ========================================================= */

.royal-office-location-top {
    display: flex;
    align-items: center;
    justify-content: space-between;

    padding-bottom: 16px;

    border-bottom: 1px solid rgba(17, 17, 15, 0.12);
}

.royal-office-location-number {
    font-family: "DM Sans", sans-serif;

    font-size: 7px;
    font-weight: 500;
    line-height: 1.4;

    letter-spacing: 0.15em;

    color: #8c6f35;
}

.royal-office-location-region {
    font-family: "DM Sans", sans-serif;

    font-size: 7px;
    font-weight: 500;
    line-height: 1.4;

    letter-spacing: 0.18em;
    text-transform: uppercase;

    color: rgba(17, 17, 15, 0.42);
}


/* =========================================================
   LOCATION CONTENT
   ========================================================= */

.royal-office-location-content {
    padding-top: 76px;
}

.royal-office-location-eyebrow {
    margin: 0 0 21px;

    font-family: "DM Sans", sans-serif;

    font-size: 8px;
    font-weight: 500;
    line-height: 1.5;

    letter-spacing: 0.18em;
    text-transform: uppercase;

    color: rgba(17, 17, 15, 0.48);
}

.royal-office-location-content h3 {
    margin: 0;

    font-family: "Cormorant Garamond", serif;

    font-size: clamp(60px, 6.5vw, 94px);
    font-weight: 300;
    line-height: 0.78;

    letter-spacing: -0.055em;

    color: var(--obsidian);
}

.royal-office-location-content h3 em {
    display: inline-block;

    margin-left: 0.35em;

    font-style: italic;
    font-weight: 300;

    letter-spacing: -0.06em;

    color: #8c6f35;
}

.royal-office-location-rule {
    width: 45px;
    height: 1px;

    margin: 43px 0 28px;

    background: rgba(140, 111, 53, 0.60);
}

.royal-office-location-role {
    max-width: 410px;

    margin: 0 0 20px;

    font-family: "Cormorant Garamond", serif;

    font-size: 23px;
    font-weight: 400;
    line-height: 1.2;

    letter-spacing: -0.01em;

    color: rgba(17, 17, 15, 0.82);
}

.royal-office-location-description {
    max-width: 445px;

    margin: 0;

    font-family: "DM Sans", sans-serif;

    font-size: 10px;
    font-weight: 300;
    line-height: 1.85;

    letter-spacing: 0.005em;

    color: rgba(17, 17, 15, 0.53);
}


/* =========================================================
   LOCATION FOOTER
   ========================================================= */

.royal-office-location-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;

    gap: 20px;

    margin-top: auto;
    padding-top: 25px;

    border-top: 1px solid rgba(17, 17, 15, 0.12);

    font-family: "DM Sans", sans-serif;

    font-size: 7px;
    font-weight: 500;
    line-height: 1.4;

    letter-spacing: 0.16em;
    text-transform: uppercase;

    color: rgba(17, 17, 15, 0.40);
}


/* =========================================================
   CENTRAL CONNECTION
   ========================================================= */

.royal-office-locations-connection {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;

    gap: 17px;

    min-height: 100%;
}

.royal-office-locations-connection-line {
    width: 1px;
    height: 100%;

    max-height: 145px;

    background: rgba(140, 111, 53, 0.32);
}

.royal-office-locations-connection-symbol {
    display: flex;
    align-items: center;
    justify-content: center;

    width: 43px;
    height: 43px;

    border: 1px solid rgba(140, 111, 53, 0.40);

    border-radius: 50%;

    font-family: "Cormorant Garamond", serif;

    font-size: 19px;
    font-weight: 300;

    color: #8c6f35;
}


/* =========================================================
   CLOSING STATEMENT
   ========================================================= */

.royal-office-locations-statement {
    display: flex;
    align-items: center;

    gap: 18px;

    margin-top: 72px;
}

.royal-office-locations-statement-line {
    width: 38px;
    height: 1px;

    flex: 0 0 auto;

    background: rgba(140, 111, 53, 0.60);
}

.royal-office-locations-statement p {
    margin: 0;

    font-family: "Cormorant Garamond", serif;

    font-size: clamp(25px, 2.5vw, 36px);
    font-weight: 300;
    line-height: 1.05;

    letter-spacing: -0.02em;

    color: rgba(17, 17, 15, 0.72);
}


/* =========================================================
   TABLET
   ========================================================= */

@media (max-width: 1050px) {

    .royal-office-locations-inner {
        padding: 105px 6vw 115px;
    }

    .royal-office-locations-heading {
        margin-bottom: 75px;
    }

    .royal-office-locations-heading h2 {
        font-size: clamp(60px, 8.5vw, 94px);
    }

    .royal-office-locations-grid {
        grid-template-columns:
            minmax(0, 1fr)
            75px
            minmax(0, 1fr);
    }

    .royal-office-location {
        min-height: 510px;
    }

    .royal-office-location-content {
        padding-top: 62px;
    }

    .royal-office-location-content h3 {
        font-size: clamp(55px, 6.7vw, 78px);
    }

    .royal-office-location-role {
        font-size: 21px;
    }

    .royal-office-locations-connection-line {
        max-height: 120px;
    }
}


/* =========================================================
   MOBILE
   ========================================================= */

@media (max-width: 800px) {

    .royal-office-locations-inner {
        padding: 82px 6.5vw 92px;
    }


    /* -----------------------------------------------------
       INTRO
       ----------------------------------------------------- */

    .royal-office-locations-intro {
        margin-bottom: 55px;
        padding-bottom: 15px;
    }

    .royal-office-locations-marker,
    .royal-office-locations-place {
        font-size: 7px;
        letter-spacing: 0.16em;
    }


    /* -----------------------------------------------------
       HEADING
       ----------------------------------------------------- */

    .royal-office-locations-heading {
        margin-bottom: 62px;
    }

    .royal-office-locations-eyebrow {
        margin-bottom: 20px;

        font-size: 7px;
        letter-spacing: 0.18em;
    }

    .royal-office-locations-heading h2 {
        font-size: clamp(57px, 17vw, 86px);
        line-height: 0.80;
    }

    .royal-office-locations-heading h2 em {
        margin-left: 0.28em;
    }


    /* -----------------------------------------------------
       LOCATIONS
       ----------------------------------------------------- */

    .royal-office-locations-grid {
        display: flex;
        flex-direction: column;

        border-top: 1px solid rgba(17, 17, 15, 0.18);
        border-bottom: 1px solid rgba(17, 17, 15, 0.18);
    }

    .royal-office-location {
        min-height: 0;

        padding: 25px 0 31px;
    }

    .royal-office-location-ghana,
    .royal-office-location-uk {
        padding-left: 0;
        padding-right: 0;

        border-left: 0;
    }

    .royal-office-location-uk {
        border-top: 1px solid rgba(17, 17, 15, 0.16);
    }


    /* -----------------------------------------------------
       LOCATION CONTENT
       ----------------------------------------------------- */

    .royal-office-location-content {
        padding-top: 47px;
    }

    .royal-office-location-eyebrow {
        margin-bottom: 18px;

        font-size: 7px;
        letter-spacing: 0.16em;
    }

    .royal-office-location-content h3 {
        font-size: clamp(56px, 17vw, 84px);
        line-height: 0.80;
    }

    .royal-office-location-content h3 em {
        margin-left: 0.27em;
    }

    .royal-office-location-rule {
        width: 32px;

        margin: 34px 0 23px;
    }

    .royal-office-location-role {
        max-width: 100%;

        margin-bottom: 18px;

        font-size: 21px;
        line-height: 1.18;
    }

    .royal-office-location-description {
        max-width: 100%;

        font-size: 10px;
        line-height: 1.8;
    }


    /* -----------------------------------------------------
       FOOTER
       ----------------------------------------------------- */

    .royal-office-location-footer {
        margin-top: 46px;
        padding-top: 19px;

        font-size: 6.5px;
        letter-spacing: 0.13em;
    }


    /* -----------------------------------------------------
       CONNECTION
       ----------------------------------------------------- */

    .royal-office-locations-connection {
        flex-direction: row;

        gap: 14px;

        height: 55px;
        min-height: 55px;
    }

    .royal-office-locations-connection-line {
        width: auto;
        height: 1px;

        max-width: none;

        flex: 1;

        background: rgba(140, 111, 53, 0.32);
    }

    .royal-office-locations-connection-symbol {
        width: 38px;
        height: 38px;

        flex: 0 0 auto;

        font-size: 17px;
    }


    /* -----------------------------------------------------
       STATEMENT
       ----------------------------------------------------- */

    .royal-office-locations-statement {
        align-items: flex-start;

        gap: 14px;

        margin-top: 57px;
    }

    .royal-office-locations-statement-line {
        width: 27px;

        margin-top: 9px;
    }

    .royal-office-locations-statement p {
        font-size: 26px;
        line-height: 1.05;
    }
}


/* =========================================================
   SMALL MOBILE
   ========================================================= */

@media (max-width: 420px) {

    .royal-office-locations-inner {
        padding: 72px 7vw 82px;
    }

    .royal-office-locations-intro {
        margin-bottom: 47px;
    }

    .royal-office-locations-place {
        max-width: 45%;

        text-align: right;
        line-height: 1.55;
    }


    /* -----------------------------------------------------
       HEADING
       ----------------------------------------------------- */

    .royal-office-locations-heading {
        margin-bottom: 54px;
    }

    .royal-office-locations-heading h2 {
        font-size: clamp(52px, 17vw, 76px);
    }


    /* -----------------------------------------------------
       LOCATION
       ----------------------------------------------------- */

    .royal-office-location {
        padding-top: 22px;
        padding-bottom: 27px;
    }

    .royal-office-location-content {
        padding-top: 41px;
    }

    .royal-office-location-content h3 {
        font-size: clamp(52px, 17vw, 75px);
    }

    .royal-office-location-role {
        font-size: 20px;
    }

    .royal-office-location-description {
        font-size: 9.5px;
        line-height: 1.78;
    }

    .royal-office-location-footer {
        margin-top: 40px;

        flex-wrap: wrap;
        row-gap: 8px;
    }


    /* -----------------------------------------------------
       CONNECTION
       ----------------------------------------------------- */

    .royal-office-locations-connection {
        height: 48px;
        min-height: 48px;
    }

    .royal-office-locations-connection-symbol {
        width: 35px;
        height: 35px;

        font-size: 16px;
    }


    /* -----------------------------------------------------
       STATEMENT
       ----------------------------------------------------- */

    .royal-office-locations-statement {
        margin-top: 50px;
    }

    .royal-office-locations-statement p {
        font-size: 23px;
    }
}


/* =========================================================
   REDUCED MOTION
   ========================================================= */

@media (prefers-reduced-motion: reduce) {

    .royal-office-locations *,
    .royal-office-locations *::before,
    .royal-office-locations *::after {
        scroll-behavior: auto !important;
    }
}

/* =========================================================
   SECTION 05 — OFFICIAL CONTACT
   Ultra-Premium Editorial Contact Section
   ========================================================= */

.royal-office-official-contact {
    position: relative;
    background: var(--ivory);
    color: var(--obsidian);
    overflow: hidden;
}

.royal-office-official-contact-inner {
    width: min(1400px, 100%);
    margin: 0 auto;
    padding: 125px 7vw 135px;
}


/* =========================================================
   SECTION INTRO
   ========================================================= */

.royal-office-official-contact-intro {
    display: flex;
    align-items: center;
    justify-content: space-between;

    margin-bottom: 82px;
    padding-bottom: 18px;

    border-bottom: 1px solid rgba(17, 17, 15, 0.14);
}

.royal-office-official-contact-marker,
.royal-office-official-contact-place {
    margin: 0;

    font-family: "DM Sans", sans-serif;
    font-size: 8px;
    font-weight: 500;
    line-height: 1.4;

    letter-spacing: 0.20em;
    text-transform: uppercase;
}

.royal-office-official-contact-marker {
    color: #8c6f35;
}

.royal-office-official-contact-place {
    color: rgba(17, 17, 15, 0.42);
}


/* =========================================================
   EDITORIAL HEADING
   ========================================================= */

.royal-office-official-contact-heading {
    max-width: 920px;
    margin-bottom: 92px;
}

.royal-office-official-contact-eyebrow {
    margin: 0 0 25px;

    font-family: "DM Sans", sans-serif;
    font-size: 8px;
    font-weight: 500;
    line-height: 1.4;

    letter-spacing: 0.22em;
    text-transform: uppercase;

    color: rgba(17, 17, 15, 0.48);
}

.royal-office-official-contact-heading h2 {
    margin: 0;

    font-family: "Cormorant Garamond", serif;

    font-size: clamp(68px, 8vw, 120px);
    font-weight: 300;
    line-height: 0.79;

    letter-spacing: -0.058em;

    color: var(--obsidian);
}

.royal-office-official-contact-heading h2 em {
    display: inline-block;

    margin-left: 0.42em;

    font-style: italic;
    font-weight: 300;

    letter-spacing: -0.06em;

    color: #8c6f35;
}


/* =========================================================
   MAIN CONTACT GRID
   ========================================================= */

.royal-office-official-contact-grid {
    display: grid;

    grid-template-columns:
        minmax(0, 0.72fr)
        minmax(0, 1fr);

    gap: clamp(70px, 10vw, 160px);

    align-items: start;

    padding-top: 14px;
}


/* =========================================================
   CONTACT CONTENT
   ========================================================= */

.royal-office-official-contact-content {
    max-width: 510px;
    padding-top: 7px;
}

.royal-office-official-contact-content p {
    margin: 0 0 22px;

    font-family: "DM Sans", sans-serif;

    font-size: 11px;
    font-weight: 300;
    line-height: 1.9;

    letter-spacing: 0.005em;

    color: rgba(17, 17, 15, 0.53);
}

.royal-office-official-contact-content
.royal-office-official-contact-lead {
    margin-bottom: 29px;

    font-family: "Cormorant Garamond", serif;

    font-size: clamp(25px, 2.35vw, 34px);
    font-weight: 400;
    line-height: 1.16;

    letter-spacing: -0.015em;

    color: rgba(17, 17, 15, 0.88);
}


/* =========================================================
   CONTACT DETAILS
   ========================================================= */

.royal-office-official-contact-details {
    border-top: 1px solid rgba(17, 17, 15, 0.17);
}


/* =========================================================
   CONTACT ITEM
   ========================================================= */

.royal-office-official-contact-item {
    position: relative;

    display: grid;

    grid-template-columns:
        34px
        minmax(0, 1fr)
        35px;

    align-items: center;

    min-height: 118px;

    padding: 0 3px;

    border-bottom: 1px solid rgba(17, 17, 15, 0.13);

    color: var(--obsidian);
    text-decoration: none;

    transition:
        padding 0.45s var(--ease),
        border-color 0.35s ease;
}

.royal-office-official-contact-item:hover {
    padding-left: 12px;

    border-bottom-color: rgba(140, 111, 53, 0.52);
}

.royal-office-official-contact-item-number {
    align-self: start;

    padding-top: 25px;

    font-family: "DM Sans", sans-serif;

    font-size: 7px;
    font-weight: 500;
    line-height: 1.4;

    letter-spacing: 0.15em;

    color: #8c6f35;
}

.royal-office-official-contact-item-content {
    display: flex;
    flex-direction: column;

    gap: 8px;
}

.royal-office-official-contact-item-label {
    font-family: "DM Sans", sans-serif;

    font-size: 7px;
    font-weight: 500;
    line-height: 1.4;

    letter-spacing: 0.18em;
    text-transform: uppercase;

    color: rgba(17, 17, 15, 0.40);
}

.royal-office-official-contact-item-value {
    font-family: "Cormorant Garamond", serif;

    font-size: clamp(23px, 2.4vw, 34px);
    font-weight: 400;
    line-height: 1.05;

    letter-spacing: -0.015em;

    color: var(--obsidian);

    overflow-wrap: anywhere;

    transition: color 0.3s ease;
}

.royal-office-official-contact-item:hover
.royal-office-official-contact-item-value {
    color: #8c6f35;
}

.royal-office-official-contact-item-arrow {
    justify-self: end;

    font-family: "DM Sans", sans-serif;

    font-size: 17px;
    font-weight: 300;

    color: rgba(140, 111, 53, 0.55);

    transition:
        transform 0.4s var(--ease),
        color 0.3s ease;
}

.royal-office-official-contact-item:hover
.royal-office-official-contact-item-arrow {
    transform: translate(4px, -4px);

    color: #8c6f35;
}

.royal-office-official-contact-item:focus-visible {
    outline: 1px solid #8c6f35;
    outline-offset: 6px;
}


/* =========================================================
   OFFICIAL DIGITAL PRESENCE
   ========================================================= */

.royal-office-official-contact-social {
    margin-top: 112px;

    padding-top: 24px;

    border-top: 1px solid rgba(17, 17, 15, 0.15);
}

.royal-office-official-contact-social-heading {
    display: flex;
    align-items: center;

    gap: 15px;

    margin-bottom: 0;

    font-family: "DM Sans", sans-serif;

    font-size: 7px;
    font-weight: 500;
    line-height: 1.4;

    letter-spacing: 0.19em;
    text-transform: uppercase;

    color: rgba(17, 17, 15, 0.43);
}

.royal-office-official-contact-social-rule {
    width: 34px;
    height: 1px;

    background: rgba(140, 111, 53, 0.55);
}

.royal-office-official-contact-social-links {
    display: grid;

    grid-template-columns: repeat(2, minmax(0, 1fr));

    margin-top: 31px;
}

.royal-office-official-contact-social-link {
    display: grid;

    grid-template-columns: 30px minmax(0, 1fr) 25px;

    align-items: center;

    min-height: 72px;

    padding: 0 4px;

    border-top: 1px solid rgba(17, 17, 15, 0.11);

    color: var(--obsidian);
    text-decoration: none;

    transition:
        padding 0.4s var(--ease),
        border-color 0.3s ease;
}

.royal-office-official-contact-social-link + .royal-office-official-contact-social-link {
    border-left: 1px solid rgba(17, 17, 15, 0.11);
    padding-left: 28px;
}

.royal-office-official-contact-social-link:hover {
    padding-left: 12px;

    border-top-color: rgba(140, 111, 53, 0.50);
}

.royal-office-official-contact-social-link + .royal-office-official-contact-social-link:hover {
    padding-left: 36px;
}

.royal-office-official-contact-social-number {
    font-family: "DM Sans", sans-serif;

    font-size: 7px;
    font-weight: 500;

    letter-spacing: 0.14em;

    color: #8c6f35;
}

.royal-office-official-contact-social-name {
    font-family: "Cormorant Garamond", serif;

    font-size: 22px;
    font-weight: 400;
    line-height: 1;

    letter-spacing: -0.01em;

    color: var(--obsidian);

    transition: color 0.3s ease;
}

.royal-office-official-contact-social-link:hover
.royal-office-official-contact-social-name {
    color: #8c6f35;
}

.royal-office-official-contact-social-arrow {
    justify-self: end;

    font-family: "DM Sans", sans-serif;

    font-size: 13px;
    font-weight: 300;

    color: rgba(140, 111, 53, 0.55);

    transition:
        transform 0.35s var(--ease),
        color 0.3s ease;
}

.royal-office-official-contact-social-link:hover
.royal-office-official-contact-social-arrow {
    transform: translate(4px, -4px);

    color: #8c6f35;
}

.royal-office-official-contact-social-link:focus-visible {
    outline: 1px solid #8c6f35;
    outline-offset: 6px;
}


/* =========================================================
   CONTACT NOTE
   ========================================================= */

.royal-office-official-contact-note {
    display: flex;
    align-items: center;

    gap: 17px;

    margin-top: 78px;
}

.royal-office-official-contact-note-line {
    width: 38px;
    height: 1px;

    flex: 0 0 auto;

    background: rgba(140, 111, 53, 0.60);
}

.royal-office-official-contact-note p {
    margin: 0;

    font-family: "DM Sans", sans-serif;

    font-size: 7px;
    font-weight: 500;
    line-height: 1.6;

    letter-spacing: 0.13em;
    text-transform: uppercase;

    color: rgba(17, 17, 15, 0.36);
}


/* =========================================================
   TABLET
   ========================================================= */

@media (max-width: 1050px) {

    .royal-office-official-contact-inner {
        padding: 105px 6vw 115px;
    }

    .royal-office-official-contact-heading {
        margin-bottom: 75px;
    }

    .royal-office-official-contact-heading h2 {
        font-size: clamp(60px, 8.5vw, 94px);
    }

    .royal-office-official-contact-grid {
        gap: 60px;
    }

    .royal-office-official-contact-item-value {
        font-size: clamp(22px, 2.7vw, 30px);
    }
}


/* =========================================================
   MOBILE
   ========================================================= */

@media (max-width: 800px) {

    .royal-office-official-contact-inner {
        padding: 82px 6.5vw 92px;
    }


    /* -----------------------------------------------------
       INTRO
       ----------------------------------------------------- */

    .royal-office-official-contact-intro {
        margin-bottom: 55px;
        padding-bottom: 15px;
    }

    .royal-office-official-contact-marker,
    .royal-office-official-contact-place {
        font-size: 7px;
        letter-spacing: 0.16em;
    }


    /* -----------------------------------------------------
       HEADING
       ----------------------------------------------------- */

    .royal-office-official-contact-heading {
        margin-bottom: 62px;
    }

    .royal-office-official-contact-eyebrow {
        margin-bottom: 20px;

        font-size: 7px;
        letter-spacing: 0.18em;
    }

    .royal-office-official-contact-heading h2 {
        font-size: clamp(57px, 17vw, 86px);
        line-height: 0.80;
    }

    .royal-office-official-contact-heading h2 em {
        margin-left: 0.28em;
    }


    /* -----------------------------------------------------
       CONTACT GRID
       ----------------------------------------------------- */

    .royal-office-official-contact-grid {
        display: flex;
        flex-direction: column;

        gap: 55px;
    }

    .royal-office-official-contact-content {
        max-width: 100%;
        padding-top: 0;
    }

    .royal-office-official-contact-content
    .royal-office-official-contact-lead {
        margin-bottom: 24px;

        font-size: 24px;
        line-height: 1.17;
    }

    .royal-office-official-contact-content p {
        font-size: 10.5px;
        line-height: 1.8;
    }


    /* -----------------------------------------------------
       CONTACT DETAILS
       ----------------------------------------------------- */

    .royal-office-official-contact-item {
        grid-template-columns:
            27px
            minmax(0, 1fr)
            25px;

        min-height: 105px;

        padding: 0 2px;
    }

    .royal-office-official-contact-item:hover {
        padding-left: 0;
    }

    .royal-office-official-contact-item-number {
        padding-top: 22px;

        font-size: 6.5px;
    }

    .royal-office-official-contact-item-content {
        gap: 7px;
    }

    .royal-office-official-contact-item-label {
        font-size: 6.5px;
        letter-spacing: 0.15em;
    }

    .royal-office-official-contact-item-value {
        font-size: clamp(21px, 6vw, 28px);
        line-height: 1.08;
    }

    .royal-office-official-contact-item-arrow {
        font-size: 15px;
    }


    /* -----------------------------------------------------
       DIGITAL PRESENCE
       ----------------------------------------------------- */

    .royal-office-official-contact-social {
        margin-top: 76px;
        padding-top: 20px;
    }

    .royal-office-official-contact-social-links {
        display: block;

        margin-top: 24px;
    }

    .royal-office-official-contact-social-link {
        min-height: 66px;

        grid-template-columns:
            27px
            minmax(0, 1fr)
            22px;
    }

    .royal-office-official-contact-social-link + .royal-office-official-contact-social-link {
        border-left: 0;
        padding-left: 4px;
    }

    .royal-office-official-contact-social-link:hover,
    .royal-office-official-contact-social-link + .royal-office-official-contact-social-link:hover {
        padding-left: 4px;
    }

    .royal-office-official-contact-social-name {
        font-size: 21px;
    }


    /* -----------------------------------------------------
       NOTE
       ----------------------------------------------------- */

    .royal-office-official-contact-note {
        align-items: flex-start;

        gap: 14px;

        margin-top: 62px;
    }

    .royal-office-official-contact-note-line {
        width: 28px;

        margin-top: 5px;
    }

    .royal-office-official-contact-note p {
        font-size: 6.5px;
        line-height: 1.7;
    }
}


/* =========================================================
   SMALL MOBILE
   ========================================================= */

@media (max-width: 420px) {

    .royal-office-official-contact-inner {
        padding: 72px 7vw 82px;
    }

    .royal-office-official-contact-intro {
        margin-bottom: 47px;
    }

    .royal-office-official-contact-place {
        max-width: 40%;

        text-align: right;
        line-height: 1.55;
    }


    /* -----------------------------------------------------
       HEADING
       ----------------------------------------------------- */

    .royal-office-official-contact-heading {
        margin-bottom: 54px;
    }

    .royal-office-official-contact-heading h2 {
        font-size: clamp(52px, 17vw, 76px);
    }


    /* -----------------------------------------------------
       CONTENT
       ----------------------------------------------------- */

    .royal-office-official-contact-grid {
        gap: 46px;
    }

    .royal-office-official-contact-content
    .royal-office-official-contact-lead {
        font-size: 22px;
    }

    .royal-office-official-contact-content p {
        font-size: 10px;
    }


    /* -----------------------------------------------------
       CONTACT ITEMS
       ----------------------------------------------------- */

    .royal-office-official-contact-item {
        grid-template-columns:
            24px
            minmax(0, 1fr)
            20px;

        min-height: 98px;
    }

    .royal-office-official-contact-item-value {
        font-size: clamp(19px, 6vw, 25px);
    }

    .royal-office-official-contact-item-arrow {
        font-size: 13px;
    }


    /* -----------------------------------------------------
       DIGITAL PRESENCE
       ----------------------------------------------------- */

    .royal-office-official-contact-social {
        margin-top: 64px;
    }

    .royal-office-official-contact-social-name {
        font-size: 20px;
    }


    /* -----------------------------------------------------
       NOTE
       ----------------------------------------------------- */

    .royal-office-official-contact-note {
        margin-top: 54px;
    }
}


/* =========================================================
   REDUCED MOTION
   ========================================================= */

@media (prefers-reduced-motion: reduce) {

    .royal-office-official-contact-item,
    .royal-office-official-contact-item-value,
    .royal-office-official-contact-item-arrow,
    .royal-office-official-contact-social-link,
    .royal-office-official-contact-social-name,
    .royal-office-official-contact-social-arrow {
        transition: none;
    }

    .royal-office-official-contact-item:hover {
        padding-left: 3px;
    }

    .royal-office-official-contact-item:hover
    .royal-office-official-contact-item-arrow {
        transform: none;
    }

    .royal-office-official-contact-social-link:hover {
        padding-left: 4px;
    }

    .royal-office-official-contact-social-link + .royal-office-official-contact-social-link:hover {
        padding-left: 28px;
    }

    .royal-office-official-contact-social-link:hover
    .royal-office-official-contact-social-arrow {
        transform: none;
    }
}

/* =========================================================
   SECTION 06 — ROYAL PROTOCOL
   Ultra-Premium Editorial Protocol Section
   ========================================================= */

.royal-office-protocol {
    position: relative;
    background: var(--obsidian);
    color: var(--ivory);
    overflow: hidden;
}

.royal-office-protocol-inner {
    width: min(1400px, 100%);
    margin: 0 auto;
    padding: 125px 7vw 135px;
}


/* =========================================================
   SECTION INTRO
   ========================================================= */

.royal-office-protocol-intro {
    display: flex;
    align-items: center;
    justify-content: space-between;

    margin-bottom: 82px;
    padding-bottom: 18px;

    border-bottom: 1px solid rgba(244, 240, 231, 0.14);
}

.royal-office-protocol-marker,
.royal-office-protocol-place {
    margin: 0;

    font-family: "DM Sans", sans-serif;
    font-size: 8px;
    font-weight: 500;
    line-height: 1.4;

    letter-spacing: 0.20em;
    text-transform: uppercase;
}

.royal-office-protocol-marker {
    color: var(--gold);
}

.royal-office-protocol-place {
    color: rgba(244, 240, 231, 0.40);
}


/* =========================================================
   EDITORIAL HEADING
   ========================================================= */

.royal-office-protocol-heading {
    display: grid;

    grid-template-columns:
        minmax(0, 1.08fr)
        minmax(320px, 0.68fr);

    gap: clamp(70px, 10vw, 160px);

    align-items: end;

    margin-bottom: 105px;
}

.royal-office-protocol-heading-main {
    max-width: 820px;
}

.royal-office-protocol-eyebrow {
    margin: 0 0 26px;

    font-family: "DM Sans", sans-serif;
    font-size: 8px;
    font-weight: 500;
    line-height: 1.4;

    letter-spacing: 0.22em;
    text-transform: uppercase;

    color: var(--gold-soft);
}

.royal-office-protocol-heading h2 {
    margin: 0;

    font-family: "Cormorant Garamond", serif;

    font-size: clamp(65px, 7.8vw, 118px);
    font-weight: 300;
    line-height: 0.80;

    letter-spacing: -0.058em;

    color: var(--ivory);
}

.royal-office-protocol-heading h2 em {
    display: inline-block;

    margin-left: 0.42em;

    font-style: italic;
    font-weight: 300;

    letter-spacing: -0.06em;

    color: var(--gold);
}

.royal-office-protocol-heading-copy {
    max-width: 490px;
    padding-bottom: 4px;
}

.royal-office-protocol-heading-copy p {
    margin: 0 0 22px;

    font-family: "DM Sans", sans-serif;

    font-size: 11px;
    font-weight: 300;
    line-height: 1.9;

    letter-spacing: 0.005em;

    color: rgba(244, 240, 231, 0.50);
}

.royal-office-protocol-heading-copy
.royal-office-protocol-lead {
    margin-bottom: 25px;

    font-family: "Cormorant Garamond", serif;

    font-size: clamp(23px, 2vw, 30px);
    font-weight: 400;
    line-height: 1.20;

    letter-spacing: -0.012em;

    color: rgba(244, 240, 231, 0.84);
}


/* =========================================================
   PROTOCOL PRINCIPLES
   ========================================================= */

.royal-office-protocol-principles {
    border-top: 1px solid rgba(244, 240, 231, 0.16);
}

.royal-office-protocol-principle {
    display: grid;

    grid-template-columns:
        85px
        minmax(0, 1fr);

    column-gap: clamp(35px, 5vw, 80px);

    padding: 58px 0 62px;

    border-bottom: 1px solid rgba(244, 240, 231, 0.11);
}

.royal-office-protocol-principle-number {
    padding-top: 7px;

    font-family: "DM Sans", sans-serif;

    font-size: 8px;
    font-weight: 500;
    line-height: 1.4;

    letter-spacing: 0.18em;

    color: var(--gold);
}

.royal-office-protocol-principle-content {
    display: grid;

    grid-template-columns:
        minmax(0, 0.88fr)
        minmax(260px, 0.55fr);

    column-gap: clamp(50px, 8vw, 125px);

    align-items: end;
}

.royal-office-protocol-principle-eyebrow {
    grid-column: 1 / -1;

    margin: 0 0 22px;

    font-family: "DM Sans", sans-serif;

    font-size: 7px;
    font-weight: 500;
    line-height: 1.4;

    letter-spacing: 0.20em;
    text-transform: uppercase;

    color: rgba(213, 182, 116, 0.55);
}

.royal-office-protocol-principle-content h3 {
    margin: 0;

    font-family: "Cormorant Garamond", serif;

    font-size: clamp(43px, 4.7vw, 70px);
    font-weight: 300;
    line-height: 0.86;

    letter-spacing: -0.045em;

    color: var(--ivory);
}

.royal-office-protocol-principle-content h3 em {
    display: inline-block;

    margin-left: 0.34em;

    font-style: italic;
    font-weight: 300;

    letter-spacing: -0.055em;

    color: var(--gold);
}

.royal-office-protocol-principle-text {
    max-width: 430px;

    margin: 0;

    font-family: "DM Sans", sans-serif;

    font-size: 10px;
    font-weight: 300;
    line-height: 1.9;

    letter-spacing: 0.005em;

    color: rgba(244, 240, 231, 0.47);
}


/* =========================================================
   PROTOCOL NOTE
   ========================================================= */

.royal-office-protocol-note {
    display: grid;

    grid-template-columns: 95px minmax(0, 1fr);

    gap: 45px;

    max-width: 900px;

    margin-top: 90px;
    padding-top: 25px;

    border-top: 1px solid rgba(213, 182, 116, 0.30);
}

.royal-office-protocol-note-mark {
    display: flex;
    flex-direction: column;

    padding-top: 2px;

    font-family: "Cormorant Garamond", serif;

    font-size: 22px;
    font-weight: 300;
    line-height: 0.82;

    letter-spacing: 0.02em;

    color: var(--gold);
}

.royal-office-protocol-note-mark span:last-child {
    margin-left: 15px;
    margin-top: 5px;
}

.royal-office-protocol-note-content {
    max-width: 650px;
}

.royal-office-protocol-note-label {
    margin: 0 0 17px;

    font-family: "DM Sans", sans-serif;

    font-size: 7px;
    font-weight: 500;
    line-height: 1.4;

    letter-spacing: 0.20em;
    text-transform: uppercase;

    color: rgba(244, 240, 231, 0.43);
}

.royal-office-protocol-note-text {
    margin: 0;

    font-family: "Cormorant Garamond", serif;

    font-size: clamp(22px, 2.1vw, 30px);
    font-weight: 300;
    line-height: 1.18;

    letter-spacing: -0.01em;

    color: rgba(244, 240, 231, 0.72);
}


/* =========================================================
   PROTOCOL FOOTER
   ========================================================= */

.royal-office-protocol-footer {
    display: flex;
    align-items: center;

    gap: 13px;

    margin-top: 88px;

    font-family: "DM Sans", sans-serif;

    font-size: 7px;
    font-weight: 500;
    line-height: 1.4;

    letter-spacing: 0.18em;
    text-transform: uppercase;

    color: rgba(244, 240, 231, 0.34);
}

.royal-office-protocol-footer-rule {
    width: 28px;
    height: 1px;

    background: rgba(213, 182, 116, 0.45);
}


/* =========================================================
   TABLET
   ========================================================= */

@media (max-width: 1050px) {

    .royal-office-protocol-inner {
        padding: 105px 6vw 115px;
    }

    .royal-office-protocol-heading {
        gap: 55px;
        margin-bottom: 85px;
    }

    .royal-office-protocol-heading h2 {
        font-size: clamp(57px, 8.5vw, 94px);
    }

    .royal-office-protocol-principle {
        grid-template-columns: 65px minmax(0, 1fr);

        column-gap: 35px;
    }

    .royal-office-protocol-principle-content {
        column-gap: 55px;
    }

    .royal-office-protocol-principle-content h3 {
        font-size: clamp(40px, 4.9vw, 60px);
    }
}


/* =========================================================
   MOBILE
   ========================================================= */

@media (max-width: 800px) {

    .royal-office-protocol-inner {
        padding: 82px 6.5vw 92px;
    }


    /* -----------------------------------------------------
       INTRO
       ----------------------------------------------------- */

    .royal-office-protocol-intro {
        margin-bottom: 55px;
        padding-bottom: 15px;
    }

    .royal-office-protocol-marker,
    .royal-office-protocol-place {
        font-size: 7px;
        letter-spacing: 0.16em;
    }


    /* -----------------------------------------------------
       HEADING
       ----------------------------------------------------- */

    .royal-office-protocol-heading {
        display: flex;
        flex-direction: column;

        gap: 35px;

        margin-bottom: 70px;

        align-items: stretch;
    }

    .royal-office-protocol-eyebrow {
        margin-bottom: 20px;

        font-size: 7px;
        letter-spacing: 0.18em;
    }

    .royal-office-protocol-heading h2 {
        font-size: clamp(57px, 17vw, 86px);
        line-height: 0.80;
    }

    .royal-office-protocol-heading h2 em {
        margin-left: 0.28em;
    }

    .royal-office-protocol-heading-copy {
        max-width: 100%;
    }

    .royal-office-protocol-heading-copy
    .royal-office-protocol-lead {
        margin-bottom: 22px;

        font-size: 23px;
        line-height: 1.18;
    }

    .royal-office-protocol-heading-copy p {
        font-size: 10.5px;
        line-height: 1.8;
    }


    /* -----------------------------------------------------
       PRINCIPLES
       ----------------------------------------------------- */

    .royal-office-protocol-principle {
        display: block;

        padding: 43px 0 48px;
    }

    .royal-office-protocol-principle-number {
        padding-top: 0;
        margin-bottom: 25px;

        font-size: 7px;
    }

    .royal-office-protocol-principle-content {
        display: block;
    }

    .royal-office-protocol-principle-eyebrow {
        margin-bottom: 18px;

        font-size: 7px;
    }

    .royal-office-protocol-principle-content h3 {
        font-size: clamp(43px, 12.5vw, 65px);
        line-height: 0.83;
    }

    .royal-office-protocol-principle-content h3 em {
        margin-left: 0.27em;
    }

    .royal-office-protocol-principle-text {
        max-width: 100%;

        margin-top: 28px;

        font-size: 10px;
        line-height: 1.82;
    }


    /* -----------------------------------------------------
       NOTE
       ----------------------------------------------------- */

    .royal-office-protocol-note {
        display: block;

        margin-top: 68px;
        padding-top: 21px;
    }

    .royal-office-protocol-note-mark {
        flex-direction: row;
        align-items: baseline;

        margin-bottom: 24px;

        font-size: 19px;
    }

    .royal-office-protocol-note-mark span:last-child {
        margin-top: 0;
        margin-left: 7px;
    }

    .royal-office-protocol-note-content {
        max-width: 100%;
    }

    .royal-office-protocol-note-label {
        margin-bottom: 14px;
    }

    .royal-office-protocol-note-text {
        font-size: 23px;
        line-height: 1.18;
    }


    /* -----------------------------------------------------
       FOOTER
       ----------------------------------------------------- */

    .royal-office-protocol-footer {
        flex-wrap: wrap;

        row-gap: 9px;

        margin-top: 65px;

        font-size: 6.5px;
        letter-spacing: 0.15em;
    }

    .royal-office-protocol-footer-rule {
        width: 22px;
    }
}


/* =========================================================
   SMALL MOBILE
   ========================================================= */

@media (max-width: 420px) {

    .royal-office-protocol-inner {
        padding: 72px 7vw 82px;
    }

    .royal-office-protocol-intro {
        margin-bottom: 47px;
    }

    .royal-office-protocol-place {
        max-width: 40%;

        text-align: right;
        line-height: 1.55;
    }


    /* -----------------------------------------------------
       HEADING
       ----------------------------------------------------- */

    .royal-office-protocol-heading {
        gap: 30px;
        margin-bottom: 61px;
    }

    .royal-office-protocol-heading h2 {
        font-size: clamp(52px, 17vw, 76px);
    }

    .royal-office-protocol-heading-copy
    .royal-office-protocol-lead {
        font-size: 21px;
    }

    .royal-office-protocol-heading-copy p {
        font-size: 10px;
    }


    /* -----------------------------------------------------
       PRINCIPLES
       ----------------------------------------------------- */

    .royal-office-protocol-principle {
        padding: 38px 0 43px;
    }

    .royal-office-protocol-principle-number {
        margin-bottom: 22px;
    }

    .royal-office-protocol-principle-content h3 {
        font-size: clamp(40px, 12.5vw, 60px);
    }

    .royal-office-protocol-principle-text {
        margin-top: 25px;

        font-size: 9.5px;
        line-height: 1.78;
    }


    /* -----------------------------------------------------
       NOTE
       ----------------------------------------------------- */

    .royal-office-protocol-note {
        margin-top: 59px;
    }

    .royal-office-protocol-note-text {
        font-size: 21px;
    }


    /* -----------------------------------------------------
       FOOTER
       ----------------------------------------------------- */

    .royal-office-protocol-footer {
        margin-top: 57px;
    }
}


/* =========================================================
   REDUCED MOTION
   ========================================================= */

@media (prefers-reduced-motion: reduce) {

    .royal-office-protocol *,
    .royal-office-protocol *::before,
    .royal-office-protocol *::after {
        scroll-behavior: auto !important;
    }
}

/* =========================================================
   SECTION 07 — CLOSING
   ========================================================= */

.royal-office-closing {
    position: relative;
    overflow: hidden;
    isolation: isolate;
    min-height: 100svh;
    background: var(--obsidian);
    color: var(--ivory);
    padding: 0;
}


/* =========================================================
   INNER
   ========================================================= */

.royal-office-closing-inner {
    position: relative;
    width: min(100% - 14vw, 1500px);
    min-height: 100svh;
    margin: 0 auto;
    padding: 128px 0 72px;

    display: flex;
    flex-direction: column;
}


/* =========================================================
   TOP MARKER
   ========================================================= */

.royal-office-closing-top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 30px;

    padding-bottom: 22px;
    border-bottom: 1px solid rgba(213, 182, 116, 0.22);
}

.royal-office-closing-marker,
.royal-office-closing-place {
    margin: 0;

    font-family: "DM Sans", sans-serif;
    font-size: 9px;
    font-weight: 500;
    line-height: 1.4;
    letter-spacing: 0.21em;
    text-transform: uppercase;
}

.royal-office-closing-marker {
    color: var(--gold);
}

.royal-office-closing-place {
    color: rgba(244, 240, 231, 0.42);
}


/* =========================================================
   MAIN CLOSING AREA
   ========================================================= */

.royal-office-closing-main {
    display: grid;
    grid-template-columns: minmax(0, 1.08fr) minmax(300px, 0.72fr);
    column-gap: clamp(70px, 11vw, 180px);

    padding: clamp(105px, 13vh, 165px) 0
             clamp(80px, 10vh, 125px);
}

.royal-office-closing-heading {
    align-self: start;
}

.royal-office-closing-eyebrow {
    margin: 0 0 30px;

    font-family: "DM Sans", sans-serif;
    font-size: 9px;
    font-weight: 500;
    line-height: 1.4;
    letter-spacing: 0.24em;
    text-transform: uppercase;
    color: var(--gold);
}

.royal-office-closing-heading h2 {
    margin: 0;

    font-family: "Cormorant Garamond", serif;
    font-size: clamp(72px, 9.4vw, 146px);
    font-weight: 300;
    line-height: 0.78;
    letter-spacing: -0.055em;
    color: var(--ivory);
}

.royal-office-closing-heading h2 em {
    display: inline-block;

    margin-left: 0.32em;

    font-style: italic;
    font-weight: 300;
    letter-spacing: -0.06em;
    color: var(--gold);
}


/* =========================================================
   CLOSING COPY
   ========================================================= */

.royal-office-closing-copy {
    align-self: end;
    max-width: 500px;
    padding-bottom: 5px;
}

.royal-office-closing-copy p {
    margin: 0 0 24px;

    font-family: "DM Sans", sans-serif;
    font-size: 12px;
    font-weight: 400;
    line-height: 1.95;
    letter-spacing: 0.015em;
    color: rgba(244, 240, 231, 0.58);
}

.royal-office-closing-copy p:last-child {
    margin-bottom: 0;
}

.royal-office-closing-copy .royal-office-closing-lead {
    margin-bottom: 32px;

    font-family: "Cormorant Garamond", serif;
    font-size: clamp(25px, 2.25vw, 34px);
    font-weight: 300;
    line-height: 1.15;
    letter-spacing: -0.015em;
    color: rgba(244, 240, 231, 0.92);
}


/* =========================================================
   CLOSING STATEMENT
   ========================================================= */

.royal-office-closing-statement {
    display: flex;
    align-items: flex-start;
    gap: 20px;

    max-width: 620px;
    margin-left: auto;
    margin-right: 9vw;
}

.royal-office-closing-statement-line {
    flex: 0 0 42px;
    width: 42px;
    height: 1px;
    margin-top: 12px;

    background: var(--gold-soft);
}

.royal-office-closing-statement p {
    margin: 0;

    font-family: "Cormorant Garamond", serif;
    font-size: clamp(24px, 2.35vw, 36px);
    font-weight: 300;
    line-height: 1.12;
    letter-spacing: -0.018em;
    color: var(--ivory);
}


/* =========================================================
   ROYAL SIGNATURE
   ========================================================= */

.royal-office-closing-signature {
    display: flex;
    align-items: center;
    gap: 22px;

    margin-top: auto;
    padding-top: 95px;
}

.royal-office-closing-signature-mark {
    flex: 0 0 54px;
    width: 54px;
    height: 54px;

    display: flex;
    align-items: center;
    justify-content: center;
}

.royal-office-closing-signature-mark svg {
    display: block;
    width: 42px;
    height: 42px;

    fill: none;
    stroke: var(--gold-soft);
    stroke-width: 1;
}

.royal-office-closing-signature-content {
    display: flex;
    flex-direction: column;
    gap: 7px;
}

.royal-office-closing-signature-name {
    font-family: "Cormorant Garamond", serif;
    font-size: 25px;
    font-weight: 400;
    line-height: 1.05;
    letter-spacing: -0.015em;
    color: var(--ivory);
}

.royal-office-closing-signature-title {
    font-family: "DM Sans", sans-serif;
    font-size: 8px;
    font-weight: 400;
    line-height: 1.75;
    letter-spacing: 0.095em;
    text-transform: uppercase;
    color: rgba(244, 240, 231, 0.42);
}


/* =========================================================
   FOOTER / RETURN
   ========================================================= */

.royal-office-closing-footer {
    display: flex;
    align-items: center;
    gap: 18px;

    margin-top: 60px;
    padding-top: 22px;

    border-top: 1px solid rgba(244, 240, 231, 0.10);
}

.royal-office-closing-footer-label {
    flex: 0 0 auto;

    font-family: "DM Sans", sans-serif;
    font-size: 8px;
    font-weight: 500;
    line-height: 1.4;
    letter-spacing: 0.20em;
    text-transform: uppercase;
    color: rgba(244, 240, 231, 0.40);
}

.royal-office-closing-footer-rule {
    width: 48px;
    height: 1px;
    flex: 0 0 48px;

    background: rgba(213, 182, 116, 0.48);
}

.royal-office-closing-cta {
    display: inline-flex;
    align-items: center;
    gap: 15px;

    margin-left: auto;

    padding: 10px 0;

    font-family: "DM Sans", sans-serif;
    font-size: 9px;
    font-weight: 500;
    line-height: 1.4;
    letter-spacing: 0.17em;
    text-transform: uppercase;
    text-decoration: none;

    color: rgba(244, 240, 231, 0.76);

    transition:
        color 0.35s var(--ease),
        gap 0.35s var(--ease);
}

.royal-office-closing-cta-arrow {
    font-size: 14px;
    font-weight: 300;
    line-height: 1;

    color: var(--gold);

    transition: transform 0.35s var(--ease);
}

.royal-office-closing-cta:hover {
    color: var(--gold);
    gap: 20px;
}

.royal-office-closing-cta:hover .royal-office-closing-cta-arrow {
    transform: translateX(4px);
}


/* =========================================================
   SUBTLE EDITORIAL DETAIL
   ========================================================= */

.royal-office-closing::after {
    content: "";

    position: absolute;
    right: -8vw;
    top: 32%;
    z-index: -1;

    width: clamp(260px, 30vw, 470px);
    aspect-ratio: 1;

    border: 1px solid rgba(213, 182, 116, 0.055);
    border-radius: 50%;

    pointer-events: none;
}

.royal-office-closing::before {
    content: "";

    position: absolute;
    right: 7vw;
    top: calc(32% + clamp(35px, 4.5vw, 70px));
    z-index: -1;

    width: clamp(190px, 22vw, 340px);
    aspect-ratio: 1;

    border: 1px solid rgba(213, 182, 116, 0.035);
    border-radius: 50%;

    pointer-events: none;
}


/* =========================================================
   LARGE TABLET
   ========================================================= */

@media (max-width: 1100px) {

    .royal-office-closing-inner {
        width: min(100% - 12vw, 1400px);
    }

    .royal-office-closing-main {
        grid-template-columns: minmax(0, 1fr) minmax(280px, 0.72fr);
        column-gap: 8vw;
    }

    .royal-office-closing-heading h2 {
        font-size: clamp(68px, 9.8vw, 115px);
    }

    .royal-office-closing-statement {
        margin-right: 4vw;
    }

}


/* =========================================================
   TABLET
   ========================================================= */

@media (max-width: 800px) {

    .royal-office-closing {
        min-height: auto;
    }

    .royal-office-closing-inner {
        width: auto;
        min-height: 100svh;
        padding: 108px 6.5vw 48px;
    }


    /* -----------------------------------------
       TOP
       ----------------------------------------- */

    .royal-office-closing-top {
        padding-bottom: 19px;
    }

    .royal-office-closing-marker,
    .royal-office-closing-place {
        font-size: 8px;
        letter-spacing: 0.18em;
    }


    /* -----------------------------------------
       MAIN
       ----------------------------------------- */

    .royal-office-closing-main {
        display: flex;
        flex-direction: column;

        padding: 86px 0 70px;
    }

    .royal-office-closing-eyebrow {
        margin-bottom: 24px;
        font-size: 8px;
        letter-spacing: 0.20em;
    }

    .royal-office-closing-heading h2 {
        font-size: clamp(68px, 17vw, 108px);
        line-height: 0.78;
    }

    .royal-office-closing-heading h2 em {
        margin-left: 0.26em;
    }


    /* -----------------------------------------
       COPY
       ----------------------------------------- */

    .royal-office-closing-copy {
        max-width: 620px;
        margin-top: 62px;
        padding: 0;
    }

    .royal-office-closing-copy .royal-office-closing-lead {
        margin-bottom: 27px;
        font-size: 27px;
    }

    .royal-office-closing-copy p {
        margin-bottom: 21px;
        font-size: 11px;
        line-height: 1.9;
    }


    /* -----------------------------------------
       STATEMENT
       ----------------------------------------- */

    .royal-office-closing-statement {
        max-width: 620px;
        margin: 0;
        gap: 16px;
    }

    .royal-office-closing-statement-line {
        flex-basis: 30px;
        width: 30px;
        margin-top: 10px;
    }

    .royal-office-closing-statement p {
        font-size: clamp(25px, 5.3vw, 34px);
    }


    /* -----------------------------------------
       SIGNATURE
       ----------------------------------------- */

    .royal-office-closing-signature {
        margin-top: 95px;
        padding-top: 0;
    }

    .royal-office-closing-signature-mark {
        flex-basis: 48px;
        width: 48px;
        height: 48px;
    }

    .royal-office-closing-signature-mark svg {
        width: 38px;
        height: 38px;
    }

    .royal-office-closing-signature-name {
        font-size: 23px;
    }

    .royal-office-closing-signature-title {
        max-width: 72vw;
        font-size: 7px;
        letter-spacing: 0.08em;
    }


    /* -----------------------------------------
       FOOTER
       ----------------------------------------- */

    .royal-office-closing-footer {
        margin-top: 46px;
        padding-top: 19px;
    }

    .royal-office-closing-footer-rule {
        width: 32px;
        flex-basis: 32px;
    }

    .royal-office-closing-cta {
        font-size: 8px;
        letter-spacing: 0.14em;
    }


    /* -----------------------------------------
       BACKGROUND DETAIL
       ----------------------------------------- */

    .royal-office-closing::after {
        right: -24vw;
        top: 34%;
        width: 58vw;
        opacity: 0.75;
    }

    .royal-office-closing::before {
        right: 4vw;
        top: calc(34% + 7vw);
        width: 42vw;
    }

}


/* =========================================================
   SMALL MOBILE
   ========================================================= */

@media (max-width: 520px) {

    .royal-office-closing-inner {
        padding: 98px 6.5vw 38px;
    }


    /* -----------------------------------------
       TOP
       ----------------------------------------- */

    .royal-office-closing-top {
        align-items: flex-start;
        gap: 16px;
    }

    .royal-office-closing-marker,
    .royal-office-closing-place {
        font-size: 7px;
        letter-spacing: 0.15em;
    }

    .royal-office-closing-place {
        text-align: right;
    }


    /* -----------------------------------------
       MAIN
       ----------------------------------------- */

    .royal-office-closing-main {
        padding: 73px 0 61px;
    }

    .royal-office-closing-eyebrow {
        margin-bottom: 21px;
        font-size: 7px;
        letter-spacing: 0.18em;
    }

    .royal-office-closing-heading h2 {
        font-size: clamp(63px, 19.8vw, 92px);
        line-height: 0.79;
    }

    .royal-office-closing-heading h2 em {
        margin-left: 0.22em;
    }


    /* -----------------------------------------
       COPY
       ----------------------------------------- */

    .royal-office-closing-copy {
        margin-top: 51px;
    }

    .royal-office-closing-copy .royal-office-closing-lead {
        margin-bottom: 24px;
        font-size: 24px;
        line-height: 1.13;
    }

    .royal-office-closing-copy p {
        margin-bottom: 18px;
        font-size: 10px;
        line-height: 1.85;
    }


    /* -----------------------------------------
       STATEMENT
       ----------------------------------------- */

    .royal-office-closing-statement {
        gap: 13px;
    }

    .royal-office-closing-statement-line {
        flex-basis: 24px;
        width: 24px;
        margin-top: 8px;
    }

    .royal-office-closing-statement p {
        font-size: 24px;
        line-height: 1.13;
    }


    /* -----------------------------------------
       SIGNATURE
       ----------------------------------------- */

    .royal-office-closing-signature {
        align-items: flex-start;
        gap: 15px;
        margin-top: 78px;
    }

    .royal-office-closing-signature-mark {
        flex-basis: 39px;
        width: 39px;
        height: 39px;
    }

    .royal-office-closing-signature-mark svg {
        width: 32px;
        height: 32px;
    }

    .royal-office-closing-signature-content {
        gap: 6px;
        padding-top: 1px;
    }

    .royal-office-closing-signature-name {
        font-size: 21px;
    }

    .royal-office-closing-signature-title {
        max-width: 76vw;
        font-size: 6.5px;
        line-height: 1.7;
        letter-spacing: 0.065em;
    }


    /* -----------------------------------------
       FOOTER
       ----------------------------------------- */

    .royal-office-closing-footer {
        flex-wrap: wrap;
        gap: 13px;
        margin-top: 39px;
        padding-top: 17px;
    }

    .royal-office-closing-footer-label {
        font-size: 7px;
        letter-spacing: 0.16em;
    }

    .royal-office-closing-footer-rule {
        width: 24px;
        flex-basis: 24px;
    }

    .royal-office-closing-cta {
        width: 100%;
        margin-left: 0;
        justify-content: space-between;

        padding: 8px 0;

        font-size: 8px;
    }


    /* -----------------------------------------
       BACKGROUND DETAIL
       ----------------------------------------- */

    .royal-office-closing::after {
        right: -34vw;
        top: 30%;
        width: 72vw;
    }

    .royal-office-closing::before {
        right: -1vw;
        top: calc(30% + 9vw);
        width: 51vw;
    }

}


/* =========================================================
   VERY SMALL MOBILE
   ========================================================= */

@media (max-width: 420px) {

    .royal-office-closing-inner {
        padding-top: 94px;
    }

    .royal-office-closing-main {
        padding-top: 68px;
        padding-bottom: 55px;
    }

    .royal-office-closing-heading h2 {
        font-size: clamp(58px, 20.5vw, 82px);
    }

    .royal-office-closing-copy {
        margin-top: 46px;
    }

    .royal-office-closing-copy .royal-office-closing-lead {
        font-size: 22px;
    }

    .royal-office-closing-copy p {
        font-size: 9.5px;
    }

    .royal-office-closing-statement p {
        font-size: 22px;
    }

    .royal-office-closing-signature {
        margin-top: 68px;
    }

    .royal-office-closing-signature-name {
        font-size: 19px;
    }

    .royal-office-closing-signature-title {
        font-size: 6px;
    }

}


/* =========================================================
   REDUCED MOTION
   ========================================================= */

@media (prefers-reduced-motion: reduce) {

    .royal-office-closing-cta,
    .royal-office-closing-cta-arrow {
        transition: none;
    }

    .royal-office-closing-cta:hover {
        gap: 15px;
    }

    .royal-office-closing-cta:hover .royal-office-closing-cta-arrow {
        transform: none;
    }

}


/* =========================================================
   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;
    }

}

/* =========================================================
   ARROW SYSTEM — SVG / CSS DRAWN, NO UNICODE GLYPHS
   ========================================================= */

.royal-office-hero-scroll-arrow,
.royal-office-enquiries-category-arrow,
.royal-office-enquiries-submit-arrow,
.royal-office-official-contact-item-arrow,
.royal-office-official-contact-social-arrow,
.royal-office-closing-cta-arrow {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 0;
    line-height: 0;
}

.royal-office-hero-scroll-arrow svg {
    display: block;
    width: 18px;
    height: 18px;
    overflow: visible;
}

.royal-office-enquiries-category-arrow svg,
.royal-office-enquiries-submit-arrow svg,
.royal-office-closing-cta-arrow svg {
    display: block;
    width: 18px;
    height: 18px;
    overflow: visible;
}

.royal-office-official-contact-item-arrow svg,
.royal-office-official-contact-social-arrow svg {
    display: block;
    width: 18px;
    height: 18px;
    overflow: visible;
}

.royal-office-locations-connection-symbol svg {
    display: block;
    width: 25px;
    height: 17px;
    overflow: visible;
}

.royal-office-hero-scroll-arrow svg path,
.royal-office-enquiries-category-arrow svg path,
.royal-office-enquiries-submit-arrow svg path,
.royal-office-official-contact-item-arrow svg path,
.royal-office-official-contact-social-arrow svg path,
.royal-office-closing-cta-arrow svg path,
.royal-office-locations-connection-symbol svg path {
    fill: none;
    stroke: currentColor;
    stroke-width: 1.35;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.royal-office-hero-scroll-arrow svg path,
.royal-office-enquiries-category-arrow svg path,
.royal-office-enquiries-submit-arrow svg path,
.royal-office-official-contact-item-arrow svg path,
.royal-office-official-contact-social-arrow svg path,
.royal-office-closing-cta-arrow svg path {
    color: var(--gold);
}

.royal-office-locations-connection-symbol svg path {
    color: #8c6f35;
}

.royal-office-enquiries-category-arrow svg,
.royal-office-enquiries-submit-arrow svg,
.royal-office-official-contact-item-arrow svg,
.royal-office-official-contact-social-arrow svg,
.royal-office-closing-cta-arrow svg {
    transition: transform 0.35s var(--ease);
}

@media (prefers-reduced-motion: reduce) {
    .royal-office-enquiries-category-arrow svg,
    .royal-office-enquiries-submit-arrow svg,
    .royal-office-official-contact-item-arrow svg,
    .royal-office-official-contact-social-arrow svg,
    .royal-office-closing-cta-arrow svg {
        transition: none;
    }
}

/* =========================================================
   ROYAL OFFICE — LEGAL FOOTER LINKS
   Final approved system
   Matches Home / Foundation / Her Story / Royal Engagements
========================================================= */

.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;
}

.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);
}


/* =========================================================
   ROYAL OFFICE — FINAL MOBILE FOOTER
========================================================= */

@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;
    }

    .royal-footer-bottom > span:first-child {
        grid-column: 1 / -1;
        grid-row: 1;
        padding-bottom: 38px;
        text-align: left;
    }

    .royal-footer-bottom::before {
        content: "";
        position: absolute;
        left: 0;
        right: 0;
        top: 82px;
        height: 1px;
        background: rgba(244, 240, 231, .10);
        pointer-events: none;
    }

    .royal-footer-bottom > span:nth-child(2) {
        grid-column: 1;
        grid-row: 2;
        margin: 39px 0 0;
        text-align: left;
        align-self: start;
    }

    .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;
    }

    .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;
    }

    .royal-footer-bottom .royal-footer-cookie-preferences {
        grid-column: 1 / -1;
    }

    .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-cookie-preferences:hover,
    .royal-footer-bottom .royal-footer-cookie-preferences:focus,
    .royal-footer-bottom .royal-footer-cookie-preferences:focus-visible,
    .royal-footer-bottom .royal-footer-cookie-preferences:active {
        color: var(--gold) !important;
    }

    .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 {
        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;
    }
}
