/* =============================================================
   NANA EFUA APIATEWA III
   HER ROYAL ROLE
   ROYAL HERITAGE × CONTEMPORARY EDITORIAL

   BASED DIRECTLY ON THE HER STORY CSS BENCHMARK
   ============================================================= */


/* =============================================================
   ROOT
   ============================================================= */

:root {

    --obsidian: #11110f;

    --ivory: #f4f0e7;

    --ivory-soft: rgba(244, 240, 231, .72);

    --gold: #d5b674;

    --gold-soft: rgba(213, 182, 116, .65);

    --gold-faint: rgba(213, 182, 116, .25);

    --black: rgba(0, 0, 0, .92);

    --ease: cubic-bezier(.25, .1, .25, 1);
}


/* =============================================================
   RESET
   ============================================================= */

*,
*::before,
*::after {
    box-sizing: border-box;
}


html {
    margin: 0;
    padding: 0;

    scroll-behavior: smooth;
}


body {
    margin: 0;
    padding: 0;

    background: var(--ivory);
    color: var(--obsidian);

    font-family: "DM Sans", sans-serif;

    -webkit-font-smoothing: antialiased;
    text-rendering: optimizeLegibility;
}


img {
    display: block;
    max-width: 100%;
}


button,
a {
    font: inherit;
}


a {
    color: inherit;
}


button {
    border: 0;
    padding: 0;

    background: none;
}


/* =============================================================
   SITE HEADER
   ============================================================= */

.site-header {

    position: fixed;

    top: 0;
    left: 0;

    z-index: 1000;

    width: 100%;
    height: 92px;

    display: flex;
    align-items: center;
    justify-content: space-between;

    padding: 0 6vw;

    color: var(--ivory);

    pointer-events: none;
}


/* =============================================================
   ROYAL MARK
   ============================================================= */

.royal-mark {

    position: relative;

    display: inline-flex;
    align-items: center;

    gap: 14px;

    color: var(--ivory);

    text-decoration: none;

    pointer-events: auto;

    z-index: 1002;
}


.royal-mark-symbol {

    position: relative;

    width: 52px;
    height: 52px;

    display: flex;
    align-items: center;
    justify-content: center;
}


.royal-mark-symbol svg {

    width: 27px;
    height: 27px;

    overflow: visible;
}


.royal-mark-symbol circle {

    fill: none;

    stroke: var(--gold);

    stroke-width: 1;
}


.royal-mark-name {

    font-family: "DM Sans", sans-serif;

    font-size: 10px;
    font-weight: 500;

    letter-spacing: .34em;

    white-space: nowrap;
}


/* =============================================================
   DESKTOP NAVIGATION
   ============================================================= */

.main-navigation {

    position: relative;

    width: auto;
    height: auto;

    background: transparent;

    color: var(--ivory);

    opacity: 1;
    visibility: visible;

    transform: none;

    pointer-events: auto;

    transition: none;
}


.navigation-inner {

    display: flex;
    align-items: center;

    gap: 35px;
}


.navigation-heading,
.navigation-footer {
    display: none;
}


.navigation-links {

    display: flex;
    align-items: center;

    gap: 34px;
}


.navigation-links a {

    position: relative;

    display: inline-flex;
    align-items: center;

    padding: 10px 0;

    color: rgba(244, 240, 231, .78);

    font-family: "DM Sans", sans-serif;

    font-size: 9px;
    font-weight: 500;

    letter-spacing: .18em;

    line-height: 1;

    text-decoration: none;

    text-transform: uppercase;

    transition:
        color .3s ease;
}


.navigation-links a::after {

    content: "";

    position: absolute;

    left: 0;
    bottom: 3px;

    width: 0;
    height: 1px;

    background: var(--gold);

    transition:
        width .35s var(--ease);
}


.navigation-links a:hover {

    color: var(--gold);
}


.navigation-links a:hover::after {

    width: 100%;
}


/* ACTIVE PAGE */

.navigation-links a[aria-current="page"] {

    color: var(--gold);
}


.navigation-links a[aria-current="page"]::after {

    width: 100%;
}


.nav-number {
    display: none;
}


/* =============================================================
   MOBILE MENU BUTTON
   ============================================================= */

.menu-toggle {

    position: relative;

    width: 46px;
    height: 46px;

    display: none;

    align-items: center;
    justify-content: center;

    background: transparent;

    color: var(--ivory);

    cursor: pointer;

    pointer-events: auto;

    z-index: 120;
}


.menu-toggle span {

    position: absolute;

    width: 23px;
    height: 1px;

    background: currentColor;

    transition:
        transform .35s var(--ease),
        top .35s var(--ease),
        opacity .25s ease;
}


.menu-toggle span:first-child {
    top: 18px;
}


.menu-toggle span:last-child {
    top: 27px;
}


/* =============================================================
   MOBILE MENU — OPEN STATE
   ============================================================= */

.menu-toggle[aria-expanded="true"] span:first-child {

    top: 23px;

    transform: rotate(45deg);
}


.menu-toggle[aria-expanded="true"] span:last-child {

    top: 23px;

    transform: rotate(-45deg);
}


/* =============================================================
   ROYAL ROLE HERO
   ============================================================= */

.royal-role-hero {

    position: relative;

    width: 100%;

    min-height: 720px;
    height: 100svh;

    overflow: hidden;

    isolation: isolate;

    background: var(--obsidian);

    color: var(--ivory);
}


/* =============================================================
   HERO IMAGE
   ============================================================= */

.royal-role-hero-media {

    position: absolute;

    inset: 0;

    z-index: -3;

    overflow: hidden;
}


.royal-role-hero-image {

    width: 100%;
    height: 100%;

    object-fit: cover;

    object-position: center top;

    transform: scale(1.015);

    transition:
        transform 1.8s var(--ease);
}


.royal-role-hero:hover .royal-role-hero-image {

    transform: scale(1.035);
}


/* =============================================================
   HERO OVERLAY
   ============================================================= */

.royal-role-hero-overlay {

    position: absolute;

    inset: 0;

    z-index: -2;

    background:
        linear-gradient(
            90deg,
            rgba(8, 8, 7, .82) 0%,
            rgba(8, 8, 7, .52) 34%,
            rgba(8, 8, 7, .18) 68%,
            rgba(8, 8, 7, .30) 100%
        );

    pointer-events: none;
}


.royal-role-hero-overlay::after {

    content: "";

    position: absolute;

    inset: 0;

    background:
        linear-gradient(
            180deg,
            rgba(8, 8, 7, .42) 0%,
            transparent 28%,
            transparent 62%,
            rgba(8, 8, 7, .58) 100%
        );
}


/* =============================================================
   ADINKRA DETAIL
   ============================================================= */

.royal-role-hero-adinkra {

    position: absolute;

    top: 50%;
    right: 7vw;

    width: clamp(150px, 16vw, 235px);

    aspect-ratio: 1;

    transform: translateY(-50%);

    opacity: .17;

    pointer-events: none;
}


.royal-role-hero-adinkra svg {

    width: 100%;
    height: 100%;
}


.royal-role-hero-adinkra circle {

    fill: none;

    stroke: var(--gold);

    stroke-width: .65;
}


/* =============================================================
   HERO CONTENT
   ============================================================= */

.royal-role-hero-content {

    position: absolute;

    left: 7vw;
    bottom: 14vh;

    width: min(760px, 70vw);
}


/* =============================================================
   HERO KICKER
   ============================================================= */

.royal-role-hero-kicker {

    display: flex;
    align-items: center;

    gap: 15px;

    margin-bottom: 28px;

    color: var(--gold);

    font-family: "DM Sans", sans-serif;

    font-size: 10px;
    font-weight: 500;

    letter-spacing: .22em;

    line-height: 1;

    text-transform: uppercase;
}


.royal-role-hero-line {

    display: block;

    width: 38px;
    height: 1px;

    background: var(--gold-soft);
}


/* =============================================================
   HERO TITLE
   ============================================================= */

.royal-role-hero-title {

    margin: 0;

    color: var(--ivory);

    font-family: "Cormorant Garamond", serif;

    font-size: clamp(82px, 11vw, 170px);

    font-weight: 300;

    letter-spacing: -.055em;

    line-height: .76;
}


.royal-role-hero-title em {

    display: inline-block;

    margin-left: .55em;

    color: var(--gold);

    font-weight: 300;

    font-style: italic;

    letter-spacing: -.06em;
}


/* =============================================================
   HERO IDENTITY
   ============================================================= */

.royal-role-hero-identity {

    margin-top: 48px;

    padding-left: 2px;

    max-width: 520px;
}


.royal-role-hero-name {

    margin: 0 0 10px;

    color: var(--ivory);

    font-family: "Cormorant Garamond", serif;

    font-size: clamp(24px, 2.2vw, 32px);

    font-weight: 400;

    line-height: 1.1;
}


.royal-role-hero-title-line {

    margin: 0;

    max-width: 500px;

    color: var(--ivory-soft);

    font-family: "DM Sans", sans-serif;

    font-size: 9px;

    font-weight: 400;

    letter-spacing: .1em;

    line-height: 1.8;

    text-transform: uppercase;
}


.royal-role-hero-title-line span {

    margin: 0 7px;

    color: var(--gold);
}


/* =============================================================
   HERO LOCATION
   ============================================================= */

.royal-role-hero-location {

    position: absolute;

    right: 7vw;
    bottom: 7vh;

    display: flex;
    align-items: center;

    gap: 13px;

    color: rgba(244, 240, 231, .58);

    font-family: "DM Sans", sans-serif;

    font-size: 8px;

    font-weight: 500;

    letter-spacing: .18em;

    line-height: 1;

    text-transform: uppercase;
}


.royal-role-hero-location-divider {

    width: 24px;
    height: 1px;

    background: var(--gold-soft);
}


/* =============================================================
   HERO SCROLL CUE
   ============================================================= */

.royal-role-hero-scroll {

    position: absolute;

    left: 7vw;
    bottom: 6.5vh;

    display: flex;
    align-items: center;

    gap: 13px;

    color: var(--ivory-soft);

    text-decoration: none;

    transition:
        color .35s var(--ease);
}


.royal-role-hero-scroll:hover {

    color: var(--gold);
}


.royal-role-hero-scroll-label {

    font-family: "DM Sans", sans-serif;

    font-size: 8px;

    font-weight: 500;

    letter-spacing: .18em;

    text-transform: uppercase;
}


.royal-role-hero-scroll-line {

    width: 34px;
    height: 1px;

    background: rgba(244, 240, 231, .4);

    transition:
        width .45s var(--ease),
        background .35s var(--ease);
}


.royal-role-hero-scroll:hover
.royal-role-hero-scroll-line {

    width: 48px;

    background: var(--gold);
}


.royal-role-hero-scroll-arrow {

    display: inline-flex;
    align-items: center;
    justify-content: center;

    width: 18px;
    height: 18px;

    color: var(--gold);

    transform: translateY(-1px);

    transition:
        transform .35s var(--ease),
        color .35s var(--ease);
}


.royal-role-hero-scroll-arrow svg {

    display: block;

    width: 18px;
    height: 18px;

    fill: none;

    stroke: currentColor;

    stroke-width: 1.15;

    stroke-linecap: round;
    stroke-linejoin: round;
}


.royal-role-hero-scroll:hover
.royal-role-hero-scroll-arrow {

    transform: translateY(2px);
}


/* =============================================================
   TABLET
   ============================================================= */

@media screen and (max-width: 1100px) {

    .site-header {

        padding: 0 4vw;
    }


    .navigation-links {

        gap: 20px;
    }


    .navigation-links a {

        font-size: 8px;

        letter-spacing: .13em;
    }


    .royal-role-hero-content {

        left: 6vw;

        width: min(680px, 70vw);
    }


    .royal-role-hero-title {

        font-size:
            clamp(
                65px,
                9vw,
                100px
            );
    }


    .royal-role-hero-adinkra {

        right: 3vw;
    }


    .royal-role-hero-location {

        right: 4vw;
    }


    .royal-role-hero-scroll {

        left: 4vw;
    }
}


/* =============================================================
   MOBILE NAVIGATION
   ============================================================= */

@media screen and (max-width: 800px) {


    /* ---------------------------------------------------------
       HEADER
       --------------------------------------------------------- */

    .site-header {

        height: 82px;

        padding: 0 6vw;
    }


    /* ---------------------------------------------------------
       ROYAL MARK
       --------------------------------------------------------- */

    .royal-mark {

        gap: 12px;
    }


    .royal-mark-symbol {

        width: 48px;
        height: 48px;
    }


    .royal-mark-symbol svg {

        width: 27px;
        height: 27px;
    }


    .royal-mark-name {

        font-size: 9px;

        letter-spacing: .29em;
    }


    /* ---------------------------------------------------------
       MOBILE BUTTON
       --------------------------------------------------------- */

    .menu-toggle {

        display: flex;
    }


    /* ---------------------------------------------------------
       FULL-SCREEN MOBILE NAVIGATION
       --------------------------------------------------------- */

    .main-navigation {

        position: fixed;

        inset: 0;

        width: 100%;
        height: 100svh;

        display: flex;

        align-items: stretch;
        justify-content: flex-start;

        padding: 0;

        background:
            rgba(
                10,
                10,
                9,
                .985
            );

        opacity: 0;

        visibility: hidden;

        transform: translateX(100%);

        pointer-events: none;

        transition:
            transform .55s var(--ease),
            opacity .35s ease,
            visibility 0s linear .55s;
    }


    .main-navigation.navigation-open {

        opacity: 1;

        visibility: visible;

        transform: translateX(0);

        pointer-events: auto;

        transition:
            transform .55s var(--ease),
            opacity .35s ease,
            visibility 0s linear 0s;
    }


    /* ---------------------------------------------------------
       FULL-WIDTH NAVIGATION INNER
       --------------------------------------------------------- */

    .navigation-inner {

        width: 100%;
        height: 100%;

        padding: 115px 8vw 40px;

        display: flex;

        flex-direction: column;

        align-items: stretch;

        justify-content: space-between;
    }


    /* ---------------------------------------------------------
       MOBILE NAVIGATION HEADING
       --------------------------------------------------------- */

    .navigation-heading {

        display: flex;

        align-items: center;

        justify-content: space-between;

        padding-bottom: 20px;

        border-bottom:
            1px solid
            rgba(
                213,
                182,
                116,
                .22
            );

        font-size: 8px;

        font-weight: 500;

        letter-spacing: .25em;

        color: var(--gold);
    }


    /* ---------------------------------------------------------
       MOBILE NAVIGATION LINKS
       --------------------------------------------------------- */

    .navigation-links {

        display: flex;

        flex-direction: column;

        align-items: stretch;

        gap: 0;
    }


    .navigation-links a {

        width: 100%;

        min-height: 62px;

        display: flex;

        align-items: center;

        gap: 18px;

        padding: 0;

        border-bottom:
            1px solid
            rgba(
                244,
                240,
                231,
                .10
            );

        font-family:
            "Cormorant Garamond",
            serif;

        font-size: 31px;

        font-weight: 300;

        letter-spacing: -.015em;

        text-transform: none;

        color:
            rgba(
                244,
                240,
                231,
                .92
            );
    }


    .navigation-links a::after {

        display: none;
    }


    .navigation-links a:hover {

        color: var(--gold);
    }


    .navigation-links a[aria-current="page"] {

        color: var(--gold);
    }


    /* ---------------------------------------------------------
       NAVIGATION NUMBERS
       --------------------------------------------------------- */

    .nav-number {

        display: inline-block;

        width: 22px;

        font-family:
            "DM Sans",
            sans-serif;

        font-size: 7px;

        font-weight: 500;

        letter-spacing: .15em;

        color: var(--gold);
    }


    /* ---------------------------------------------------------
       MOBILE NAVIGATION FOOTER
       --------------------------------------------------------- */

    .navigation-footer {

        display: flex;

        flex-direction: column;

        gap: 8px;

        font-size: 7px;

        font-weight: 500;

        letter-spacing: .19em;

        color:
            rgba(
                244,
                240,
                231,
                .45
            );

        text-transform: uppercase;
    }


    /* =========================================================
       ROYAL ROLE HERO — MOBILE
       ========================================================= */

    .royal-role-hero {

        min-height: 680px;

        height: 100svh;
    }


    .royal-role-hero-image {

        object-position: 50% 28%;

        transform: none;
    }


    .royal-role-hero:hover .royal-role-hero-image {

        transform: none;
    }


    /* ---------------------------------------------------------
       MOBILE HERO OVERLAY
       --------------------------------------------------------- */

    .royal-role-hero-overlay {

        background:
            linear-gradient(
                180deg,
                rgba(8, 8, 7, .30) 0%,
                rgba(8, 8, 7, .10) 34%,
                rgba(8, 8, 7, .46) 66%,
                rgba(8, 8, 7, .84) 100%
            );
    }


    .royal-role-hero-overlay::after {

        background:
            linear-gradient(
                180deg,
                rgba(8, 8, 7, .25) 0%,
                transparent 30%,
                transparent 52%,
                rgba(8, 8, 7, .48) 100%
            );
    }


    /* ---------------------------------------------------------
       MOBILE ADINKRA
       --------------------------------------------------------- */

    .royal-role-hero-adinkra {

        top: 27%;

        right: 6vw;

        width: 105px;

        opacity: .13;

        transform: none;
    }


    /* ---------------------------------------------------------
       MOBILE HERO CONTENT
       --------------------------------------------------------- */

    .royal-role-hero-content {

        left: 6.5vw;

        right: 6.5vw;

        bottom: 15vh;

        width: auto;
    }


    .royal-role-hero-kicker {

        margin-bottom: 22px;

        font-size: 9px;

        letter-spacing: .18em;
    }


    .royal-role-hero-line {

        width: 28px;
    }


    /* ---------------------------------------------------------
       MOBILE HERO TITLE
       --------------------------------------------------------- */

    .royal-role-hero-title {

        font-size:
            clamp(
                76px,
                22vw,
                112px
            );

        line-height: .76;
    }


    .royal-role-hero-title em {

        margin-left: .32em;
    }


    /* ---------------------------------------------------------
       MOBILE HERO IDENTITY
       --------------------------------------------------------- */

    .royal-role-hero-identity {

        margin-top: 34px;

        max-width: 86vw;
    }


    .royal-role-hero-name {

        font-size: 25px;

        line-height: 1.05;
    }


    .royal-role-hero-title-line {

        max-width: 82vw;

        font-size: 8px;

        letter-spacing: .08em;

        line-height: 1.75;
    }


    .royal-role-hero-title-line span {

        display: none;
    }


    /* ---------------------------------------------------------
       MOBILE LOCATION
       --------------------------------------------------------- */

    .royal-role-hero-location {

        display: none;
    }


    /* ---------------------------------------------------------
       MOBILE SCROLL CUE
       --------------------------------------------------------- */

    .royal-role-hero-scroll {

        left: 6.5vw;

        bottom: 5vh;
    }
}


/* =============================================================
   SMALL MOBILE
   ============================================================= */

@media screen and (max-width: 420px) {


    /* ---------------------------------------------------------
       MOBILE NAVIGATION
       --------------------------------------------------------- */

    .navigation-inner {

        padding: 105px 7vw 32px;
    }


    .navigation-links a {

        min-height: 58px;

        font-size: 28px;
    }


    /* ---------------------------------------------------------
       HERO
       --------------------------------------------------------- */

    .royal-role-hero-content {

        bottom: 14vh;
    }


    .royal-role-hero-title {

        font-size:
            clamp(
                68px,
                21vw,
                94px
            );
    }


    .royal-role-hero-name {

        font-size: 22px;
    }


    .royal-role-hero-identity {

        margin-top: 29px;
    }


    .royal-role-hero-scroll {

        bottom: 4.5vh;
    }
}

/* ============================================
   SECTION 02 — THE ROYAL RESPONSIBILITY
   PREMIUM EDITORIAL LAYOUT
============================================= */

.royal-role-responsibility {
  position: relative;
  background: var(--ivory);
  color: var(--obsidian);
  overflow: hidden;
}


/* --------------------------------------------
   INNER
--------------------------------------------- */

.royal-role-responsibility-inner {
  width: min(1240px, 86vw);
  margin: 0 auto;
  padding: 138px 0 125px;
}


/* --------------------------------------------
   SECTION INTRO
--------------------------------------------- */

.royal-role-responsibility-intro {
  display: flex;
  align-items: center;
  justify-content: space-between;

  padding-bottom: 22px;

  border-bottom: 1px solid rgba(17, 17, 15, 0.16);
}

.royal-role-responsibility-marker,
.royal-role-responsibility-place {
  margin: 0;

  font-family: "DM Sans", sans-serif;
  font-size: 8px;
  font-weight: 500;
  line-height: 1.4;
  letter-spacing: 0.22em;
  text-transform: uppercase;
}

.royal-role-responsibility-marker {
  color: var(--obsidian);
}

.royal-role-responsibility-place {
  color: rgba(17, 17, 15, 0.48);
}


/* --------------------------------------------
   MAIN GRID
--------------------------------------------- */

.royal-role-responsibility-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(430px, 1.08fr);
  gap: clamp(70px, 8vw, 125px);

  padding-top: 78px;
}


/* --------------------------------------------
   CONTENT COLUMN
--------------------------------------------- */

.royal-role-responsibility-content {
  display: flex;
  flex-direction: column;
  min-width: 0;
}


/* --------------------------------------------
   HEADING
--------------------------------------------- */

.royal-role-responsibility-heading {
  padding-top: 8px;
}

.royal-role-responsibility-heading h2 {
  margin: 0;

  font-family: "Cormorant Garamond", serif;
  font-size: clamp(67px, 7.1vw, 108px);
  font-weight: 300;
  line-height: 0.82;
  letter-spacing: -0.058em;

  color: var(--obsidian);
}

.royal-role-responsibility-heading h2 em {
  display: inline-block;

  margin-left: 0.44em;

  color: var(--gold);

  font-style: italic;
  font-weight: 300;
  letter-spacing: -0.06em;
}


/* --------------------------------------------
   BODY COPY
--------------------------------------------- */

.royal-role-responsibility-copy {
  max-width: 500px;
  margin-top: 62px;
}

.royal-role-responsibility-copy p {
  margin: 0 0 27px;

  font-family: "DM Sans", sans-serif;
  font-size: 12px;
  font-weight: 400;
  line-height: 1.9;
  letter-spacing: 0.01em;

  color: rgba(17, 17, 15, 0.67);
}

.royal-role-responsibility-copy p:last-child {
  margin-bottom: 0;
}


/* --------------------------------------------
   LEAD PARAGRAPH
--------------------------------------------- */

.royal-role-responsibility-copy
.royal-role-responsibility-lead {
  margin-bottom: 32px;

  font-family: "Cormorant Garamond", serif;
  font-size: clamp(27px, 2.45vw, 35px);
  font-weight: 400;
  line-height: 1.18;
  letter-spacing: -0.018em;

  color: var(--obsidian);
}


/* --------------------------------------------
   FOOTER RULE
--------------------------------------------- */

.royal-role-responsibility-footer {
  display: flex;
  align-items: center;
  gap: 15px;

  margin-top: 65px;
  padding-top: 20px;

  border-top: 1px solid rgba(17, 17, 15, 0.16);

  font-family: "DM Sans", sans-serif;
  font-size: 7px;
  font-weight: 500;
  line-height: 1;

  letter-spacing: 0.21em;
  text-transform: uppercase;

  color: rgba(17, 17, 15, 0.47);
}

.royal-role-responsibility-rule {
  width: 35px;
  height: 1px;

  flex: 0 0 auto;

  background: var(--gold-soft);
}


/* --------------------------------------------
   PHOTOGRAPH
--------------------------------------------- */

.royal-role-responsibility-media {
  position: relative;

  width: 100%;
  height: clamp(580px, 48vw, 720px);

  margin: 0;

  overflow: hidden;

  background: #d9d1c2;
}


/* --------------------------------------------
   IMAGE
--------------------------------------------- */

.royal-role-responsibility-image {
  display: block;

  width: 100%;
  height: 100%;

  object-fit: cover;
  object-position: 34% center;

  transform: scale(1.012);

  transition:
    transform 1.5s var(--ease);
}

.royal-role-responsibility-media:hover
.royal-role-responsibility-image {
  transform: scale(1.035);
}


/* --------------------------------------------
   IMAGE CAPTION
--------------------------------------------- */

.royal-role-responsibility-caption {
  position: absolute;

  left: 24px;
  bottom: 22px;

  display: flex;
  align-items: center;
  gap: 12px;

  margin: 0;

  font-family: "DM Sans", sans-serif;
  font-size: 7px;
  font-weight: 500;
  line-height: 1;

  letter-spacing: 0.19em;
  text-transform: uppercase;

  color: rgba(244, 240, 231, 0.82);
}

.royal-role-responsibility-caption span:first-child {
  color: var(--gold);
}

.royal-role-responsibility-caption span:last-child {
  padding-left: 12px;

  border-left: 1px solid rgba(244, 240, 231, 0.35);
}


/* --------------------------------------------
   SUBTLE IMAGE FRAME
--------------------------------------------- */

.royal-role-responsibility-media::after {
  content: "";

  position: absolute;
  inset: 14px;

  border: 1px solid rgba(244, 240, 231, 0.22);

  pointer-events: none;
}


/* --------------------------------------------
   TABLET
--------------------------------------------- */

@media (max-width: 1000px) {

  .royal-role-responsibility-inner {
    width: 88vw;
    padding: 115px 0 105px;
  }

  .royal-role-responsibility-grid {
    grid-template-columns: minmax(0, 0.95fr) minmax(360px, 1.05fr);
    gap: 55px;
    padding-top: 68px;
  }

  .royal-role-responsibility-heading h2 {
    font-size: clamp(58px, 7.4vw, 82px);
  }

  .royal-role-responsibility-copy {
    margin-top: 48px;
  }

  .royal-role-responsibility-copy
  .royal-role-responsibility-lead {
    font-size: 27px;
  }

  .royal-role-responsibility-media {
    height: 600px;
  }

}


/* --------------------------------------------
   MOBILE
--------------------------------------------- */

@media (max-width: 800px) {

  .royal-role-responsibility-inner {
    width: 87vw;
    padding: 92px 0 78px;
  }


  /* Intro */

  .royal-role-responsibility-intro {
    padding-bottom: 18px;
  }

  .royal-role-responsibility-marker,
  .royal-role-responsibility-place {
    font-size: 7px;
    letter-spacing: 0.17em;
  }


  /* Grid */

  .royal-role-responsibility-grid {
    display: flex;
    flex-direction: column;

    gap: 0;

    padding-top: 58px;
  }


  /* Heading */

  .royal-role-responsibility-heading {
    padding-top: 0;
  }

  .royal-role-responsibility-heading h2 {
    font-size: clamp(62px, 17vw, 90px);
    line-height: 0.81;
  }

  .royal-role-responsibility-heading h2 em {
    margin-left: 0.28em;
  }


  /* Image comes directly after heading */

  .royal-role-responsibility-media {
    order: 2;

    width: 100%;
    height: 520px;

    margin-top: 52px;
  }

  .royal-role-responsibility-image {
    object-position: 32% center;
    transform: none;
  }

  .royal-role-responsibility-media:hover
  .royal-role-responsibility-image {
    transform: none;
  }


  /* Copy */

  .royal-role-responsibility-copy {
    order: 3;

    max-width: none;

    margin-top: 48px;
  }

  .royal-role-responsibility-copy
  .royal-role-responsibility-lead {
    margin-bottom: 28px;

    font-size: 27px;
    line-height: 1.18;
  }

  .royal-role-responsibility-copy p {
    margin-bottom: 23px;

    font-size: 11.5px;
    line-height: 1.9;
  }


  /* Footer */

  .royal-role-responsibility-footer {
    order: 4;

    margin-top: 52px;
    padding-top: 19px;

    gap: 12px;

    font-size: 7px;
    letter-spacing: 0.17em;
  }

  .royal-role-responsibility-rule {
    width: 26px;
  }


  /* Image frame */

  .royal-role-responsibility-media::after {
    inset: 10px;
  }

  .royal-role-responsibility-caption {
    left: 19px;
    bottom: 18px;
  }

}


/* --------------------------------------------
   SMALL MOBILE
--------------------------------------------- */

@media (max-width: 420px) {

  .royal-role-responsibility-inner {
    width: 87vw;
    padding: 80px 0 64px;
  }

  .royal-role-responsibility-grid {
    padding-top: 51px;
  }

  .royal-role-responsibility-heading h2 {
    font-size: clamp(55px, 18vw, 77px);
  }

  .royal-role-responsibility-media {
    height: 455px;
    margin-top: 43px;
  }

  .royal-role-responsibility-copy {
    margin-top: 42px;
  }

  .royal-role-responsibility-copy
  .royal-role-responsibility-lead {
    font-size: 24px;
  }

  .royal-role-responsibility-copy p {
    font-size: 11px;
    line-height: 1.85;
  }

  .royal-role-responsibility-footer {
    margin-top: 44px;
  }

}

/* ============================================
   SECTION 03 — THE WORK OF THE OFFICE
   PREMIUM EDITORIAL LAYOUT
============================================= */

.royal-role-work {
  position: relative;
  background: var(--obsidian);
  color: var(--ivory);
  overflow: hidden;
}

.royal-role-work-inner {
  width: min(1240px, 86vw);
  margin: 0 auto;
  padding: 145px 0 135px;
}


/* --------------------------------------------
   SECTION INTRO
--------------------------------------------- */

.royal-role-work-intro {
  display: flex;
  align-items: center;
  justify-content: space-between;

  padding-bottom: 22px;

  border-bottom: 1px solid rgba(244, 240, 231, 0.16);
}

.royal-role-work-intro-meta {
  display: flex;
  align-items: center;
  gap: 16px;

  font-family: "DM Sans", sans-serif;
  font-size: 8px;
  font-weight: 500;
  line-height: 1.4;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}

.royal-role-work-intro-meta span:first-child {
  color: var(--gold);
}

.royal-role-work-intro-meta span:last-child {
  color: rgba(244, 240, 231, 0.62);
}

.royal-role-work-intro-place {
  margin: 0;

  font-family: "DM Sans", sans-serif;
  font-size: 8px;
  font-weight: 500;
  line-height: 1.4;
  letter-spacing: 0.2em;
  text-transform: uppercase;

  color: rgba(244, 240, 231, 0.42);
}


/* --------------------------------------------
   STATEMENT
--------------------------------------------- */

.royal-role-work-statement {
  padding: 105px 0 112px;
}

.royal-role-work-eyebrow {
  display: flex;
  align-items: center;
  gap: 14px;

  margin: 0 0 31px;

  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);
}

.royal-role-work-eyebrow::before {
  content: "";

  width: 35px;
  height: 1px;

  background: var(--gold-soft);
}

.royal-role-work-statement h2 {
  max-width: 1050px;

  margin: 0;

  font-family: "Cormorant Garamond", serif;
  font-size: clamp(65px, 7.6vw, 116px);
  font-weight: 300;
  line-height: 0.86;
  letter-spacing: -0.06em;

  color: var(--ivory);
}

.royal-role-work-statement h2 em {
  color: var(--gold);

  font-style: italic;
  font-weight: 300;
  letter-spacing: -0.06em;
}


/* --------------------------------------------
   RESPONSIBILITY GRID
--------------------------------------------- */

.royal-role-work-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);

  border-top: 1px solid rgba(244, 240, 231, 0.16);
  border-bottom: 1px solid rgba(244, 240, 231, 0.16);
}


/* --------------------------------------------
   RESPONSIBILITY ITEM
--------------------------------------------- */

.royal-role-work-item {
  position: relative;

  min-height: 285px;

  padding: 31px 35px 38px;

  border-right: 1px solid rgba(244, 240, 231, 0.14);
}

.royal-role-work-item:first-child {
  padding-left: 0;
}

.royal-role-work-item:last-child {
  border-right: 0;
  padding-right: 0;
}

.royal-role-work-item-number {
  margin-bottom: 78px;

  font-family: "DM Sans", sans-serif;
  font-size: 8px;
  font-weight: 500;
  line-height: 1;

  letter-spacing: 0.2em;

  color: var(--gold);
}

.royal-role-work-item-content h3 {
  margin: 0 0 16px;

  font-family: "Cormorant Garamond", serif;
  font-size: clamp(35px, 3vw, 45px);
  font-weight: 400;
  line-height: 1;

  letter-spacing: -0.025em;

  color: var(--ivory);
}

.royal-role-work-item-content p {
  max-width: 315px;

  margin: 0;

  font-family: "DM Sans", sans-serif;
  font-size: 11px;
  font-weight: 400;
  line-height: 1.85;
  letter-spacing: 0.01em;

  color: rgba(244, 240, 231, 0.56);
}


/* --------------------------------------------
   PHOTOGRAPH
--------------------------------------------- */

.royal-role-work-media {
  position: relative;

  width: 100%;
  height: clamp(500px, 48vw, 700px);

  margin: 105px 0 0;

  overflow: hidden;

  background: #27251f;
}

.royal-role-work-image {
  display: block;

  width: 100%;
  height: 100%;

  object-fit: cover;
  object-position: center 35%;

  transform: scale(1.01);

  filter: saturate(0.92);

  transition:
    transform 1.6s var(--ease);
}

.royal-role-work-media:hover
.royal-role-work-image {
  transform: scale(1.035);
}


/* --------------------------------------------
   PHOTOGRAPH OVERLAY
--------------------------------------------- */

.royal-role-work-media::before {
  content: "";

  position: absolute;
  inset: 0;

  z-index: 1;

  background:
    linear-gradient(
      180deg,
      rgba(8, 8, 7, 0.04) 35%,
      rgba(8, 8, 7, 0.58) 100%
    );

  pointer-events: none;
}

.royal-role-work-media::after {
  content: "";

  position: absolute;
  inset: 15px;

  z-index: 2;

  border: 1px solid rgba(244, 240, 231, 0.22);

  pointer-events: none;
}


/* --------------------------------------------
   PHOTO CAPTION
--------------------------------------------- */

.royal-role-work-caption {
  position: absolute;

  left: 31px;
  right: 31px;
  bottom: 27px;

  z-index: 3;

  display: flex;
  align-items: center;
  gap: 13px;

  margin: 0;

  font-family: "DM Sans", sans-serif;
  font-size: 7px;
  font-weight: 500;
  line-height: 1;

  letter-spacing: 0.2em;
  text-transform: uppercase;

  color: rgba(244, 240, 231, 0.75);
}

.royal-role-work-caption-rule {
  width: 32px;
  height: 1px;

  background: var(--gold-soft);
}


/* --------------------------------------------
   CLOSING STATEMENT
--------------------------------------------- */

.royal-role-work-closing {
  display: flex;
  justify-content: flex-end;

  padding-top: 70px;
}

.royal-role-work-closing p {
  max-width: 530px;

  margin: 0;

  font-family: "Cormorant Garamond", serif;
  font-size: clamp(27px, 2.6vw, 37px);
  font-weight: 300;
  line-height: 1.18;

  letter-spacing: -0.018em;

  color: rgba(244, 240, 231, 0.86);
}


/* --------------------------------------------
   TABLET
--------------------------------------------- */

@media (max-width: 1000px) {

  .royal-role-work-inner {
    width: 88vw;
    padding: 115px 0 105px;
  }

  .royal-role-work-statement {
    padding: 82px 0 88px;
  }

  .royal-role-work-statement h2 {
    font-size: clamp(58px, 8vw, 88px);
  }

  .royal-role-work-item {
    min-height: 300px;
    padding: 28px 25px 32px;
  }

  .royal-role-work-item:first-child {
    padding-left: 0;
  }

  .royal-role-work-item:last-child {
    padding-right: 0;
  }

  .royal-role-work-item-number {
    margin-bottom: 65px;
  }

  .royal-role-work-item-content p {
    font-size: 10.5px;
  }

  .royal-role-work-media {
    height: 580px;
    margin-top: 85px;
  }

}


/* --------------------------------------------
   MOBILE
--------------------------------------------- */

@media (max-width: 800px) {

  .royal-role-work-inner {
    width: 87vw;
    padding: 92px 0 78px;
  }


  /* Intro */

  .royal-role-work-intro {
    padding-bottom: 18px;
  }

  .royal-role-work-intro-meta {
    gap: 11px;

    font-size: 7px;
    letter-spacing: 0.17em;
  }

  .royal-role-work-intro-place {
    max-width: 120px;

    font-size: 7px;
    line-height: 1.65;
    letter-spacing: 0.15em;
    text-align: right;
  }


  /* Statement */

  .royal-role-work-statement {
    padding: 66px 0 70px;
  }

  .royal-role-work-eyebrow {
    gap: 11px;

    margin-bottom: 25px;

    font-size: 7px;
    letter-spacing: 0.18em;
  }

  .royal-role-work-eyebrow::before {
    width: 27px;
  }

  .royal-role-work-statement h2 {
    font-size: clamp(57px, 16.5vw, 86px);
    line-height: 0.83;
  }


  /* Responsibility Grid */

  .royal-role-work-grid {
    display: block;
  }

  .royal-role-work-item {
    min-height: auto;

    padding: 27px 0 32px;

    border-right: 0;
    border-bottom: 1px solid rgba(244, 240, 231, 0.14);
  }

  .royal-role-work-item:first-child {
    padding-left: 0;
  }

  .royal-role-work-item:last-child {
    padding-right: 0;
    border-bottom: 0;
  }

  .royal-role-work-item-number {
    margin-bottom: 31px;

    font-size: 7px;
  }

  .royal-role-work-item-content h3 {
    margin-bottom: 12px;

    font-size: 39px;
  }

  .royal-role-work-item-content p {
    max-width: 88vw;

    font-size: 11px;
    line-height: 1.85;
  }


  /* Photograph */

  .royal-role-work-media {
    height: 500px;

    margin-top: 65px;
  }

  .royal-role-work-image {
    object-position: center center;
    transform: none;
  }

  .royal-role-work-media:hover
  .royal-role-work-image {
    transform: none;
  }

  .royal-role-work-media::after {
    inset: 10px;
  }

  .royal-role-work-caption {
    left: 20px;
    right: 20px;
    bottom: 19px;

    gap: 11px;

    font-size: 7px;
  }

  .royal-role-work-caption-rule {
    width: 25px;
  }


  /* Closing */

  .royal-role-work-closing {
    justify-content: flex-start;

    padding-top: 52px;
  }

  .royal-role-work-closing p {
    max-width: 90vw;

    font-size: 27px;
    line-height: 1.18;
  }

}


/* --------------------------------------------
   SMALL MOBILE
--------------------------------------------- */

@media (max-width: 420px) {

  .royal-role-work-inner {
    width: 87vw;
    padding: 80px 0 65px;
  }

  .royal-role-work-statement {
    padding: 57px 0 61px;
  }

  .royal-role-work-statement h2 {
    font-size: clamp(51px, 17.5vw, 75px);
  }

  .royal-role-work-item {
    padding: 24px 0 29px;
  }

  .royal-role-work-item-number {
    margin-bottom: 27px;
  }

  .royal-role-work-item-content h3 {
    font-size: 35px;
  }

  .royal-role-work-item-content p {
    font-size: 10.5px;
    line-height: 1.85;
  }

  .royal-role-work-media {
    height: 440px;
    margin-top: 55px;
  }

  .royal-role-work-closing {
    padding-top: 45px;
  }

  .royal-role-work-closing p {
    font-size: 24px;
  }

}

/* ============================================
   SECTION 04 — BETWEEN TWO WORLDS
   PREMIUM EDITORIAL LAYOUT
============================================= */

.royal-role-diaspora {
  position: relative;
  background: var(--ivory);
  color: var(--obsidian);
  overflow: hidden;
}

.royal-role-diaspora-inner {
  width: min(1240px, 86vw);
  margin: 0 auto;
  padding: 145px 0 125px;
}


/* --------------------------------------------
   SECTION INTRO
--------------------------------------------- */

.royal-role-diaspora-intro {
  display: flex;
  align-items: center;
  justify-content: space-between;

  padding-bottom: 22px;

  border-bottom: 1px solid rgba(17, 17, 15, 0.15);
}

.royal-role-diaspora-meta {
  display: flex;
  align-items: center;
  gap: 16px;

  font-family: "DM Sans", sans-serif;
  font-size: 8px;
  font-weight: 500;
  line-height: 1.4;
  letter-spacing: 0.21em;
  text-transform: uppercase;
}

.royal-role-diaspora-meta span:first-child {
  color: var(--gold);
}

.royal-role-diaspora-meta span:last-child {
  color: rgba(17, 17, 15, 0.55);
}

.royal-role-diaspora-location {
  display: flex;
  align-items: center;
  gap: 12px;

  font-family: "DM Sans", sans-serif;
  font-size: 8px;
  font-weight: 500;
  line-height: 1;
  letter-spacing: 0.19em;
  text-transform: uppercase;

  color: rgba(17, 17, 15, 0.46);
}

.royal-role-diaspora-location-rule {
  width: 27px;
  height: 1px;

  background: var(--gold-soft);
}


/* --------------------------------------------
   MAIN LAYOUT
--------------------------------------------- */

.royal-role-diaspora-main {
  display: grid;
  grid-template-columns: minmax(430px, 0.95fr) minmax(0, 1.05fr);
  gap: clamp(70px, 9vw, 135px);

  padding-top: 78px;
}


/* --------------------------------------------
   PHOTOGRAPH
--------------------------------------------- */

.royal-role-diaspora-media {
  position: relative;

  width: 100%;
  height: clamp(590px, 53vw, 760px);

  margin: 0;

  overflow: hidden;

  background: #d8d0c2;
}

.royal-role-diaspora-image {
  display: block;

  width: 100%;
  height: 100%;

  object-fit: cover;
  object-position: center center;

  transform: scale(1.012);

  transition:
    transform 1.6s var(--ease);
}

.royal-role-diaspora-media:hover
.royal-role-diaspora-image {
  transform: scale(1.035);
}


/* --------------------------------------------
   IMAGE OVERLAY
--------------------------------------------- */

.royal-role-diaspora-media::before {
  content: "";

  position: absolute;
  inset: 0;

  z-index: 1;

  background:
    linear-gradient(
      180deg,
      rgba(8, 8, 7, 0.02) 40%,
      rgba(8, 8, 7, 0.62) 100%
    );

  pointer-events: none;
}

.royal-role-diaspora-media::after {
  content: "";

  position: absolute;
  inset: 15px;

  z-index: 2;

  border: 1px solid rgba(244, 240, 231, 0.22);

  pointer-events: none;
}


/* --------------------------------------------
   IMAGE CAPTION
--------------------------------------------- */

.royal-role-diaspora-caption {
  position: absolute;

  left: 30px;
  right: 30px;
  bottom: 27px;

  z-index: 3;

  display: flex;
  align-items: center;
  gap: 13px;

  margin: 0;

  font-family: "DM Sans", sans-serif;
  font-size: 7px;
  font-weight: 500;
  line-height: 1;

  letter-spacing: 0.2em;
  text-transform: uppercase;

  color: rgba(244, 240, 231, 0.78);
}

.royal-role-diaspora-caption-rule {
  width: 32px;
  height: 1px;

  background: var(--gold-soft);
}


/* --------------------------------------------
   CONTENT
--------------------------------------------- */

.royal-role-diaspora-content {
  align-self: center;

  max-width: 580px;
  padding-bottom: 18px;
}

.royal-role-diaspora-eyebrow {
  display: flex;
  align-items: center;
  gap: 14px;

  margin: 0 0 31px;

  font-family: "DM Sans", sans-serif;
  font-size: 8px;
  font-weight: 500;
  line-height: 1.4;

  letter-spacing: 0.21em;
  text-transform: uppercase;

  color: var(--gold);
}

.royal-role-diaspora-eyebrow::before {
  content: "";

  width: 35px;
  height: 1px;

  background: var(--gold-soft);
}


/* --------------------------------------------
   HEADING
--------------------------------------------- */

.royal-role-diaspora-content h2 {
  margin: 0;

  font-family: "Cormorant Garamond", serif;
  font-size: clamp(67px, 7.2vw, 108px);
  font-weight: 300;
  line-height: 0.82;

  letter-spacing: -0.058em;

  color: var(--obsidian);
}

.royal-role-diaspora-content h2 em {
  display: inline-block;

  margin-left: 0.43em;

  color: var(--gold);

  font-style: italic;
  font-weight: 300;
  letter-spacing: -0.06em;
}


/* --------------------------------------------
   COPY
--------------------------------------------- */

.royal-role-diaspora-copy {
  max-width: 500px;
  margin-top: 59px;
}

.royal-role-diaspora-copy p {
  margin: 0 0 26px;

  font-family: "DM Sans", sans-serif;
  font-size: 12px;
  font-weight: 400;
  line-height: 1.92;

  letter-spacing: 0.01em;

  color: rgba(17, 17, 15, 0.66);
}

.royal-role-diaspora-copy p:last-child {
  margin-bottom: 0;
}

.royal-role-diaspora-copy
.royal-role-diaspora-lead {
  margin-bottom: 32px;

  font-family: "Cormorant Garamond", serif;
  font-size: clamp(27px, 2.45vw, 35px);
  font-weight: 400;
  line-height: 1.18;

  letter-spacing: -0.018em;

  color: var(--obsidian);
}


/* --------------------------------------------
   OFFICE MARKER
--------------------------------------------- */

.royal-role-diaspora-office {
  display: flex;
  align-items: center;
  gap: 15px;

  margin-top: 61px;
  padding-top: 20px;

  border-top: 1px solid rgba(17, 17, 15, 0.15);

  font-family: "DM Sans", sans-serif;
  font-size: 7px;
  font-weight: 500;
  line-height: 1;

  letter-spacing: 0.21em;
  text-transform: uppercase;

  color: rgba(17, 17, 15, 0.46);
}

.royal-role-diaspora-office-label {
  color: var(--obsidian);
}

.royal-role-diaspora-office-rule {
  width: 35px;
  height: 1px;

  background: var(--gold-soft);
}

.royal-role-diaspora-office-place {
  color: rgba(17, 17, 15, 0.44);
}


/* --------------------------------------------
   CLOSING STATEMENT
--------------------------------------------- */

.royal-role-diaspora-closing {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: end;

  gap: 40px;

  margin-top: 105px;
  padding-top: 25px;

  border-top: 1px solid rgba(17, 17, 15, 0.15);
}

.royal-role-diaspora-closing-mark {
  font-family: "DM Sans", sans-serif;
  font-size: 9px;
  font-weight: 500;
  line-height: 1;

  letter-spacing: 0.28em;

  color: var(--gold);
}

.royal-role-diaspora-closing p {
  max-width: 450px;

  margin: 0;

  font-family: "Cormorant Garamond", serif;
  font-size: clamp(28px, 2.7vw, 39px);
  font-weight: 300;
  line-height: 1.12;

  letter-spacing: -0.02em;

  color: rgba(17, 17, 15, 0.82);
}

.royal-role-diaspora-closing p em {
  color: var(--gold);

  font-style: italic;
}


/* --------------------------------------------
   TABLET
--------------------------------------------- */

@media (max-width: 1000px) {

  .royal-role-diaspora-inner {
    width: 88vw;
    padding: 115px 0 105px;
  }

  .royal-role-diaspora-main {
    grid-template-columns: minmax(350px, 0.95fr) minmax(0, 1.05fr);
    gap: 55px;

    padding-top: 68px;
  }

  .royal-role-diaspora-media {
    height: 610px;
  }

  .royal-role-diaspora-content h2 {
    font-size: clamp(57px, 7.7vw, 82px);
  }

  .royal-role-diaspora-copy {
    margin-top: 45px;
  }

  .royal-role-diaspora-copy
  .royal-role-diaspora-lead {
    font-size: 27px;
  }

  .royal-role-diaspora-office {
    margin-top: 48px;
  }

  .royal-role-diaspora-closing {
    margin-top: 82px;
  }

}

/* --------------------------------------------
   MOBILE
   CONTENT FIRST — IMAGE SECOND
--------------------------------------------- */

@media (max-width: 800px) {

  .royal-role-diaspora-inner {
    width: 87vw;
    padding: 92px 0 78px;
  }


  /* ------------------------------------------
     INTRO
  ------------------------------------------- */

  .royal-role-diaspora-intro {
    padding-bottom: 18px;
  }

  .royal-role-diaspora-meta {
    gap: 11px;

    font-size: 7px;
    letter-spacing: 0.17em;
  }

  .royal-role-diaspora-location {
    gap: 8px;

    font-size: 7px;
    letter-spacing: 0.14em;
  }

  .royal-role-diaspora-location-rule {
    width: 18px;
  }


  /* ------------------------------------------
     MAIN
  ------------------------------------------- */

  .royal-role-diaspora-main {
    display: flex;
    flex-direction: column;

    gap: 0;

    padding-top: 58px;
  }


  /* ------------------------------------------
     CONTENT FIRST
  ------------------------------------------- */

  .royal-role-diaspora-content {
    order: 1;

    max-width: none;

    padding: 0;
    margin: 0;
  }


  /* Eyebrow */

  .royal-role-diaspora-eyebrow {
    gap: 11px;

    margin-bottom: 25px;

    font-size: 7px;
    letter-spacing: 0.17em;
  }

  .royal-role-diaspora-eyebrow::before {
    width: 27px;
  }


  /* Heading */

  .royal-role-diaspora-content h2 {
    font-size: clamp(60px, 17vw, 88px);
    line-height: 0.81;
  }

  .royal-role-diaspora-content h2 em {
    margin-left: 0.28em;
  }


  /* Description */

  .royal-role-diaspora-copy {
    max-width: none;
    margin-top: 45px;
  }

  .royal-role-diaspora-copy
  .royal-role-diaspora-lead {
    margin-bottom: 28px;

    font-size: 27px;
    line-height: 1.18;
  }

  .royal-role-diaspora-copy p {
    margin-bottom: 23px;

    font-size: 11.5px;
    line-height: 1.9;
  }


  /* Office marker */

  .royal-role-diaspora-office {
    display: flex;
    flex-wrap: wrap;
    align-items: center;

    margin-top: 48px;
    padding-top: 19px;

    gap: 12px;

    font-size: 7px;
    letter-spacing: 0.17em;
  }

  .royal-role-diaspora-office-rule {
    width: 26px;
  }


  /* ------------------------------------------
     IMAGE SECOND
  ------------------------------------------- */

  .royal-role-diaspora-media {
    order: 2;

    width: 100%;
    height: 500px;

    margin: 58px 0 0;
  }

  .royal-role-diaspora-image {
    object-position: center center;
    transform: none;
  }

  .royal-role-diaspora-media:hover
  .royal-role-diaspora-image {
    transform: none;
  }

  .royal-role-diaspora-media::after {
    inset: 10px;
  }

  .royal-role-diaspora-caption {
    left: 20px;
    right: 20px;
    bottom: 19px;

    gap: 11px;

    font-size: 7px;
  }

  .royal-role-diaspora-caption-rule {
    width: 25px;
  }


  /* ------------------------------------------
     CLOSING
  ------------------------------------------- */

  .royal-role-diaspora-closing {
    display: flex;
    flex-direction: column;
    align-items: flex-start;

    gap: 28px;

    margin-top: 62px;
    padding-top: 21px;
  }

  .royal-role-diaspora-closing p {
    max-width: 90vw;

    font-size: 27px;
    line-height: 1.16;
  }

}


/* --------------------------------------------
   SMALL MOBILE
--------------------------------------------- */

@media (max-width: 420px) {

  .royal-role-diaspora-inner {
    width: 87vw;
    padding: 80px 0 64px;
  }

  .royal-role-diaspora-main {
    padding-top: 51px;
  }


  /* Content */

  .royal-role-diaspora-content h2 {
    font-size: clamp(54px, 18vw, 77px);
  }

  .royal-role-diaspora-copy {
    margin-top: 39px;
  }

  .royal-role-diaspora-copy
  .royal-role-diaspora-lead {
    font-size: 24px;
  }

  .royal-role-diaspora-copy p {
    font-size: 11px;
    line-height: 1.85;
  }

  .royal-role-diaspora-office {
    margin-top: 43px;
  }


  /* Image */

  .royal-role-diaspora-media {
    height: 445px;
    margin-top: 48px;
  }


  /* Closing */

  .royal-role-diaspora-closing {
    margin-top: 54px;
  }

  .royal-role-diaspora-closing p {
    font-size: 24px;
  }

}

/* ============================================
   SECTION 05 — CUSTODIAN OF HERITAGE
   PREMIUM EDITORIAL LAYOUT
============================================= */

.royal-role-heritage {
  position: relative;
  background: #e8e1d4;
  color: var(--obsidian);
  overflow: hidden;
}

.royal-role-heritage-inner {
  width: min(1240px, 86vw);
  margin: 0 auto;
  padding: 145px 0 130px;
}


/* --------------------------------------------
   SECTION INTRO
--------------------------------------------- */

.royal-role-heritage-intro {
  display: flex;
  align-items: center;
  justify-content: space-between;

  padding-bottom: 22px;

  border-bottom: 1px solid rgba(17, 17, 15, 0.18);
}

.royal-role-heritage-meta {
  display: flex;
  align-items: center;
  gap: 16px;

  font-family: "DM Sans", sans-serif;
  font-size: 8px;
  font-weight: 500;
  line-height: 1.4;
  letter-spacing: 0.21em;
  text-transform: uppercase;
}

.royal-role-heritage-meta span:first-child {
  color: var(--gold);
}

.royal-role-heritage-meta span:last-child {
  color: rgba(17, 17, 15, 0.54);
}

.royal-role-heritage-place {
  margin: 0;

  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(17, 17, 15, 0.42);
}


/* --------------------------------------------
   MAIN EDITORIAL LAYOUT
--------------------------------------------- */

.royal-role-heritage-main {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(430px, 0.95fr);
  gap: clamp(70px, 9vw, 135px);

  padding-top: 78px;
}


/* --------------------------------------------
   CONTENT
--------------------------------------------- */

.royal-role-heritage-content {
  align-self: center;

  max-width: 590px;
}

.royal-role-heritage-eyebrow {
  display: flex;
  align-items: center;
  gap: 14px;

  margin: 0 0 31px;

  font-family: "DM Sans", sans-serif;
  font-size: 8px;
  font-weight: 500;
  line-height: 1.4;
  letter-spacing: 0.21em;
  text-transform: uppercase;

  color: var(--gold);
}

.royal-role-heritage-eyebrow::before {
  content: "";

  width: 35px;
  height: 1px;

  background: var(--gold-soft);
}


/* --------------------------------------------
   HEADING
--------------------------------------------- */

.royal-role-heritage-content h2 {
  margin: 0;

  font-family: "Cormorant Garamond", serif;
  font-size: clamp(67px, 7.2vw, 108px);
  font-weight: 300;
  line-height: 0.82;
  letter-spacing: -0.058em;

  color: var(--obsidian);
}

.royal-role-heritage-content h2 em {
  display: inline-block;

  margin-left: 0.43em;

  color: var(--gold);

  font-style: italic;
  font-weight: 300;
  letter-spacing: -0.06em;
}


/* --------------------------------------------
   COPY
--------------------------------------------- */

.royal-role-heritage-copy {
  max-width: 500px;
  margin-top: 60px;
}

.royal-role-heritage-copy p {
  margin: 0 0 27px;

  font-family: "DM Sans", sans-serif;
  font-size: 12px;
  font-weight: 400;
  line-height: 1.92;
  letter-spacing: 0.01em;

  color: rgba(17, 17, 15, 0.68);
}

.royal-role-heritage-copy p:last-child {
  margin-bottom: 0;
}

.royal-role-heritage-copy
.royal-role-heritage-lead {
  margin-bottom: 32px;

  font-family: "Cormorant Garamond", serif;
  font-size: clamp(27px, 2.45vw, 35px);
  font-weight: 400;
  line-height: 1.18;
  letter-spacing: -0.018em;

  color: var(--obsidian);
}


/* --------------------------------------------
   PHOTOGRAPH
--------------------------------------------- */

.royal-role-heritage-media {
  position: relative;

  width: 100%;
  height: clamp(590px, 53vw, 760px);

  margin: 0;

  overflow: hidden;

  background: #d8d0c2;
}

.royal-role-heritage-image {
  display: block;

  width: 100%;
  height: 100%;

  object-fit: cover;
  object-position: center center;

  transform: scale(1.012);

  transition:
    transform 1.6s var(--ease);
}

.royal-role-heritage-media:hover
.royal-role-heritage-image {
  transform: scale(1.035);
}


/* --------------------------------------------
   IMAGE TREATMENT
--------------------------------------------- */

.royal-role-heritage-media::before {
  content: "";

  position: absolute;
  inset: 0;

  z-index: 1;

  background:
    linear-gradient(
      180deg,
      rgba(8, 8, 7, 0.02) 42%,
      rgba(8, 8, 7, 0.60) 100%
    );

  pointer-events: none;
}

.royal-role-heritage-media::after {
  content: "";

  position: absolute;
  inset: 15px;

  z-index: 2;

  border: 1px solid rgba(244, 240, 231, 0.23);

  pointer-events: none;
}


/* --------------------------------------------
   IMAGE CAPTION
--------------------------------------------- */

.royal-role-heritage-caption {
  position: absolute;

  left: 30px;
  right: 30px;
  bottom: 27px;

  z-index: 3;

  display: flex;
  align-items: center;
  gap: 13px;

  margin: 0;

  font-family: "DM Sans", sans-serif;
  font-size: 7px;
  font-weight: 500;
  line-height: 1;

  letter-spacing: 0.2em;
  text-transform: uppercase;

  color: rgba(244, 240, 231, 0.78);
}

.royal-role-heritage-caption-rule {
  width: 32px;
  height: 1px;

  background: var(--gold-soft);
}


/* --------------------------------------------
   HERITAGE PRINCIPLES
--------------------------------------------- */

.royal-role-heritage-principles {
  display: grid;
  grid-template-columns: repeat(3, 1fr);

  margin-top: 105px;

  border-top: 1px solid rgba(17, 17, 15, 0.18);
  border-bottom: 1px solid rgba(17, 17, 15, 0.18);
}

.royal-role-heritage-principle {
  min-height: 245px;

  padding: 30px 35px 35px;

  border-right: 1px solid rgba(17, 17, 15, 0.15);
}

.royal-role-heritage-principle:first-child {
  padding-left: 0;
}

.royal-role-heritage-principle:last-child {
  padding-right: 0;
  border-right: 0;
}

.royal-role-heritage-principle-number {
  display: block;

  margin-bottom: 67px;

  font-family: "DM Sans", sans-serif;
  font-size: 8px;
  font-weight: 500;
  line-height: 1;

  letter-spacing: 0.2em;

  color: var(--gold);
}

.royal-role-heritage-principle h3 {
  margin: 0 0 13px;

  font-family: "Cormorant Garamond", serif;
  font-size: clamp(35px, 3vw, 45px);
  font-weight: 400;
  line-height: 1;

  letter-spacing: -0.025em;

  color: var(--obsidian);
}

.royal-role-heritage-principle p {
  max-width: 300px;

  margin: 0;

  font-family: "DM Sans", sans-serif;
  font-size: 11px;
  font-weight: 400;
  line-height: 1.85;

  color: rgba(17, 17, 15, 0.56);
}


/* --------------------------------------------
   CLOSING STATEMENT
--------------------------------------------- */

.royal-role-heritage-closing {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: end;

  gap: 40px;

  margin-top: 72px;

  padding-top: 25px;

  border-top: 1px solid rgba(17, 17, 15, 0.18);
}

.royal-role-heritage-closing-mark {
  font-family: "DM Sans", sans-serif;
  font-size: 8px;
  font-weight: 500;
  line-height: 1;

  letter-spacing: 0.27em;

  color: var(--gold);
}

.royal-role-heritage-closing p {
  max-width: 470px;

  margin: 0;

  font-family: "Cormorant Garamond", serif;
  font-size: clamp(28px, 2.65vw, 38px);
  font-weight: 300;
  line-height: 1.13;

  letter-spacing: -0.02em;

  color: rgba(17, 17, 15, 0.80);
}

.royal-role-heritage-closing p em {
  color: var(--gold);
  font-style: italic;
}


/* --------------------------------------------
   TABLET
--------------------------------------------- */

@media (max-width: 1000px) {

  .royal-role-heritage-inner {
    width: 88vw;
    padding: 115px 0 105px;
  }

  .royal-role-heritage-main {
    grid-template-columns: minmax(350px, 1fr) minmax(360px, 0.95fr);
    gap: 55px;

    padding-top: 68px;
  }

  .royal-role-heritage-content h2 {
    font-size: clamp(57px, 7.7vw, 82px);
  }

  .royal-role-heritage-copy {
    margin-top: 46px;
  }

  .royal-role-heritage-copy
  .royal-role-heritage-lead {
    font-size: 27px;
  }

  .royal-role-heritage-media {
    height: 610px;
  }

  .royal-role-heritage-principles {
    margin-top: 82px;
  }

  .royal-role-heritage-principle {
    padding: 27px 24px 30px;
  }

  .royal-role-heritage-principle:first-child {
    padding-left: 0;
  }

  .royal-role-heritage-principle:last-child {
    padding-right: 0;
  }

}


/* --------------------------------------------
   MOBILE
   CONTENT FIRST / IMAGE SECOND
--------------------------------------------- */

@media (max-width: 800px) {

  .royal-role-heritage-inner {
    width: 87vw;
    padding: 92px 0 78px;
  }


  /* ------------------------------------------
     INTRO
  ------------------------------------------- */

  .royal-role-heritage-intro {
    padding-bottom: 18px;
  }

  .royal-role-heritage-meta {
    gap: 11px;

    font-size: 7px;
    letter-spacing: 0.17em;
  }

  .royal-role-heritage-place {
    max-width: 125px;

    font-size: 7px;
    line-height: 1.65;
    letter-spacing: 0.14em;
    text-align: right;
  }


  /* ------------------------------------------
     MAIN
  ------------------------------------------- */

  .royal-role-heritage-main {
    display: flex;
    flex-direction: column;

    gap: 0;

    padding-top: 58px;
  }


  /* ------------------------------------------
     CONTENT FIRST
  ------------------------------------------- */

  .royal-role-heritage-content {
    order: 1;

    max-width: none;
    padding: 0;
  }

  .royal-role-heritage-eyebrow {
    gap: 11px;

    margin-bottom: 25px;

    font-size: 7px;
    letter-spacing: 0.17em;
  }

  .royal-role-heritage-eyebrow::before {
    width: 27px;
  }


  /* ------------------------------------------
     HEADING
  ------------------------------------------- */

  .royal-role-heritage-content h2 {
    font-size: clamp(60px, 17vw, 88px);
    line-height: 0.81;
  }

  .royal-role-heritage-content h2 em {
    margin-left: 0.28em;
  }


  /* ------------------------------------------
     DESCRIPTION
  ------------------------------------------- */

  .royal-role-heritage-copy {
    max-width: none;
    margin-top: 45px;
  }

  .royal-role-heritage-copy
  .royal-role-heritage-lead {
    margin-bottom: 28px;

    font-size: 27px;
    line-height: 1.18;
  }

  .royal-role-heritage-copy p {
    margin-bottom: 23px;

    font-size: 11.5px;
    line-height: 1.9;
  }


  /* ------------------------------------------
     IMAGE SECOND
  ------------------------------------------- */

  .royal-role-heritage-media {
    order: 2;

    width: 100%;
    height: 500px;

    margin-top: 56px;
  }

  .royal-role-heritage-image {
    object-position: center center;
    transform: none;
  }

  .royal-role-heritage-media:hover
  .royal-role-heritage-image {
    transform: none;
  }

  .royal-role-heritage-media::after {
    inset: 10px;
  }

  .royal-role-heritage-caption {
    left: 20px;
    right: 20px;
    bottom: 19px;

    gap: 11px;

    font-size: 7px;
  }

  .royal-role-heritage-caption-rule {
    width: 25px;
  }


  /* ------------------------------------------
     HERITAGE PRINCIPLES
  ------------------------------------------- */

  .royal-role-heritage-principles {
    display: block;

    margin-top: 64px;
  }

  .royal-role-heritage-principle {
    min-height: auto;

    padding: 27px 0 32px;

    border-right: 0;
    border-bottom: 1px solid rgba(17, 17, 15, 0.15);
  }

  .royal-role-heritage-principle:first-child {
    padding-left: 0;
  }

  .royal-role-heritage-principle:last-child {
    padding-right: 0;

    border-bottom: 0;
  }

  .royal-role-heritage-principle-number {
    margin-bottom: 30px;

    font-size: 7px;
  }

  .royal-role-heritage-principle h3 {
    margin-bottom: 11px;

    font-size: 39px;
  }

  .royal-role-heritage-principle p {
    max-width: 90vw;

    font-size: 11px;
    line-height: 1.85;
  }


  /* ------------------------------------------
     CLOSING
  ------------------------------------------- */

  .royal-role-heritage-closing {
    display: flex;
    flex-direction: column;
    align-items: flex-start;

    gap: 27px;

    margin-top: 58px;
  }

  .royal-role-heritage-closing p {
    max-width: 90vw;

    font-size: 27px;
    line-height: 1.16;
  }

}


/* --------------------------------------------
   SMALL MOBILE
--------------------------------------------- */

@media (max-width: 420px) {

  .royal-role-heritage-inner {
    width: 87vw;
    padding: 80px 0 64px;
  }

  .royal-role-heritage-main {
    padding-top: 51px;
  }


  /* Heading */

  .royal-role-heritage-content h2 {
    font-size: clamp(54px, 18vw, 77px);
  }


  /* Copy */

  .royal-role-heritage-copy {
    margin-top: 39px;
  }

  .royal-role-heritage-copy
  .royal-role-heritage-lead {
    font-size: 24px;
  }

  .royal-role-heritage-copy p {
    font-size: 11px;
    line-height: 1.85;
  }


  /* Image */

  .royal-role-heritage-media {
    height: 445px;
    margin-top: 47px;
  }


  /* Principles */

  .royal-role-heritage-principles {
    margin-top: 55px;
  }

  .royal-role-heritage-principle {
    padding: 24px 0 29px;
  }

  .royal-role-heritage-principle-number {
    margin-bottom: 27px;
  }

  .royal-role-heritage-principle h3 {
    font-size: 35px;
  }

  .royal-role-heritage-principle p {
    font-size: 10.5px;
    line-height: 1.85;
  }


  /* Closing */

  .royal-role-heritage-closing {
    margin-top: 50px;
  }

  .royal-role-heritage-closing p {
    font-size: 24px;
  }

}

/* ============================================
   SECTION 06 — PEACE & UNITY
   PREMIUM EDITORIAL LAYOUT
============================================= */

.royal-role-unity {
  position: relative;
  background: var(--obsidian);
  color: var(--ivory);
  overflow: hidden;
}

.royal-role-unity-inner {
  width: min(1240px, 86vw);
  margin: 0 auto;
  padding: 145px 0 120px;
}


/* --------------------------------------------
   SECTION INTRO
--------------------------------------------- */

.royal-role-unity-intro {
  display: flex;
  align-items: center;
  justify-content: space-between;

  padding-bottom: 22px;

  border-bottom: 1px solid rgba(244, 240, 231, 0.16);
}

.royal-role-unity-meta {
  display: flex;
  align-items: center;
  gap: 16px;

  font-family: "DM Sans", sans-serif;
  font-size: 8px;
  font-weight: 500;
  line-height: 1.4;
  letter-spacing: 0.21em;
  text-transform: uppercase;
}

.royal-role-unity-meta span:first-child {
  color: var(--gold);
}

.royal-role-unity-meta span:last-child {
  color: rgba(244, 240, 231, 0.60);
}

.royal-role-unity-place {
  margin: 0;

  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.40);
}


/* --------------------------------------------
   MAIN EDITORIAL LAYOUT
--------------------------------------------- */

.royal-role-unity-main {
  display: grid;
  grid-template-columns: minmax(0, 1.02fr) minmax(430px, 0.98fr);
  gap: clamp(70px, 9vw, 135px);

  padding-top: 78px;
}


/* --------------------------------------------
   CONTENT
--------------------------------------------- */

.royal-role-unity-content {
  align-self: center;

  max-width: 590px;
}

.royal-role-unity-eyebrow {
  display: flex;
  align-items: center;
  gap: 14px;

  margin: 0 0 31px;

  font-family: "DM Sans", sans-serif;
  font-size: 8px;
  font-weight: 500;
  line-height: 1.4;

  letter-spacing: 0.21em;
  text-transform: uppercase;

  color: var(--gold);
}

.royal-role-unity-eyebrow::before {
  content: "";

  width: 35px;
  height: 1px;

  background: var(--gold-soft);
}


/* --------------------------------------------
   HEADING
--------------------------------------------- */

.royal-role-unity-content h2 {
  margin: 0;

  font-family: "Cormorant Garamond", serif;
  font-size: clamp(67px, 7.2vw, 108px);
  font-weight: 300;
  line-height: 0.82;

  letter-spacing: -0.058em;

  color: var(--ivory);
}

.royal-role-unity-content h2 em {
  display: inline-block;

  margin-left: 0.43em;

  color: var(--gold);

  font-style: italic;
  font-weight: 300;

  letter-spacing: -0.06em;
}


/* --------------------------------------------
   COPY
--------------------------------------------- */

.royal-role-unity-copy {
  max-width: 500px;
  margin-top: 60px;
}

.royal-role-unity-copy p {
  margin: 0 0 27px;

  font-family: "DM Sans", sans-serif;
  font-size: 12px;
  font-weight: 400;
  line-height: 1.92;

  letter-spacing: 0.01em;

  color: rgba(244, 240, 231, 0.60);
}

.royal-role-unity-copy p:last-child {
  margin-bottom: 0;
}

.royal-role-unity-copy
.royal-role-unity-lead {
  margin-bottom: 32px;

  font-family: "Cormorant Garamond", serif;
  font-size: clamp(27px, 2.45vw, 35px);
  font-weight: 400;
  line-height: 1.18;

  letter-spacing: -0.018em;

  color: var(--ivory);
}


/* --------------------------------------------
   PHOTOGRAPH
--------------------------------------------- */

.royal-role-unity-media {
  position: relative;

  width: 100%;
  height: clamp(590px, 53vw, 760px);

  margin: 0;

  overflow: hidden;

  background: #27251f;
}

.royal-role-unity-image {
  display: block;

  width: 100%;
  height: 100%;

  object-fit: cover;
  object-position: center center;

  transform: scale(1.012);

  transition:
    transform 1.6s var(--ease);
}

.royal-role-unity-media:hover
.royal-role-unity-image {
  transform: scale(1.035);
}


/* --------------------------------------------
   IMAGE TREATMENT
--------------------------------------------- */

.royal-role-unity-media::before {
  content: "";

  position: absolute;
  inset: 0;

  z-index: 1;

  background:
    linear-gradient(
      180deg,
      rgba(8, 8, 7, 0.03) 40%,
      rgba(8, 8, 7, 0.62) 100%
    );

  pointer-events: none;
}

.royal-role-unity-media::after {
  content: "";

  position: absolute;
  inset: 15px;

  z-index: 2;

  border: 1px solid rgba(244, 240, 231, 0.22);

  pointer-events: none;
}


/* --------------------------------------------
   IMAGE CAPTION
--------------------------------------------- */

.royal-role-unity-caption {
  position: absolute;

  left: 30px;
  right: 30px;
  bottom: 27px;

  z-index: 3;

  display: flex;
  align-items: center;
  gap: 13px;

  margin: 0;

  font-family: "DM Sans", sans-serif;
  font-size: 7px;
  font-weight: 500;
  line-height: 1;

  letter-spacing: 0.2em;
  text-transform: uppercase;

  color: rgba(244, 240, 231, 0.78);
}

.royal-role-unity-caption-rule {
  width: 32px;
  height: 1px;

  background: var(--gold-soft);
}


/* --------------------------------------------
   MISSION STATEMENT
--------------------------------------------- */

.royal-role-unity-mission {
  display: grid;
  grid-template-columns: 180px minmax(0, 1fr);

  gap: clamp(50px, 8vw, 120px);

  margin-top: 110px;
  padding-top: 28px;

  border-top: 1px solid rgba(244, 240, 231, 0.17);
}

.royal-role-unity-mission-label {
  padding-top: 8px;

  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);
}

.royal-role-unity-mission blockquote {
  margin: 0;
  max-width: 850px;
}

.royal-role-unity-mission blockquote p {
  margin: 0;

  font-family: "Cormorant Garamond", serif;
  font-size: clamp(40px, 4.6vw, 68px);
  font-weight: 300;
  line-height: 0.98;

  letter-spacing: -0.045em;

  color: var(--ivory);
}

.royal-role-unity-mission blockquote p::first-letter {
  color: var(--gold);
}


/* --------------------------------------------
   CLOSING
--------------------------------------------- */

.royal-role-unity-closing {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 14px;

  margin-top: 75px;
  padding-top: 22px;

  border-top: 1px solid rgba(244, 240, 231, 0.14);

  font-family: "DM Sans", sans-serif;
  font-size: 7px;
  font-weight: 500;
  line-height: 1;

  letter-spacing: 0.2em;
  text-transform: uppercase;

  color: rgba(244, 240, 231, 0.40);
}

.royal-role-unity-closing-rule {
  width: 30px;
  height: 1px;

  background: var(--gold-soft);
}


/* --------------------------------------------
   TABLET
--------------------------------------------- */

@media (max-width: 1000px) {

  .royal-role-unity-inner {
    width: 88vw;
    padding: 115px 0 105px;
  }

  .royal-role-unity-main {
    grid-template-columns: minmax(350px, 1fr) minmax(360px, 0.95fr);
    gap: 55px;

    padding-top: 68px;
  }

  .royal-role-unity-content h2 {
    font-size: clamp(57px, 7.7vw, 82px);
  }

  .royal-role-unity-copy {
    margin-top: 46px;
  }

  .royal-role-unity-copy
  .royal-role-unity-lead {
    font-size: 27px;
  }

  .royal-role-unity-media {
    height: 610px;
  }

  .royal-role-unity-mission {
    margin-top: 85px;
  }

  .royal-role-unity-mission blockquote p {
    font-size: clamp(36px, 5vw, 52px);
  }

}


/* --------------------------------------------
   MOBILE
   CONTENT FIRST / IMAGE SECOND
--------------------------------------------- */

@media (max-width: 800px) {

  .royal-role-unity-inner {
    width: 87vw;
    padding: 92px 0 78px;
  }


  /* ------------------------------------------
     INTRO
  ------------------------------------------- */

  .royal-role-unity-intro {
    padding-bottom: 18px;
  }

  .royal-role-unity-meta {
    gap: 11px;

    font-size: 7px;
    letter-spacing: 0.17em;
  }

  .royal-role-unity-place {
    max-width: 125px;

    font-size: 7px;
    line-height: 1.65;
    letter-spacing: 0.14em;
    text-align: right;
  }


  /* ------------------------------------------
     MAIN
  ------------------------------------------- */

  .royal-role-unity-main {
    display: flex;
    flex-direction: column;

    gap: 0;

    padding-top: 58px;
  }


  /* ------------------------------------------
     CONTENT FIRST
  ------------------------------------------- */

  .royal-role-unity-content {
    order: 1;

    max-width: none;
    padding: 0;
  }

  .royal-role-unity-eyebrow {
    gap: 11px;

    margin-bottom: 25px;

    font-size: 7px;
    letter-spacing: 0.17em;
  }

  .royal-role-unity-eyebrow::before {
    width: 27px;
  }


  /* Heading */

  .royal-role-unity-content h2 {
    font-size: clamp(60px, 17vw, 88px);
    line-height: 0.81;
  }

  .royal-role-unity-content h2 em {
    margin-left: 0.28em;
  }


  /* Description */

  .royal-role-unity-copy {
    max-width: none;
    margin-top: 45px;
  }

  .royal-role-unity-copy
  .royal-role-unity-lead {
    margin-bottom: 28px;

    font-size: 27px;
    line-height: 1.18;
  }

  .royal-role-unity-copy p {
    margin-bottom: 23px;

    font-size: 11.5px;
    line-height: 1.9;
  }


  /* ------------------------------------------
     IMAGE SECOND
  ------------------------------------------- */

  .royal-role-unity-media {
    order: 2;

    width: 100%;
    height: 500px;

    margin-top: 56px;
  }

  .royal-role-unity-image {
    object-position: center center;
    transform: none;
  }

  .royal-role-unity-media:hover
  .royal-role-unity-image {
    transform: none;
  }

  .royal-role-unity-media::after {
    inset: 10px;
  }

  .royal-role-unity-caption {
    left: 20px;
    right: 20px;
    bottom: 19px;

    gap: 11px;

    font-size: 7px;
  }

  .royal-role-unity-caption-rule {
    width: 25px;
  }


  /* ------------------------------------------
     MISSION
  ------------------------------------------- */

  .royal-role-unity-mission {
    display: block;

    margin-top: 65px;
    padding-top: 21px;
  }

  .royal-role-unity-mission-label {
    display: block;

    padding-top: 0;
    margin-bottom: 28px;

    font-size: 7px;
    letter-spacing: 0.18em;
  }

  .royal-role-unity-mission blockquote {
    max-width: none;
  }

  .royal-role-unity-mission blockquote p {
    font-size: clamp(34px, 9.8vw, 52px);
    line-height: 1.02;

    letter-spacing: -0.04em;
  }


  /* ------------------------------------------
     CLOSING
  ------------------------------------------- */

  .royal-role-unity-closing {
    justify-content: flex-start;

    margin-top: 55px;
    padding-top: 19px;

    gap: 11px;

    font-size: 7px;
    letter-spacing: 0.17em;
  }

  .royal-role-unity-closing-rule {
    width: 24px;
  }

}


/* --------------------------------------------
   SMALL MOBILE
--------------------------------------------- */

@media (max-width: 420px) {

  .royal-role-unity-inner {
    width: 87vw;
    padding: 80px 0 64px;
  }

  .royal-role-unity-main {
    padding-top: 51px;
  }

  .royal-role-unity-content h2 {
    font-size: clamp(54px, 18vw, 77px);
  }

  .royal-role-unity-copy {
    margin-top: 39px;
  }

  .royal-role-unity-copy
  .royal-role-unity-lead {
    font-size: 24px;
  }

  .royal-role-unity-copy p {
    font-size: 11px;
    line-height: 1.85;
  }

  .royal-role-unity-media {
    height: 445px;
    margin-top: 47px;
  }

  .royal-role-unity-mission {
    margin-top: 55px;
  }

  .royal-role-unity-mission blockquote p {
    font-size: 31px;
  }

  .royal-role-unity-closing {
    margin-top: 47px;
  }

}


/* =========================================================
   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;
    }

}

/* =========================================================
   ROYAL ROLE — LEGAL FOOTER LINKS
   Final approved system
   Matches Home / Foundation / Her Story / Royal Engagements / Royal Office
========================================================= */

.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 ROLE — 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;
    }
}
