/* =========================================================
   NANA EFUA APIATEWA III
   ROYAL ENGAGEMENTS — PAGE FOUNDATION + SECTION 01
   ROYAL HERITAGE × CONTEMPORARY EDITORIAL
   ========================================================= */


/* =========================================================
   01. VARIABLES
   ========================================================= */

:root {
  --obsidian: #11110f;
  --ivory: #f4f0e7;
  --ivory-soft: rgba(244, 240, 231, 0.72);

  --gold: #d5b674;
  --gold-soft: rgba(213, 182, 116, 0.65);
  --gold-faint: rgba(213, 182, 116, 0.25);

  --black: rgba(0, 0, 0, 0.92);

  --ease: cubic-bezier(0.25, 0.1, 0.25, 1);
}


/* =========================================================
   02. RESET / BASE
   ========================================================= */

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  margin: 0;
  padding: 0;

  scroll-behavior: smooth;

  background: var(--obsidian);
}

body {
  margin: 0;
  padding: 0;

  background: var(--obsidian);
  color: var(--ivory);

  font-family: "DM Sans", sans-serif;
  font-weight: 400;

  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;

  overflow-x: hidden;
}

body.menu-is-open {
  overflow: hidden;
}

img {
  display: block;
  max-width: 100%;
}

a {
  color: inherit;
  text-decoration: none;
}

button,
input,
textarea,
select {
  font: inherit;
}

button {
  border: 0;
  margin: 0;
  padding: 0;
}

figure,
h1,
h2,
h3,
h4,
p {
  margin: 0;
}

::selection {
  background: var(--gold);
  color: var(--obsidian);
}


/* =========================================================
   03. SHARED 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;

  background: transparent;

  pointer-events: none;
}


/* =========================================================
   04. ROYAL MARK
   ========================================================= */

.royal-mark {
  position: relative;

  z-index: 1002;

  display: inline-flex;
  align-items: center;

  gap: 14px;

  color: var(--ivory);

  pointer-events: auto;
}

.royal-mark-symbol {
  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;
  line-height: 1;

  letter-spacing: 0.34em;

  color: var(--ivory);
}


/* =========================================================
   05. DESKTOP NAVIGATION
   ========================================================= */

.main-navigation {
  position: relative;

  width: auto;
  height: auto;

  display: flex;
  align-items: center;

  background: transparent;

  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;

  font-family: "DM Sans", sans-serif;
  font-size: 9px;
  font-weight: 500;
  line-height: 1;

  letter-spacing: 0.18em;
  text-transform: uppercase;

  color: rgba(244, 240, 231, 0.78);

  transition:
    color 0.35s var(--ease),
    opacity 0.35s var(--ease);
}

.navigation-links a::after {
  content: "";

  position: absolute;

  left: 0;
  bottom: 3px;

  width: 0;
  height: 1px;

  background: var(--gold);

  transition: width 0.45s var(--ease);
}

.navigation-links a:hover {
  color: var(--gold);
}

.navigation-links a:hover::after {
  width: 100%;
}


/* =========================================================
   06. ACTIVE PAGE
   ========================================================= */

.navigation-links a[aria-current="page"] {
  color: var(--gold);
}

.navigation-links a[aria-current="page"]::after {
  width: 100%;
}


/* =========================================================
   07. NAVIGATION NUMBER
   ========================================================= */

.nav-number {
  display: none;
}


/* =========================================================
   08. MOBILE MENU BUTTON
   ========================================================= */

.menu-toggle {
  position: relative;

  z-index: 1002;

  width: 46px;
  height: 46px;

  display: none;
  align-items: center;
  justify-content: center;

  background: transparent;

  cursor: pointer;

  pointer-events: auto;
}

.menu-toggle span {
  position: absolute;

  width: 23px;
  height: 1px;

  background: var(--ivory);

  transition:
    transform 0.45s var(--ease),
    top 0.45s var(--ease),
    background 0.35s ease;
}

.menu-toggle span:first-child {
  top: 18px;
}

.menu-toggle span:last-child {
  top: 27px;
}

.menu-toggle:hover span {
  background: var(--gold);
}

.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);
}


/* =========================================================
   09. SECTION 01 — ROYAL ENGAGEMENTS HERO
   ========================================================= */

.engagements-hero {
  position: relative;

  min-height: 720px;
  height: 100svh;

  overflow: hidden;

  isolation: isolate;

  background: var(--obsidian);
  color: var(--ivory);
}


/* =========================================================
   10. HERO MEDIA
   ========================================================= */

.engagements-hero-media {
  position: absolute;

  inset: 0;

  z-index: -3;

  overflow: hidden;
}

.engagements-hero-image {
  width: 100%;
  height: 100%;

  object-fit: cover;
  object-position: center top;

  transform: scale(1.015);

  transition: transform 1.8s var(--ease);
}

.engagements-hero:hover .engagements-hero-image {
  transform: scale(1.035);
}


/* =========================================================
   11. HERO OVERLAY
   ========================================================= */

.engagements-hero-overlay {
  position: absolute;

  inset: 0;

  z-index: -2;

  background:
    linear-gradient(
      90deg,
      rgba(8, 8, 7, 0.82) 0%,
      rgba(8, 8, 7, 0.52) 34%,
      rgba(8, 8, 7, 0.18) 68%,
      rgba(8, 8, 7, 0.30) 100%
    );
}

.engagements-hero-overlay::after {
  content: "";

  position: absolute;

  inset: 0;

  background:
    linear-gradient(
      180deg,
      rgba(8, 8, 7, 0.42) 0%,
      transparent 28%,
      transparent 62%,
      rgba(8, 8, 7, 0.58) 100%
    );
}


/* =========================================================
   12. HERO ADINKRA
   ========================================================= */

.engagements-hero-adinkra {
  position: absolute;

  top: 50%;
  right: 7vw;

  width: clamp(150px, 16vw, 235px);

  aspect-ratio: 1;

  transform: translateY(-50%);

  z-index: -1;

  opacity: 0.17;

  pointer-events: none;
}

.engagements-hero-adinkra svg {
  width: 100%;
  height: 100%;

  overflow: visible;
}

.engagements-hero-adinkra circle {
  fill: none;

  stroke: var(--gold);
  stroke-width: 0.65;
}


/* =========================================================
   13. HERO CONTENT
   ========================================================= */

.engagements-hero-content {
  position: absolute;

  left: 7vw;
  bottom: 14vh;

  width: min(760px, 70vw);
}


/* =========================================================
   14. HERO KICKER
   ========================================================= */

.engagements-hero-kicker {
  display: flex;
  align-items: center;

  gap: 15px;

  margin-bottom: 28px;

  font-family: "DM Sans", sans-serif;
  font-size: 10px;
  font-weight: 500;
  line-height: 1;

  letter-spacing: 0.22em;
  text-transform: uppercase;

  color: var(--gold);
}

.engagements-hero-line {
  display: block;

  width: 38px;
  height: 1px;

  flex: 0 0 auto;

  background: var(--gold-soft);
}


/* =========================================================
   15. HERO TITLE
   ========================================================= */

.engagements-hero-title {
  font-family: "Cormorant Garamond", serif;

  font-size: clamp(82px, 11vw, 170px);
  font-weight: 300;

  line-height: 0.76;

  letter-spacing: -0.055em;

  color: var(--ivory);
}

.engagements-hero-title em {
  display: inline-block;

  margin-left: 0.55em;

  font-style: italic;
  font-weight: 300;

  letter-spacing: -0.06em;

  color: var(--gold);
}


/* =========================================================
   16. HERO IDENTITY
   ========================================================= */

.engagements-hero-identity {
  max-width: 520px;

  margin-top: 48px;
  padding-left: 2px;
}

.engagements-hero-name {
  font-family: "Cormorant Garamond", serif;

  font-size: clamp(24px, 2.2vw, 32px);
  font-weight: 400;

  line-height: 1.1;

  color: var(--ivory);
}

.engagements-hero-title-line {
  max-width: 500px;

  margin-top: 8px;

  font-family: "DM Sans", sans-serif;

  font-size: 9px;
  font-weight: 400;

  line-height: 1.8;

  letter-spacing: 0.1em;
  text-transform: uppercase;

  color: var(--ivory-soft);
}

.engagements-hero-title-line span {
  margin: 0 7px;

  color: var(--gold);
}


/* =========================================================
   17. HERO LOCATION
   ========================================================= */

.engagements-hero-location {
  position: absolute;

  right: 7vw;
  bottom: 7vh;

  display: flex;
  align-items: center;

  gap: 13px;

  font-family: "DM Sans", sans-serif;

  font-size: 8px;
  font-weight: 500;

  line-height: 1;

  letter-spacing: 0.18em;
  text-transform: uppercase;

  color: rgba(244, 240, 231, 0.58);
}

.engagements-hero-location-divider {
  width: 24px;
  height: 1px;

  flex: 0 0 auto;

  background: var(--gold-soft);
}


/* =========================================================
   18. HERO SCROLL
   ========================================================= */

.engagements-hero-scroll {
  position: absolute;

  left: 7vw;
  bottom: 6.5vh;

  display: flex;
  align-items: center;

  gap: 13px;

  color: var(--ivory-soft);

  transition: color 0.35s ease;
}

.engagements-hero-scroll-label {
  font-family: "DM Sans", sans-serif;

  font-size: 8px;
  font-weight: 500;

  line-height: 1;

  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.engagements-hero-scroll-line {
  width: 34px;
  height: 1px;

  background: var(--ivory-soft);

  transition:
    width 0.45s var(--ease),
    background 0.35s ease;
}

.engagements-hero-scroll-arrow {
  display: inline-flex;
  align-items: center;
  justify-content: center;

  width: 18px;
  height: 18px;
  flex: 0 0 18px;

  color: var(--gold);

  transition: transform 0.45s var(--ease);
}

.engagements-hero-scroll-arrow svg {
  display: block;
  width: 18px;
  height: 18px;
  overflow: visible;
}

.engagements-hero-scroll-arrow svg path {
  fill: none;
  stroke: currentColor;
  stroke-width: 1.35;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.engagements-hero-scroll:hover {
  color: var(--gold);
}

.engagements-hero-scroll:hover .engagements-hero-scroll-line {
  width: 48px;

  background: var(--gold);
}

.engagements-hero-scroll:hover .engagements-hero-scroll-arrow {
  transform: translateY(4px);
}


/* =========================================================
   19. MOBILE HEADER + NAVIGATION
   ========================================================= */

@media (max-width: 800px) {

  .site-header {
    height: 82px;

    padding: 0 6vw;
  }

  .royal-mark {
    gap: 12px;
  }

  .royal-mark-symbol {
    width: 48px;
    height: 48px;
  }

  .royal-mark-symbol svg {
    width: 27px;
    height: 27px;
  }

  .royal-mark-name {
    font-size: 9px;
    letter-spacing: 0.29em;
  }


  /* -------------------------------------------------------
     MOBILE MENU BUTTON
     ------------------------------------------------------- */

  .menu-toggle {
    display: flex;
  }


  /* -------------------------------------------------------
     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, 0.985);

    opacity: 0;
    visibility: hidden;

    transform: translateX(100%);

    pointer-events: none;

    transition:
      transform 0.55s var(--ease),
      opacity 0.35s ease,
      visibility 0s linear 0.55s;
  }

  .main-navigation.navigation-open {
    opacity: 1;
    visibility: visible;

    transform: translateX(0);

    pointer-events: auto;

    transition:
      transform 0.55s var(--ease),
      opacity 0.35s ease,
      visibility 0s linear 0s;
  }


  /* -------------------------------------------------------
     MOBILE NAV INNER
     ------------------------------------------------------- */

  .navigation-inner {
    width: 100%;
    height: 100%;

    padding: 115px 8vw 40px;

    display: flex;
    flex-direction: column;
    align-items: stretch;
    justify-content: space-between;
  }


  /* -------------------------------------------------------
     MOBILE NAV HEADING
     ------------------------------------------------------- */

  .navigation-heading {
    display: flex;
    align-items: center;
    justify-content: space-between;

    padding-bottom: 20px;

    border-bottom: 1px solid rgba(213, 182, 116, 0.22);

    font-family: "DM Sans", sans-serif;

    font-size: 8px;
    font-weight: 500;

    line-height: 1;

    letter-spacing: 0.25em;
    text-transform: uppercase;

    color: var(--gold);
  }


  /* -------------------------------------------------------
     MOBILE NAV LINKS
     ------------------------------------------------------- */

  .navigation-links {
    display: flex;
    flex-direction: column;
    align-items: stretch;

    gap: 0;
  }

  .navigation-links a {
    width: 100%;
    min-height: 62px;

    display: flex;
    align-items: center;

    gap: 18px;

    padding: 0;

    border-bottom: 1px solid rgba(244, 240, 231, 0.10);

    font-family: "Cormorant Garamond", serif;

    font-size: 31px;
    font-weight: 300;

    line-height: 1;

    letter-spacing: -0.015em;

    text-transform: none;

    color: rgba(244, 240, 231, 0.92);
  }

  .navigation-links a::after {
    display: none;
  }

  .navigation-links a:hover {
    color: var(--gold);
  }

  .navigation-links a[aria-current="page"] {
    color: var(--gold);
  }


  /* -------------------------------------------------------
     MOBILE NAV NUMBERS
     ------------------------------------------------------- */

  .nav-number {
    display: inline-block;

    width: 22px;

    flex: 0 0 22px;

    font-family: "DM Sans", sans-serif;

    font-size: 7px;
    font-weight: 500;

    line-height: 1;

    letter-spacing: 0.15em;

    color: var(--gold);
  }


  /* -------------------------------------------------------
     MOBILE NAV FOOTER
     ------------------------------------------------------- */

  .navigation-footer {
    display: flex;
    flex-direction: column;

    gap: 8px;

    font-family: "DM Sans", sans-serif;

    font-size: 7px;
    font-weight: 500;

    line-height: 1;

    letter-spacing: 0.19em;
    text-transform: uppercase;

    color: rgba(244, 240, 231, 0.45);
  }


  /* =======================================================
     SECTION 01 — MOBILE HERO
     ======================================================= */

  .engagements-hero {
    min-height: 680px;
    height: 100svh;
  }


  /* -------------------------------------------------------
     MOBILE HERO IMAGE
     ------------------------------------------------------- */

  .engagements-hero-image {
    object-position: 50% 28%;

    transform: none;
  }

  .engagements-hero:hover .engagements-hero-image {
    transform: none;
  }


  /* -------------------------------------------------------
     MOBILE HERO OVERLAY
     ------------------------------------------------------- */

  .engagements-hero-overlay {
    background:
      linear-gradient(
        180deg,
        rgba(8, 8, 7, 0.30) 0%,
        rgba(8, 8, 7, 0.10) 34%,
        rgba(8, 8, 7, 0.46) 66%,
        rgba(8, 8, 7, 0.84) 100%
      );
  }

  .engagements-hero-overlay::after {
    background:
      linear-gradient(
        180deg,
        rgba(8, 8, 7, 0.25) 0%,
        transparent 30%,
        transparent 52%,
        rgba(8, 8, 7, 0.48) 100%
      );
  }


  /* -------------------------------------------------------
     MOBILE HERO ADINKRA
     ------------------------------------------------------- */

  .engagements-hero-adinkra {
    top: 27%;
    right: 6vw;

    width: 105px;

    opacity: 0.13;

    transform: none;
  }


  /* -------------------------------------------------------
     MOBILE HERO CONTENT
     ------------------------------------------------------- */

  .engagements-hero-content {
    left: 6.5vw;
    right: 7vw;

    bottom: 12vh;

    width: auto;
  }


  /* -------------------------------------------------------
     MOBILE HERO KICKER
     ------------------------------------------------------- */

  .engagements-hero-kicker {
    gap: 10px;

    margin-bottom: 16px;

    font-size: 7px;
    letter-spacing: 0.17em;
  }

  .engagements-hero-line {
    width: 24px;
  }


  /* -------------------------------------------------------
     MOBILE HERO TITLE
     ------------------------------------------------------- */

  .engagements-hero-title {
    max-width: 92vw;
    font-size: clamp(56px, 15.5vw, 72px);
    line-height: 0.88;
    letter-spacing: -0.045em;
  }

  .engagements-hero-title em {
    margin-left: 0.18em;
    letter-spacing: -0.05em;
  }


  /* -------------------------------------------------------
     MOBILE HERO IDENTITY
     ------------------------------------------------------- */

  .engagements-hero-identity {
    max-width: 86vw;
    margin-top: 23px;
  }

  .engagements-hero-name {
    font-size: 20px;
    line-height: 1.1;
  }

  .engagements-hero-title-line {
    max-width: 84vw;
    margin-top: 5px;
    font-size: 6.5px;
    line-height: 1.65;
    letter-spacing: 0.075em;
  }

  .engagements-hero-title-line span {
    display: none;
  }


  /* -------------------------------------------------------
     MOBILE HERO LOCATION
     ------------------------------------------------------- */

  .engagements-hero-location {
    display: none;
  }


  /* -------------------------------------------------------
     MOBILE HERO SCROLL
     ------------------------------------------------------- */

  .engagements-hero-scroll {
    left: 6.5vw;

    bottom: 5vh;
  }
}


/* =========================================================
   20. SMALL MOBILE
   ========================================================= */

@media (max-width: 420px) {

  .navigation-inner {
    padding: 105px 7vw 32px;
  }

  .navigation-links a {
    min-height: 58px;

    font-size: 28px;
  }


  /* -------------------------------------------------------
     SMALL MOBILE HERO
     ------------------------------------------------------- */

  .engagements-hero-content {
    left: 7vw;
    right: 7vw;
    bottom: 11vh;
  }

  .engagements-hero-title {
    font-size: clamp(52px, 14.5vw, 64px);
    line-height: 0.9;
  }

  .engagements-hero-name {
    font-size: 18px;
  }

  .engagements-hero-identity {
    margin-top: 19px;
  }

  .engagements-hero-scroll {
    bottom: 4.5vh;
  }
}


/* =========================================================
   21. REDUCED MOTION
   ========================================================= */

@media (prefers-reduced-motion: reduce) {

  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }

  .engagements-hero-image {
    transform: none !important;
  }
}

/* =========================================================
   SECTION 02 — ROYAL PRESENCE
   ========================================================= */

.engagements-presence {
    position: relative;
    background: var(--ivory);
    color: var(--obsidian);
    overflow: hidden;
}

.engagements-presence-inner {
    width: min(1400px, 100%);
    margin: 0 auto;
    padding: 150px 7vw 155px;
}

/* ---------------------------------------------------------
   SECTION INTRO
   --------------------------------------------------------- */

.engagements-presence-intro {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 82px;
}

.engagements-presence-marker,
.engagements-presence-place {
    margin: 0;
    font-family: "DM Sans", sans-serif;
    font-size: 8px;
    font-weight: 500;
    line-height: 1;
    letter-spacing: .22em;
    text-transform: uppercase;
}

.engagements-presence-marker {
    color: rgba(17, 17, 15, .52);
}

.engagements-presence-place {
    color: rgba(17, 17, 15, .42);
}

/* ---------------------------------------------------------
   MAIN GRID
   --------------------------------------------------------- */

.engagements-presence-grid {
    display: grid;
    grid-template-columns: minmax(0, .88fr) minmax(420px, 1.12fr);
    gap: clamp(70px, 9vw, 145px);
    align-items: center;
}

/* ---------------------------------------------------------
   CONTENT
   --------------------------------------------------------- */

.engagements-presence-content {
    min-width: 0;
    padding-bottom: 8px;
}

.engagements-presence-heading {
    margin-bottom: 48px;
}

.engagements-presence-eyebrow {
    margin: 0 0 24px;
    font-family: "DM Sans", sans-serif;
    font-size: 8px;
    font-weight: 500;
    line-height: 1;
    letter-spacing: .22em;
    text-transform: uppercase;
    color: var(--gold);
}

.engagements-presence-heading h2 {
    margin: 0;
    max-width: 650px;
    font-family: "Cormorant Garamond", serif;
    font-size: clamp(62px, 7.2vw, 106px);
    font-weight: 300;
    line-height: .84;
    letter-spacing: -.045em;
}

.engagements-presence-heading h2 em {
    display: inline-block;
    margin-left: .42em;
    color: var(--gold);
    font-style: italic;
    font-weight: 300;
    letter-spacing: -.055em;
}

.engagements-presence-copy {
    max-width: 540px;
}

.engagements-presence-copy p {
    margin: 0 0 24px;
    font-family: "DM Sans", sans-serif;
    font-size: 13px;
    font-weight: 300;
    line-height: 1.9;
    letter-spacing: .005em;
    color: rgba(17, 17, 15, .66);
}

.engagements-presence-copy p:last-child {
    margin-bottom: 0;
}

.engagements-presence-copy .engagements-presence-lead {
    margin-bottom: 30px;
    font-family: "Cormorant Garamond", serif;
    font-size: clamp(23px, 2.15vw, 30px);
    font-weight: 400;
    line-height: 1.25;
    letter-spacing: -.01em;
    color: var(--obsidian);
}

/* ---------------------------------------------------------
   FOOTER LABEL
   --------------------------------------------------------- */

.engagements-presence-footer {
    display: flex;
    align-items: center;
    gap: 14px;
    margin-top: 48px;
    font-family: "DM Sans", sans-serif;
    font-size: 8px;
    font-weight: 500;
    line-height: 1;
    letter-spacing: .19em;
    text-transform: uppercase;
    color: rgba(17, 17, 15, .46);
}

.engagements-presence-rule {
    width: 32px;
    height: 1px;
    flex: 0 0 auto;
    background: var(--gold-soft);
}

/* ---------------------------------------------------------
   IMAGE
   --------------------------------------------------------- */

.engagements-presence-media {
    position: relative;
    margin: 0;
    min-width: 0;
}

.engagements-presence-media::before {
    content: "";
    position: absolute;
    top: -16px;
    left: -16px;
    width: 62px;
    height: 62px;
    border-top: 1px solid var(--gold-faint);
    border-left: 1px solid var(--gold-faint);
    pointer-events: none;
}

.engagements-presence-image {
    display: block;
    width: 100%;
    height: clamp(520px, 54vw, 730px);
    object-fit: cover;
    object-position: center center;
    transform: scale(1.005);
    transition: transform 1.4s var(--ease);
}

.engagements-presence-media:hover .engagements-presence-image {
    transform: scale(1.025);
}

.engagements-presence-caption {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-top: 15px;
    padding: 0 2px;
    font-family: "DM Sans", sans-serif;
    font-size: 7px;
    font-weight: 500;
    line-height: 1;
    letter-spacing: .18em;
    text-transform: uppercase;
    color: rgba(17, 17, 15, .42);
}

.engagements-presence-caption span:first-child {
    color: var(--gold);
}

/* ---------------------------------------------------------
   TABLET
   --------------------------------------------------------- */

@media (max-width: 1000px) {

    .engagements-presence-inner {
        padding: 125px 6vw 130px;
    }

    .engagements-presence-intro {
        margin-bottom: 65px;
    }

    .engagements-presence-grid {
        grid-template-columns: minmax(0, .9fr) minmax(340px, 1.1fr);
        gap: 6vw;
    }

    .engagements-presence-heading h2 {
        font-size: clamp(58px, 7vw, 82px);
    }

    .engagements-presence-copy p {
        font-size: 12px;
    }

    .engagements-presence-copy .engagements-presence-lead {
        font-size: 25px;
    }

    .engagements-presence-image {
        height: 570px;
    }
}

/* ---------------------------------------------------------
   MOBILE
   --------------------------------------------------------- */

@media (max-width: 800px) {

    .engagements-presence-inner {
        padding: 95px 6.5vw 105px;
    }

    .engagements-presence-intro {
        margin-bottom: 54px;
    }

    .engagements-presence-marker,
    .engagements-presence-place {
        font-size: 7px;
        letter-spacing: .18em;
    }

    .engagements-presence-place {
        text-align: right;
    }

    /*
       Mobile order:
       content first
       image second
    */

    .engagements-presence-grid {
        display: flex;
        flex-direction: column;
        gap: 58px;
        align-items: stretch;
    }

    .engagements-presence-content {
        order: 1;
        padding: 0;
    }

    .engagements-presence-media {
        order: 2;
    }

    .engagements-presence-heading {
        margin-bottom: 36px;
    }

    .engagements-presence-eyebrow {
        margin-bottom: 19px;
        font-size: 7px;
        letter-spacing: .2em;
    }

    .engagements-presence-heading h2 {
        max-width: 90vw;
        font-size: clamp(55px, 16vw, 82px);
        line-height: .82;
        letter-spacing: -.045em;
    }

    .engagements-presence-heading h2 em {
        margin-left: .25em;
        letter-spacing: -.05em;
    }

    .engagements-presence-copy {
        max-width: 100%;
    }

    .engagements-presence-copy .engagements-presence-lead {
        margin-bottom: 25px;
        font-size: 24px;
        line-height: 1.22;
    }

    .engagements-presence-copy p {
        margin-bottom: 20px;
        font-size: 11px;
        line-height: 1.85;
    }

    .engagements-presence-footer {
        margin-top: 36px;
        gap: 11px;
        font-size: 7px;
        letter-spacing: .16em;
    }

    .engagements-presence-rule {
        width: 24px;
    }

    .engagements-presence-media::before {
        top: -10px;
        left: -10px;
        width: 44px;
        height: 44px;
    }

    .engagements-presence-image {
        width: 100%;
        height: 118vw;
        min-height: 430px;
        max-height: 590px;
        object-position: center center;
        transform: none;
    }

    .engagements-presence-media:hover .engagements-presence-image {
        transform: none;
    }

    .engagements-presence-caption {
        margin-top: 12px;
        font-size: 6px;
        letter-spacing: .16em;
    }
}

/* ---------------------------------------------------------
   SMALL MOBILE
   --------------------------------------------------------- */

@media (max-width: 420px) {

    .engagements-presence-inner {
        padding: 82px 7vw 90px;
    }

    .engagements-presence-intro {
        margin-bottom: 45px;
    }

    .engagements-presence-marker,
    .engagements-presence-place {
        font-size: 6px;
        letter-spacing: .16em;
    }

    .engagements-presence-grid {
        gap: 48px;
    }

    .engagements-presence-heading {
        margin-bottom: 31px;
    }

    .engagements-presence-eyebrow {
        margin-bottom: 17px;
    }

    .engagements-presence-heading h2 {
        font-size: clamp(51px, 15.8vw, 69px);
    }

    .engagements-presence-copy .engagements-presence-lead {
        font-size: 22px;
    }

    .engagements-presence-copy p {
        font-size: 10.5px;
        line-height: 1.82;
    }

    .engagements-presence-footer {
        margin-top: 31px;
        font-size: 6px;
    }

    .engagements-presence-image {
        min-height: 390px;
    }
}

/* ---------------------------------------------------------
   REDUCED MOTION
   --------------------------------------------------------- */

@media (prefers-reduced-motion: reduce) {

    .engagements-presence-image {
        transition: none;
        transform: none;
    }

    .engagements-presence-media:hover .engagements-presence-image {
        transform: none;
    }
}

/* =========================================================
   SECTION 03 — CULTURE & TRADITION
   ========================================================= */

.engagements-culture {
    position: relative;
    background: #e8e1d4;
    color: var(--obsidian);
    overflow: hidden;
}

.engagements-culture-inner {
    width: min(1400px, 100%);
    margin: 0 auto;
    padding: 120px 7vw 135px;
}

/* ---------------------------------------------------------
   SECTION INTRO
   --------------------------------------------------------- */

.engagements-culture-intro {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 76px;
    padding-bottom: 18px;
    border-bottom: 1px solid rgba(17, 17, 15, 0.14);
}

.engagements-culture-marker,
.engagements-culture-place {
    margin: 0;
    font-family: "DM Sans", sans-serif;
    font-size: 8px;
    font-weight: 500;
    line-height: 1.4;
    letter-spacing: 0.20em;
    text-transform: uppercase;
}

.engagements-culture-marker {
    color: var(--obsidian);
}

.engagements-culture-place {
    color: rgba(17, 17, 15, 0.48);
}

/* ---------------------------------------------------------
   MAIN GRID
   --------------------------------------------------------- */

.engagements-culture-grid {
    display: grid;
    grid-template-columns: minmax(0, 0.92fr) minmax(420px, 0.78fr);
    gap: clamp(70px, 9vw, 150px);
    align-items: start;
}

/* ---------------------------------------------------------
   CONTENT
   --------------------------------------------------------- */

.engagements-culture-content {
    padding-top: 8px;
}

.engagements-culture-heading {
    max-width: 700px;
}

.engagements-culture-eyebrow {
    margin: 0 0 25px;
    font-family: "DM Sans", sans-serif;
    font-size: 8px;
    font-weight: 500;
    line-height: 1.4;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: rgba(17, 17, 15, 0.50);
}

.engagements-culture-heading h2 {
    margin: 0;
    font-family: "Cormorant Garamond", serif;
    font-size: clamp(64px, 7.5vw, 112px);
    font-weight: 300;
    line-height: 0.82;
    letter-spacing: -0.055em;
    color: var(--obsidian);
}

.engagements-culture-heading h2 em {
    display: inline-block;
    margin-left: 0.52em;
    font-style: italic;
    font-weight: 300;
    letter-spacing: -0.06em;
    color: #8c6f35;
}

/* ---------------------------------------------------------
   COPY
   --------------------------------------------------------- */

.engagements-culture-copy {
    max-width: 610px;
    margin-top: 54px;
}

.engagements-culture-copy p {
    margin: 0 0 22px;
    font-family: "DM Sans", sans-serif;
    font-size: 13px;
    font-weight: 300;
    line-height: 1.95;
    letter-spacing: 0.005em;
    color: rgba(17, 17, 15, 0.66);
}

.engagements-culture-copy p:last-child {
    margin-bottom: 0;
}

.engagements-culture-copy .engagements-culture-lead {
    margin-bottom: 28px;
    font-family: "Cormorant Garamond", serif;
    font-size: clamp(24px, 2.15vw, 31px);
    font-weight: 400;
    line-height: 1.18;
    letter-spacing: -0.015em;
    color: var(--obsidian);
}

/* ---------------------------------------------------------
   CULTURAL PRINCIPLES
   --------------------------------------------------------- */

.engagements-culture-principles {
    margin-top: 58px;
    border-top: 1px solid rgba(17, 17, 15, 0.16);
}

.engagements-culture-principle {
    display: grid;
    grid-template-columns: 34px 130px minmax(0, 1fr);
    column-gap: 18px;
    align-items: baseline;
    padding: 19px 0;
    border-bottom: 1px solid rgba(17, 17, 15, 0.12);
}

.engagements-culture-principle-number {
    font-family: "DM Sans", sans-serif;
    font-size: 7px;
    font-weight: 500;
    line-height: 1.4;
    letter-spacing: 0.14em;
    color: #8c6f35;
}

.engagements-culture-principle-title {
    font-family: "Cormorant Garamond", serif;
    font-size: 22px;
    font-weight: 400;
    line-height: 1;
    letter-spacing: -0.015em;
    color: var(--obsidian);
}

.engagements-culture-principle-text {
    font-family: "DM Sans", sans-serif;
    font-size: 9px;
    font-weight: 300;
    line-height: 1.65;
    letter-spacing: 0.015em;
    color: rgba(17, 17, 15, 0.52);
}

/* ---------------------------------------------------------
   FOOTER LINE
   --------------------------------------------------------- */

.engagements-culture-footer {
    display: flex;
    align-items: center;
    gap: 13px;
    margin-top: 46px;
    font-family: "DM Sans", sans-serif;
    font-size: 8px;
    font-weight: 500;
    line-height: 1.4;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: rgba(17, 17, 15, 0.46);
}

.engagements-culture-rule {
    width: 34px;
    height: 1px;
    flex: 0 0 auto;
    background: rgba(140, 111, 53, 0.55);
}

/* ---------------------------------------------------------
   IMAGE
   --------------------------------------------------------- */

.engagements-culture-media {
    position: relative;
    margin: 0;
    padding: 0;
}

.engagements-culture-image {
    display: block;
    width: 100%;
    height: clamp(540px, 48vw, 720px);
    object-fit: cover;
    object-position: center center;
    filter: saturate(0.88);
    transform: scale(1.005);
    transition: transform 1.4s var(--ease);
}

.engagements-culture-media:hover .engagements-culture-image {
    transform: scale(1.025);
}

.engagements-culture-caption {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-top: 13px;
    padding: 0 2px;
    font-family: "DM Sans", sans-serif;
    font-size: 7px;
    font-weight: 500;
    line-height: 1.4;
    letter-spacing: 0.17em;
    text-transform: uppercase;
    color: rgba(17, 17, 15, 0.44);
}

.engagements-culture-caption span:first-child {
    color: #8c6f35;
}

/* ---------------------------------------------------------
   TABLET
   --------------------------------------------------------- */

@media (max-width: 1050px) {

    .engagements-culture-inner {
        padding: 105px 6vw 115px;
    }

    .engagements-culture-grid {
        grid-template-columns: minmax(0, 0.92fr) minmax(330px, 0.78fr);
        gap: 55px;
    }

    .engagements-culture-heading h2 {
        font-size: clamp(58px, 8vw, 88px);
    }

    .engagements-culture-copy {
        margin-top: 46px;
    }

    .engagements-culture-principle {
        grid-template-columns: 30px 105px minmax(0, 1fr);
        column-gap: 13px;
    }

    .engagements-culture-image {
        height: 610px;
    }
}

/* ---------------------------------------------------------
   MOBILE
   Content first → image second
   --------------------------------------------------------- */

@media (max-width: 800px) {

    .engagements-culture-inner {
        padding: 82px 6.5vw 92px;
    }

    .engagements-culture-intro {
        margin-bottom: 54px;
        padding-bottom: 15px;
    }

    .engagements-culture-marker,
    .engagements-culture-place {
        font-size: 7px;
        letter-spacing: 0.16em;
    }

    .engagements-culture-grid {
        display: flex;
        flex-direction: column;
        gap: 56px;
    }

    .engagements-culture-content {
        order: 1;
        padding-top: 0;
    }

    .engagements-culture-media {
        order: 2;
        width: 100%;
    }

    .engagements-culture-eyebrow {
        margin-bottom: 20px;
        font-size: 7px;
        letter-spacing: 0.18em;
    }

    .engagements-culture-heading h2 {
        font-size: clamp(60px, 17vw, 86px);
        line-height: 0.80;
    }

    .engagements-culture-heading h2 em {
        margin-left: 0.30em;
    }

    .engagements-culture-copy {
        margin-top: 37px;
        max-width: 100%;
    }

    .engagements-culture-copy p {
        margin-bottom: 19px;
        font-size: 11px;
        line-height: 1.82;
    }

    .engagements-culture-copy .engagements-culture-lead {
        margin-bottom: 25px;
        font-size: 24px;
        line-height: 1.17;
    }

    .engagements-culture-principles {
        margin-top: 42px;
    }

    .engagements-culture-principle {
        grid-template-columns: 25px minmax(0, 1fr);
        column-gap: 13px;
        row-gap: 7px;
        padding: 17px 0;
    }

    .engagements-culture-principle-number {
        grid-column: 1;
        grid-row: 1 / span 2;
        padding-top: 3px;
    }

    .engagements-culture-principle-title {
        grid-column: 2;
        grid-row: 1;
        font-size: 21px;
    }

    .engagements-culture-principle-text {
        grid-column: 2;
        grid-row: 2;
        font-size: 9px;
        line-height: 1.65;
    }

    .engagements-culture-footer {
        margin-top: 36px;
        font-size: 7px;
        letter-spacing: 0.15em;
    }

    .engagements-culture-rule {
        width: 25px;
    }

    .engagements-culture-image {
        height: min(118vw, 620px);
        object-position: center center;
        transform: none;
    }

    .engagements-culture-media:hover .engagements-culture-image {
        transform: none;
    }

    .engagements-culture-caption {
        margin-top: 11px;
        font-size: 6.5px;
        letter-spacing: 0.14em;
    }
}

/* ---------------------------------------------------------
   SMALL MOBILE
   --------------------------------------------------------- */

@media (max-width: 420px) {

    .engagements-culture-inner {
        padding: 72px 7vw 82px;
    }

    .engagements-culture-intro {
        margin-bottom: 47px;
    }

    .engagements-culture-place {
        max-width: 38%;
        text-align: right;
        line-height: 1.55;
    }

    .engagements-culture-heading h2 {
        font-size: clamp(53px, 17vw, 76px);
    }

    .engagements-culture-copy {
        margin-top: 32px;
    }

    .engagements-culture-copy .engagements-culture-lead {
        font-size: 22px;
    }

    .engagements-culture-copy p {
        font-size: 10.5px;
        line-height: 1.8;
    }

    .engagements-culture-principles {
        margin-top: 36px;
    }

    .engagements-culture-principle-title {
        font-size: 20px;
    }

    .engagements-culture-principle-text {
        font-size: 8.5px;
    }

    .engagements-culture-footer {
        flex-wrap: wrap;
        row-gap: 8px;
    }

    .engagements-culture-image {
        height: 112vw;
        max-height: 500px;
    }
}

/* ---------------------------------------------------------
   REDUCED MOTION
   --------------------------------------------------------- */

@media (prefers-reduced-motion: reduce) {

    .engagements-culture-image {
        transition: none;
    }

    .engagements-culture-media:hover .engagements-culture-image {
        transform: none;
    }
}

/* =========================================================
   SECTION 04 — COMMUNITY & SERVICE
   ========================================================= */

.engagements-community {
    position: relative;
    background: var(--obsidian);
    color: var(--ivory);
    overflow: hidden;
}

.engagements-community-inner {
    width: min(1400px, 100%);
    margin: 0 auto;
    padding: 120px 7vw 135px;
}

/* ---------------------------------------------------------
   SECTION INTRO
   --------------------------------------------------------- */

.engagements-community-intro {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 76px;
    padding-bottom: 18px;
    border-bottom: 1px solid rgba(244, 240, 231, 0.14);
}

.engagements-community-marker,
.engagements-community-place {
    margin: 0;
    font-family: "DM Sans", sans-serif;
    font-size: 8px;
    font-weight: 500;
    line-height: 1.4;
    letter-spacing: 0.20em;
    text-transform: uppercase;
}

.engagements-community-marker {
    color: var(--gold);
}

.engagements-community-place {
    color: rgba(244, 240, 231, 0.42);
}

/* ---------------------------------------------------------
   MAIN GRID
   --------------------------------------------------------- */

.engagements-community-grid {
    display: grid;
    grid-template-columns: minmax(0, 0.92fr) minmax(420px, 0.78fr);
    gap: clamp(70px, 9vw, 150px);
    align-items: start;
}

/* ---------------------------------------------------------
   CONTENT
   --------------------------------------------------------- */

.engagements-community-content {
    padding-top: 8px;
}

.engagements-community-heading {
    max-width: 700px;
}

.engagements-community-eyebrow {
    margin: 0 0 25px;
    font-family: "DM Sans", sans-serif;
    font-size: 8px;
    font-weight: 500;
    line-height: 1.4;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: rgba(244, 240, 231, 0.48);
}

.engagements-community-heading h2 {
    margin: 0;
    font-family: "Cormorant Garamond", serif;
    font-size: clamp(64px, 7.5vw, 112px);
    font-weight: 300;
    line-height: 0.82;
    letter-spacing: -0.055em;
    color: var(--ivory);
}

.engagements-community-heading h2 em {
    display: inline-block;
    margin-left: 0.52em;
    font-style: italic;
    font-weight: 300;
    letter-spacing: -0.06em;
    color: var(--gold);
}

/* ---------------------------------------------------------
   COPY
   --------------------------------------------------------- */

.engagements-community-copy {
    max-width: 610px;
    margin-top: 54px;
}

.engagements-community-copy p {
    margin: 0 0 22px;
    font-family: "DM Sans", sans-serif;
    font-size: 13px;
    font-weight: 300;
    line-height: 1.95;
    letter-spacing: 0.005em;
    color: rgba(244, 240, 231, 0.64);
}

.engagements-community-copy p:last-child {
    margin-bottom: 0;
}

.engagements-community-copy .engagements-community-lead {
    margin-bottom: 28px;
    font-family: "Cormorant Garamond", serif;
    font-size: clamp(24px, 2.15vw, 31px);
    font-weight: 400;
    line-height: 1.18;
    letter-spacing: -0.015em;
    color: var(--ivory);
}

/* ---------------------------------------------------------
   COMMUNITY MOMENTS
   --------------------------------------------------------- */

.engagements-community-moments {
    margin-top: 58px;
    border-top: 1px solid rgba(244, 240, 231, 0.16);
}

.engagements-community-moment {
    display: grid;
    grid-template-columns: 34px 130px minmax(0, 1fr);
    column-gap: 18px;
    align-items: baseline;
    padding: 19px 0;
    border-bottom: 1px solid rgba(244, 240, 231, 0.11);
}

.engagements-community-moment-number {
    font-family: "DM Sans", sans-serif;
    font-size: 7px;
    font-weight: 500;
    line-height: 1.4;
    letter-spacing: 0.14em;
    color: var(--gold);
}

.engagements-community-moment-title {
    font-family: "Cormorant Garamond", serif;
    font-size: 22px;
    font-weight: 400;
    line-height: 1;
    letter-spacing: -0.015em;
    color: var(--ivory);
}

.engagements-community-moment-text {
    font-family: "DM Sans", sans-serif;
    font-size: 9px;
    font-weight: 300;
    line-height: 1.65;
    letter-spacing: 0.015em;
    color: rgba(244, 240, 231, 0.48);
}

/* ---------------------------------------------------------
   FOOTER LINE
   --------------------------------------------------------- */

.engagements-community-footer {
    display: flex;
    align-items: center;
    gap: 13px;
    margin-top: 46px;
    font-family: "DM Sans", sans-serif;
    font-size: 8px;
    font-weight: 500;
    line-height: 1.4;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: rgba(244, 240, 231, 0.42);
}

.engagements-community-rule {
    width: 34px;
    height: 1px;
    flex: 0 0 auto;
    background: var(--gold-soft);
}

/* ---------------------------------------------------------
   IMAGE
   --------------------------------------------------------- */

.engagements-community-media {
    position: relative;
    margin: 0;
    padding: 0;
}

.engagements-community-image {
    display: block;
    width: 100%;
    height: clamp(540px, 48vw, 720px);
    object-fit: cover;
    object-position: center center;
    filter: saturate(0.88);
    transform: scale(1.005);
    transition: transform 1.4s var(--ease);
}

.engagements-community-media:hover .engagements-community-image {
    transform: scale(1.025);
}

.engagements-community-caption {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-top: 13px;
    padding: 0 2px;
    font-family: "DM Sans", sans-serif;
    font-size: 7px;
    font-weight: 500;
    line-height: 1.4;
    letter-spacing: 0.17em;
    text-transform: uppercase;
    color: rgba(244, 240, 231, 0.38);
}

.engagements-community-caption span:first-child {
    color: var(--gold);
}

/* ---------------------------------------------------------
   TABLET
   --------------------------------------------------------- */

@media (max-width: 1050px) {

    .engagements-community-inner {
        padding: 105px 6vw 115px;
    }

    .engagements-community-grid {
        grid-template-columns: minmax(0, 0.92fr) minmax(330px, 0.78fr);
        gap: 55px;
    }

    .engagements-community-heading h2 {
        font-size: clamp(58px, 8vw, 88px);
    }

    .engagements-community-copy {
        margin-top: 46px;
    }

    .engagements-community-moment {
        grid-template-columns: 30px 105px minmax(0, 1fr);
        column-gap: 13px;
    }

    .engagements-community-image {
        height: 610px;
    }
}

/* ---------------------------------------------------------
   MOBILE
   Content first → image second
   --------------------------------------------------------- */

@media (max-width: 800px) {

    .engagements-community-inner {
        padding: 82px 6.5vw 92px;
    }

    .engagements-community-intro {
        margin-bottom: 54px;
        padding-bottom: 15px;
    }

    .engagements-community-marker,
    .engagements-community-place {
        font-size: 7px;
        letter-spacing: 0.16em;
    }

    .engagements-community-grid {
        display: flex;
        flex-direction: column;
        gap: 56px;
    }

    .engagements-community-content {
        order: 1;
        padding-top: 0;
    }

    .engagements-community-media {
        order: 2;
        width: 100%;
    }

    .engagements-community-eyebrow {
        margin-bottom: 20px;
        font-size: 7px;
        letter-spacing: 0.18em;
    }

    .engagements-community-heading h2 {
        font-size: clamp(60px, 17vw, 86px);
        line-height: 0.80;
    }

    .engagements-community-heading h2 em {
        margin-left: 0.30em;
    }

    .engagements-community-copy {
        margin-top: 37px;
        max-width: 100%;
    }

    .engagements-community-copy p {
        margin-bottom: 19px;
        font-size: 11px;
        line-height: 1.82;
    }

    .engagements-community-copy .engagements-community-lead {
        margin-bottom: 25px;
        font-size: 24px;
        line-height: 1.17;
    }

    .engagements-community-moments {
        margin-top: 42px;
    }

    .engagements-community-moment {
        grid-template-columns: 25px minmax(0, 1fr);
        column-gap: 13px;
        row-gap: 7px;
        padding: 17px 0;
    }

    .engagements-community-moment-number {
        grid-column: 1;
        grid-row: 1 / span 2;
        padding-top: 3px;
    }

    .engagements-community-moment-title {
        grid-column: 2;
        grid-row: 1;
        font-size: 21px;
    }

    .engagements-community-moment-text {
        grid-column: 2;
        grid-row: 2;
        font-size: 9px;
        line-height: 1.65;
    }

    .engagements-community-footer {
        margin-top: 36px;
        font-size: 7px;
        letter-spacing: 0.15em;
    }

    .engagements-community-rule {
        width: 25px;
    }

    .engagements-community-image {
        height: min(118vw, 620px);
        object-position: center center;
        transform: none;
    }

    .engagements-community-media:hover .engagements-community-image {
        transform: none;
    }

    .engagements-community-caption {
        margin-top: 11px;
        font-size: 6.5px;
        letter-spacing: 0.14em;
    }
}

/* ---------------------------------------------------------
   SMALL MOBILE
   --------------------------------------------------------- */

@media (max-width: 420px) {

    .engagements-community-inner {
        padding: 72px 7vw 82px;
    }

    .engagements-community-intro {
        margin-bottom: 47px;
    }

    .engagements-community-place {
        max-width: 38%;
        text-align: right;
        line-height: 1.55;
    }

    .engagements-community-heading h2 {
        font-size: clamp(53px, 17vw, 76px);
    }

    .engagements-community-copy {
        margin-top: 32px;
    }

    .engagements-community-copy .engagements-community-lead {
        font-size: 22px;
    }

    .engagements-community-copy p {
        font-size: 10.5px;
        line-height: 1.8;
    }

    .engagements-community-moments {
        margin-top: 36px;
    }

    .engagements-community-moment-title {
        font-size: 20px;
    }

    .engagements-community-moment-text {
        font-size: 8.5px;
    }

    .engagements-community-footer {
        flex-wrap: wrap;
        row-gap: 8px;
    }

    .engagements-community-image {
        height: 112vw;
        max-height: 500px;
    }
}

/* ---------------------------------------------------------
   REDUCED MOTION
   --------------------------------------------------------- */

@media (prefers-reduced-motion: reduce) {

    .engagements-community-image {
        transition: none;
    }

    .engagements-community-media:hover .engagements-community-image {
        transform: none;
    }
}

/* =========================================================
   SECTION 05 — DIASPORA & CULTURAL BRIDGE
   ========================================================= */

.engagements-diaspora {
    position: relative;
    background: var(--ivory);
    color: var(--obsidian);
    overflow: hidden;
}

.engagements-diaspora-inner {
    width: min(1400px, 100%);
    margin: 0 auto;
    padding: 120px 7vw 135px;
}

/* ---------------------------------------------------------
   SECTION INTRO
   --------------------------------------------------------- */

.engagements-diaspora-intro {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 76px;
    padding-bottom: 18px;
    border-bottom: 1px solid rgba(17, 17, 15, 0.14);
}

.engagements-diaspora-marker,
.engagements-diaspora-place {
    margin: 0;
    font-family: "DM Sans", sans-serif;
    font-size: 8px;
    font-weight: 500;
    line-height: 1.4;
    letter-spacing: 0.20em;
    text-transform: uppercase;
}

.engagements-diaspora-marker {
    color: var(--obsidian);
}

.engagements-diaspora-place {
    color: rgba(17, 17, 15, 0.48);
}

/* ---------------------------------------------------------
   MAIN GRID
   --------------------------------------------------------- */

.engagements-diaspora-grid {
    display: grid;
    grid-template-columns: minmax(0, 0.92fr) minmax(420px, 0.78fr);
    gap: clamp(70px, 9vw, 150px);
    align-items: start;
}

/* ---------------------------------------------------------
   CONTENT
   --------------------------------------------------------- */

.engagements-diaspora-content {
    padding-top: 8px;
}

.engagements-diaspora-heading {
    max-width: 720px;
}

.engagements-diaspora-eyebrow {
    margin: 0 0 25px;
    font-family: "DM Sans", sans-serif;
    font-size: 8px;
    font-weight: 500;
    line-height: 1.4;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: rgba(17, 17, 15, 0.50);
}

.engagements-diaspora-heading h2 {
    margin: 0;
    font-family: "Cormorant Garamond", serif;
    font-size: clamp(62px, 7.25vw, 108px);
    font-weight: 300;
    line-height: 0.82;
    letter-spacing: -0.055em;
    color: var(--obsidian);
}

.engagements-diaspora-heading h2 em {
    display: inline-block;
    margin-left: 0.48em;
    font-style: italic;
    font-weight: 300;
    letter-spacing: -0.06em;
    color: #8c6f35;
}

/* ---------------------------------------------------------
   COPY
   --------------------------------------------------------- */

.engagements-diaspora-copy {
    max-width: 610px;
    margin-top: 54px;
}

.engagements-diaspora-copy p {
    margin: 0 0 22px;
    font-family: "DM Sans", sans-serif;
    font-size: 13px;
    font-weight: 300;
    line-height: 1.95;
    letter-spacing: 0.005em;
    color: rgba(17, 17, 15, 0.65);
}

.engagements-diaspora-copy p:last-child {
    margin-bottom: 0;
}

.engagements-diaspora-copy .engagements-diaspora-lead {
    margin-bottom: 28px;
    font-family: "Cormorant Garamond", serif;
    font-size: clamp(24px, 2.15vw, 31px);
    font-weight: 400;
    line-height: 1.18;
    letter-spacing: -0.015em;
    color: var(--obsidian);
}

/* ---------------------------------------------------------
   CULTURAL BRIDGE PRINCIPLES
   --------------------------------------------------------- */

.engagements-diaspora-principles {
    margin-top: 58px;
    border-top: 1px solid rgba(17, 17, 15, 0.16);
}

.engagements-diaspora-principle {
    display: grid;
    grid-template-columns: 34px 130px minmax(0, 1fr);
    column-gap: 18px;
    align-items: baseline;
    padding: 19px 0;
    border-bottom: 1px solid rgba(17, 17, 15, 0.12);
}

.engagements-diaspora-principle-number {
    font-family: "DM Sans", sans-serif;
    font-size: 7px;
    font-weight: 500;
    line-height: 1.4;
    letter-spacing: 0.14em;
    color: #8c6f35;
}

.engagements-diaspora-principle-title {
    font-family: "Cormorant Garamond", serif;
    font-size: 22px;
    font-weight: 400;
    line-height: 1;
    letter-spacing: -0.015em;
    color: var(--obsidian);
}

.engagements-diaspora-principle-text {
    font-family: "DM Sans", sans-serif;
    font-size: 9px;
    font-weight: 300;
    line-height: 1.65;
    letter-spacing: 0.015em;
    color: rgba(17, 17, 15, 0.52);
}

/* ---------------------------------------------------------
   FOOTER LINE
   --------------------------------------------------------- */

.engagements-diaspora-footer {
    display: flex;
    align-items: center;
    gap: 13px;
    margin-top: 46px;
    font-family: "DM Sans", sans-serif;
    font-size: 8px;
    font-weight: 500;
    line-height: 1.4;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: rgba(17, 17, 15, 0.46);
}

.engagements-diaspora-rule {
    width: 34px;
    height: 1px;
    flex: 0 0 auto;
    background: rgba(140, 111, 53, 0.55);
}

/* ---------------------------------------------------------
   IMAGE
   --------------------------------------------------------- */

.engagements-diaspora-media {
    position: relative;
    margin: 0;
    padding: 0;
}

.engagements-diaspora-image {
    display: block;
    width: 100%;
    height: clamp(540px, 48vw, 720px);
    object-fit: cover;
    object-position: center center;
    filter: saturate(0.88);
    transform: scale(1.005);
    transition: transform 1.4s var(--ease);
}

.engagements-diaspora-media:hover .engagements-diaspora-image {
    transform: scale(1.025);
}

.engagements-diaspora-caption {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-top: 13px;
    padding: 0 2px;
    font-family: "DM Sans", sans-serif;
    font-size: 7px;
    font-weight: 500;
    line-height: 1.4;
    letter-spacing: 0.17em;
    text-transform: uppercase;
    color: rgba(17, 17, 15, 0.44);
}

.engagements-diaspora-caption span:first-child {
    color: #8c6f35;
}

/* ---------------------------------------------------------
   TABLET
   --------------------------------------------------------- */

@media (max-width: 1050px) {

    .engagements-diaspora-inner {
        padding: 105px 6vw 115px;
    }

    .engagements-diaspora-grid {
        grid-template-columns: minmax(0, 0.92fr) minmax(330px, 0.78fr);
        gap: 55px;
    }

    .engagements-diaspora-heading h2 {
        font-size: clamp(57px, 8vw, 88px);
    }

    .engagements-diaspora-copy {
        margin-top: 46px;
    }

    .engagements-diaspora-principle {
        grid-template-columns: 30px 105px minmax(0, 1fr);
        column-gap: 13px;
    }

    .engagements-diaspora-image {
        height: 610px;
    }
}

/* ---------------------------------------------------------
   MOBILE
   Content first → image second
   --------------------------------------------------------- */

@media (max-width: 800px) {

    .engagements-diaspora-inner {
        padding: 82px 6.5vw 92px;
    }

    .engagements-diaspora-intro {
        margin-bottom: 54px;
        padding-bottom: 15px;
    }

    .engagements-diaspora-marker,
    .engagements-diaspora-place {
        font-size: 7px;
        letter-spacing: 0.16em;
    }

    .engagements-diaspora-grid {
        display: flex;
        flex-direction: column;
        gap: 56px;
    }

    .engagements-diaspora-content {
        order: 1;
        padding-top: 0;
    }

    .engagements-diaspora-media {
        order: 2;
        width: 100%;
    }

    .engagements-diaspora-eyebrow {
        margin-bottom: 20px;
        font-size: 7px;
        letter-spacing: 0.18em;
    }

    .engagements-diaspora-heading h2 {
        font-size: clamp(58px, 16.5vw, 84px);
        line-height: 0.80;
    }

    .engagements-diaspora-heading h2 em {
        margin-left: 0.30em;
    }

    .engagements-diaspora-copy {
        margin-top: 37px;
        max-width: 100%;
    }

    .engagements-diaspora-copy p {
        margin-bottom: 19px;
        font-size: 11px;
        line-height: 1.82;
    }

    .engagements-diaspora-copy .engagements-diaspora-lead {
        margin-bottom: 25px;
        font-size: 24px;
        line-height: 1.17;
    }

    .engagements-diaspora-principles {
        margin-top: 42px;
    }

    .engagements-diaspora-principle {
        grid-template-columns: 25px minmax(0, 1fr);
        column-gap: 13px;
        row-gap: 7px;
        padding: 17px 0;
    }

    .engagements-diaspora-principle-number {
        grid-column: 1;
        grid-row: 1 / span 2;
        padding-top: 3px;
    }

    .engagements-diaspora-principle-title {
        grid-column: 2;
        grid-row: 1;
        font-size: 21px;
    }

    .engagements-diaspora-principle-text {
        grid-column: 2;
        grid-row: 2;
        font-size: 9px;
        line-height: 1.65;
    }

    .engagements-diaspora-footer {
        margin-top: 36px;
        font-size: 7px;
        letter-spacing: 0.15em;
    }

    .engagements-diaspora-rule {
        width: 25px;
    }

    .engagements-diaspora-image {
        height: min(118vw, 620px);
        object-position: center center;
        transform: none;
    }

    .engagements-diaspora-media:hover .engagements-diaspora-image {
        transform: none;
    }

    .engagements-diaspora-caption {
        margin-top: 11px;
        font-size: 6.5px;
        letter-spacing: 0.14em;
    }
}

/* ---------------------------------------------------------
   SMALL MOBILE
   --------------------------------------------------------- */

@media (max-width: 420px) {

    .engagements-diaspora-inner {
        padding: 72px 7vw 82px;
    }

    .engagements-diaspora-intro {
        margin-bottom: 47px;
    }

    .engagements-diaspora-place {
        max-width: 40%;
        text-align: right;
        line-height: 1.55;
    }

    .engagements-diaspora-heading h2 {
        font-size: clamp(51px, 16.5vw, 74px);
    }

    .engagements-diaspora-copy {
        margin-top: 32px;
    }

    .engagements-diaspora-copy .engagements-diaspora-lead {
        font-size: 22px;
    }

    .engagements-diaspora-copy p {
        font-size: 10.5px;
        line-height: 1.8;
    }

    .engagements-diaspora-principles {
        margin-top: 36px;
    }

    .engagements-diaspora-principle-title {
        font-size: 20px;
    }

    .engagements-diaspora-principle-text {
        font-size: 8.5px;
    }

    .engagements-diaspora-footer {
        flex-wrap: wrap;
        row-gap: 8px;
    }

    .engagements-diaspora-image {
        height: 112vw;
        max-height: 500px;
    }
}

/* ---------------------------------------------------------
   REDUCED MOTION
   --------------------------------------------------------- */

@media (prefers-reduced-motion: reduce) {

    .engagements-diaspora-image {
        transition: none;
    }

    .engagements-diaspora-media:hover .engagements-diaspora-image {
        transform: none;
    }
}

/* =========================================================
   SECTION 06 — CLOSING / ROYAL ENGAGEMENTS
   ========================================================= */

.engagements-closing {
    position: relative;
    background: var(--obsidian);
    color: var(--ivory);
    overflow: hidden;
}

.engagements-closing-inner {
    width: min(1400px, 100%);
    margin: 0 auto;
    padding: 125px 7vw 110px;
}

/* ---------------------------------------------------------
   TOP META
   --------------------------------------------------------- */

.engagements-closing-top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-bottom: 18px;
    border-bottom: 1px solid rgba(244, 240, 231, 0.14);
}

.engagements-closing-marker,
.engagements-closing-place {
    margin: 0;
    font-family: "DM Sans", sans-serif;
    font-size: 8px;
    font-weight: 500;
    line-height: 1.4;
    letter-spacing: 0.20em;
    text-transform: uppercase;
}

.engagements-closing-marker {
    color: var(--gold);
}

.engagements-closing-place {
    color: rgba(244, 240, 231, 0.40);
}

/* ---------------------------------------------------------
   MAIN
   --------------------------------------------------------- */

.engagements-closing-main {
    display: grid;
    grid-template-columns: minmax(0, 1.05fr) minmax(320px, 0.65fr);
    gap: clamp(60px, 10vw, 160px);
    align-items: end;
    padding: 105px 0 100px;
}

.engagements-closing-heading {
    max-width: 800px;
}

.engagements-closing-eyebrow {
    margin: 0 0 25px;
    font-family: "DM Sans", sans-serif;
    font-size: 8px;
    font-weight: 500;
    line-height: 1.4;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: rgba(244, 240, 231, 0.46);
}

.engagements-closing-heading h2 {
    margin: 0;
    font-family: "Cormorant Garamond", serif;
    font-size: clamp(68px, 8.3vw, 124px);
    font-weight: 300;
    line-height: 0.80;
    letter-spacing: -0.06em;
    color: var(--ivory);
}

.engagements-closing-heading h2 em {
    display: inline-block;
    margin-left: 0.48em;
    font-style: italic;
    font-weight: 300;
    letter-spacing: -0.065em;
    color: var(--gold);
}

/* ---------------------------------------------------------
   CLOSING COPY
   --------------------------------------------------------- */

.engagements-closing-content {
    max-width: 500px;
    padding-bottom: 5px;
}

.engagements-closing-content p {
    margin: 0 0 21px;
    font-family: "DM Sans", sans-serif;
    font-size: 12px;
    font-weight: 300;
    line-height: 1.95;
    letter-spacing: 0.005em;
    color: rgba(244, 240, 231, 0.60);
}

.engagements-closing-content p:last-child {
    margin-bottom: 0;
}

.engagements-closing-content .engagements-closing-lead {
    margin-bottom: 28px;
    font-family: "Cormorant Garamond", serif;
    font-size: clamp(25px, 2.25vw, 33px);
    font-weight: 400;
    line-height: 1.18;
    letter-spacing: -0.015em;
    color: var(--ivory);
}

/* ---------------------------------------------------------
   STATEMENT
   --------------------------------------------------------- */

.engagements-closing-statement {
    display: grid;
    grid-template-columns: 42px minmax(0, 1fr);
    column-gap: 25px;
    align-items: start;
    max-width: 760px;
    margin-left: auto;
    padding: 42px 0 48px;
    border-top: 1px solid rgba(244, 240, 231, 0.16);
    border-bottom: 1px solid rgba(244, 240, 231, 0.16);
}

.engagements-closing-statement-line {
    display: block;
    width: 30px;
    height: 1px;
    margin-top: 17px;
    background: var(--gold-soft);
}

.engagements-closing-statement p {
    margin: 0;
    font-family: "Cormorant Garamond", serif;
    font-size: clamp(30px, 3.2vw, 47px);
    font-weight: 300;
    line-height: 1.08;
    letter-spacing: -0.025em;
    color: var(--ivory);
}

/* ---------------------------------------------------------
   FOOTER
   --------------------------------------------------------- */

.engagements-closing-footer {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 50px;
    padding-top: 70px;
}

.engagements-closing-signature {
    display: flex;
    flex-direction: column;
    gap: 10px;
    max-width: 520px;
}

.engagements-closing-signature-name {
    font-family: "Cormorant Garamond", serif;
    font-size: 26px;
    font-weight: 400;
    line-height: 1;
    letter-spacing: -0.015em;
    color: var(--ivory);
}

.engagements-closing-signature-title {
    font-family: "DM Sans", sans-serif;
    font-size: 8px;
    font-weight: 400;
    line-height: 1.8;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: rgba(244, 240, 231, 0.40);
}

/* ---------------------------------------------------------
   CTA
   --------------------------------------------------------- */

.engagements-closing-cta {
    display: inline-flex;
    align-items: center;
    gap: 20px;
    flex: 0 0 auto;
    padding: 15px 0;
    border-bottom: 1px solid rgba(213, 182, 116, 0.60);
    color: var(--ivory);
    font-family: "DM Sans", sans-serif;
    font-size: 8px;
    font-weight: 500;
    line-height: 1.4;
    letter-spacing: 0.19em;
    text-transform: uppercase;
    text-decoration: none;
    transition:
        color 0.35s ease,
        border-color 0.35s ease;
}

.engagements-closing-cta-arrow {
    display: inline-flex;
    align-items: center;
    justify-content: center;

    width: 20px;
    height: 20px;

    color: var(--gold);
    transform: translateX(0);
    transition: transform 0.35s var(--ease);
}

.engagements-closing-cta-arrow svg {
    display: block;
    width: 20px;
    height: 20px;
    overflow: visible;
}

.engagements-closing-cta-arrow svg path {
    fill: none;
    stroke: currentColor;
    stroke-width: 1.35;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.engagements-closing-cta:hover {
    color: var(--gold);
    border-color: var(--gold);
}

.engagements-closing-cta:hover .engagements-closing-cta-arrow {
    transform: translateX(5px);
}

/* ---------------------------------------------------------
   TABLET
   --------------------------------------------------------- */

@media (max-width: 1050px) {

    .engagements-closing-inner {
        padding: 105px 6vw 95px;
    }

    .engagements-closing-main {
        grid-template-columns: minmax(0, 1fr) minmax(280px, 0.68fr);
        gap: 55px;
        padding: 90px 0 85px;
    }

    .engagements-closing-heading h2 {
        font-size: clamp(60px, 8.5vw, 94px);
    }

    .engagements-closing-content .engagements-closing-lead {
        font-size: 27px;
    }

    .engagements-closing-statement {
        max-width: 680px;
    }

    .engagements-closing-footer {
        padding-top: 60px;
    }
}

/* ---------------------------------------------------------
   MOBILE
   --------------------------------------------------------- */

@media (max-width: 800px) {

    .engagements-closing-inner {
        padding: 82px 6.5vw 78px;
    }

    .engagements-closing-top {
        padding-bottom: 15px;
    }

    .engagements-closing-marker,
    .engagements-closing-place {
        font-size: 7px;
        letter-spacing: 0.16em;
    }

    .engagements-closing-place {
        max-width: 42%;
        text-align: right;
        line-height: 1.55;
    }

    .engagements-closing-main {
        display: flex;
        flex-direction: column;
        gap: 0;
        align-items: stretch;
        padding: 72px 0 68px;
    }

    .engagements-closing-heading {
        max-width: 100%;
    }

    .engagements-closing-eyebrow {
        margin-bottom: 20px;
        font-size: 7px;
        letter-spacing: 0.18em;
    }

    .engagements-closing-heading h2 {
        font-size: clamp(58px, 17vw, 88px);
        line-height: 0.80;
    }

    .engagements-closing-heading h2 em {
        margin-left: 0.30em;
    }

    .engagements-closing-content {
        max-width: 100%;
        margin-top: 38px;
    }

    .engagements-closing-content p {
        margin-bottom: 19px;
        font-size: 11px;
        line-height: 1.82;
    }

    .engagements-closing-content .engagements-closing-lead {
        margin-bottom: 25px;
        font-size: 24px;
        line-height: 1.17;
    }

    .engagements-closing-statement {
        grid-template-columns: 24px minmax(0, 1fr);
        column-gap: 15px;
        max-width: 100%;
        margin-left: 0;
        padding: 32px 0 38px;
    }

    .engagements-closing-statement-line {
        width: 22px;
        margin-top: 13px;
    }

    .engagements-closing-statement p {
        font-size: clamp(28px, 8.2vw, 39px);
        line-height: 1.08;
    }

    .engagements-closing-footer {
        flex-direction: column;
        align-items: flex-start;
        gap: 38px;
        padding-top: 50px;
    }

    .engagements-closing-signature {
        gap: 9px;
    }

    .engagements-closing-signature-name {
        font-size: 24px;
    }

    .engagements-closing-signature-title {
        font-size: 7px;
        line-height: 1.75;
        letter-spacing: 0.065em;
    }

    .engagements-closing-cta {
        gap: 17px;
        font-size: 7px;
        letter-spacing: 0.17em;
    }
}

/* ---------------------------------------------------------
   SMALL MOBILE
   --------------------------------------------------------- */

@media (max-width: 420px) {

    .engagements-closing-inner {
        padding: 72px 7vw 68px;
    }

    .engagements-closing-main {
        padding: 64px 0 58px;
    }

    .engagements-closing-heading h2 {
        font-size: clamp(52px, 17vw, 75px);
    }

    .engagements-closing-content {
        margin-top: 33px;
    }

    .engagements-closing-content .engagements-closing-lead {
        font-size: 22px;
    }

    .engagements-closing-content p {
        font-size: 10.5px;
        line-height: 1.8;
    }

    .engagements-closing-statement {
        padding: 29px 0 34px;
    }

    .engagements-closing-statement p {
        font-size: clamp(26px, 8vw, 35px);
    }

    .engagements-closing-footer {
        padding-top: 43px;
        gap: 34px;
    }

    .engagements-closing-signature-name {
        font-size: 22px;
    }

    .engagements-closing-signature-title {
        font-size: 6.5px;
    }
}

/* ---------------------------------------------------------
   REDUCED MOTION
   --------------------------------------------------------- */

@media (prefers-reduced-motion: reduce) {

    .engagements-closing-cta,
    .engagements-closing-cta-arrow {
        transition: none;
    }

    .engagements-closing-cta:hover .engagements-closing-cta-arrow {
        transform: none;
    }
}


/* =========================================================
   GLOBAL ROYAL FOOTER
========================================================== */

.royal-footer {
    position: relative;

    background: #0b0c0b;
    color: var(--ivory);

    padding: 95px 7vw 28px;

    border-top: 1px solid rgba(213,182,116,.18);
}

.royal-footer-inner {
    width: 100%;
    max-width: 1440px;
    margin: 0 auto;
}


/* =========================================================
   TOP
========================================================== */

.royal-footer-top {
    display: grid;
    grid-template-columns: 1.45fr .7fr .85fr;

    gap: 7vw;

    padding-bottom: 85px;
}


/* =========================================================
   IDENTITY
========================================================== */

.royal-footer-identity {
    display: flex;
    align-items: flex-start;

    gap: 35px;
}

.royal-footer-mark {
    position: relative;

    display: flex;
    align-items: center;
    justify-content: center;

    flex: 0 0 72px;

    width: 72px;
    height: 72px;

    margin-top: 7px;

    text-decoration: none;
}

.royal-footer-mark-ring {
    position: absolute;

    display: block;

    border: 1px solid rgba(213,182,116,.65);
    border-radius: 50%;
}

.ring-one {
    width: 72px;
    height: 72px;
}

.ring-two {
    width: 46px;
    height: 46px;
}

.ring-three {
    width: 21px;
    height: 21px;
}

.royal-footer-name {
    max-width: 420px;
}

.royal-footer-kicker {
    display: block;

    margin-bottom: 15px;

    font-family: "DM Sans", sans-serif;
    font-size: 8px;
    font-weight: 500;
    letter-spacing: .2em;
    text-transform: uppercase;

    color: var(--gold);
}

.royal-footer-name h2 {
    margin: 0;

    font-family: "Cormorant Garamond", serif;
    font-size: clamp(42px, 4vw, 64px);
    font-weight: 300;
    line-height: .82;
    letter-spacing: -.035em;
}

.royal-footer-name p {
    margin: 22px 0 0;

    font-family: "DM Sans", sans-serif;
    font-size: 9px;
    font-weight: 300;
    line-height: 1.75;
    letter-spacing: .08em;
    text-transform: uppercase;

    color: rgba(244,240,231,.38);
}


/* =========================================================
   NAVIGATION + CONTACT
========================================================== */

.royal-footer-navigation,
.royal-footer-contact {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.royal-footer-nav-title {
    display: block;

    margin-bottom: 25px;

    font-family: "DM Sans", sans-serif;
    font-size: 8px;
    font-weight: 500;
    letter-spacing: .19em;
    text-transform: uppercase;

    color: var(--gold);
}

.royal-footer-navigation a,
.royal-footer-contact a {
    display: inline-block;

    margin-bottom: 12px;

    font-family: "DM Sans", sans-serif;
    font-size: 10px;
    font-weight: 300;

    color: rgba(244,240,231,.58);

    text-decoration: none;

    transition:
        color .3s var(--ease),
        transform .3s var(--ease);
}

.royal-footer-navigation a:hover,
.royal-footer-contact a:hover {
    color: var(--gold);
    transform: translateX(4px);
}

.royal-footer-location {
    margin-top: 13px;

    font-family: "DM Sans", sans-serif;
    font-size: 8px;
    font-weight: 300;
    line-height: 1.7;
    letter-spacing: .12em;
    text-transform: uppercase;

    color: rgba(244,240,231,.28);
}


/* =========================================================
   MIDDLE
========================================================== */

.royal-footer-middle {
    display: grid;
    grid-template-columns: 1.45fr .55fr;

    gap: 7vw;

    padding: 35px 0 45px;

    border-top: 1px solid rgba(244,240,231,.1);
    border-bottom: 1px solid rgba(244,240,231,.1);
}

.royal-footer-motto > span,
.royal-footer-socials > span {
    display: block;

    margin-bottom: 14px;

    font-family: "DM Sans", sans-serif;
    font-size: 8px;
    font-weight: 500;
    letter-spacing: .18em;
    text-transform: uppercase;

    color: var(--gold);
}

.royal-footer-motto p {
    max-width: 650px;

    margin: 0;

    font-family: "Cormorant Garamond", serif;
    font-size: clamp(23px, 2.3vw, 32px);
    font-weight: 300;
    line-height: 1.15;

    color: rgba(244,240,231,.68);
}

.royal-footer-socials {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.royal-footer-socials a {
    display: flex;
    justify-content: space-between;

    width: 100%;
    max-width: 240px;

    padding: 10px 0;

    border-bottom: 1px solid rgba(244,240,231,.1);

    font-family: "DM Sans", sans-serif;
    font-size: 9px;
    font-weight: 500;
    letter-spacing: .14em;
    text-transform: uppercase;

    color: rgba(244,240,231,.5);

    text-decoration: none;

    transition: color .3s var(--ease);
}

.royal-footer-socials a:first-of-type {
    border-top: 1px solid rgba(244,240,231,.1);
}

.royal-footer-socials a:hover {
    color: var(--gold);
}


/* =========================================================
   BOTTOM
========================================================== */

.royal-footer-bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;

    gap: 30px;

    padding-top: 25px;

    font-family: "DM Sans", sans-serif;
    font-size: 7px;
    font-weight: 400;
    letter-spacing: .13em;
    text-transform: uppercase;

    color: rgba(244,240,231,.24);
}

.royal-footer-bottom a {
    display: inline-flex;
    align-items: center;
    gap: 10px;

    color: rgba(244,240,231,.38);

    text-decoration: none;

    transition: color .3s var(--ease);
}

.royal-footer-bottom a:hover {
    color: var(--gold);
}


/* =========================================================
   MOBILE
========================================================== */

@media screen and (max-width: 800px) {

    .royal-footer {
        padding: 75px 6.5vw 25px;
    }

    .royal-footer-top {
        display: block;

        padding-bottom: 60px;
    }

    .royal-footer-identity {
        gap: 22px;
    }

    .royal-footer-mark {
        flex: 0 0 55px;

        width: 55px;
        height: 55px;
    }

    .ring-one {
        width: 55px;
        height: 55px;
    }

    .ring-two {
        width: 36px;
        height: 36px;
    }

    .ring-three {
        width: 17px;
        height: 17px;
    }

    .royal-footer-name h2 {
        font-size: clamp(40px, 11vw, 55px);
    }

    .royal-footer-name p {
        max-width: 290px;

        font-size: 8px;
    }


    .royal-footer-navigation {
        margin-top: 55px;
    }

    .royal-footer-contact {
        margin-top: 48px;
    }


    .royal-footer-middle {
        display: block;

        padding: 35px 0 40px;
    }

    .royal-footer-motto {
        margin-bottom: 40px;
    }

    .royal-footer-motto p {
        font-size: 25px;
        line-height: 1.12;
    }

    .royal-footer-socials a {
        max-width: none;
    }


    .royal-footer-bottom {
        display: grid;
        grid-template-columns: 1fr 1fr;

        gap: 18px;

        line-height: 1.6;
    }

    .royal-footer-bottom > span:first-child {
        grid-column: span 2;
    }

    .royal-footer-bottom > span:nth-child(2) {
        text-align: left;
    }

    .royal-footer-bottom a {
        justify-self: end;
    }

}


/* =========================================================
   PREMIUM ROYAL FOOTER ARROWS
   Clean SVG system — no pseudo-elements
========================================================= */


/* ---------------------------------------------------------
   SOCIAL LINKS
--------------------------------------------------------- */

.royal-footer-socials a {
    display: flex;
    align-items: center;
    justify-content: space-between;

    width: 100%;
    max-width: 240px;

    padding: 12px 0;

    border-bottom: 1px solid rgba(244, 240, 231, .10);

    color: rgba(244, 240, 231, .50);

    text-decoration: none;

    transition:
        color .35s var(--ease),
        padding-left .35s var(--ease);
}


/* First social item gets a top rule */

.royal-footer-socials a:first-of-type {
    border-top: 1px solid rgba(244, 240, 231, .10);
}


/* Hover */

.royal-footer-socials a:hover {
    color: var(--gold);
    padding-left: 5px;
}


/* ---------------------------------------------------------
   EXTERNAL / SOCIAL ARROW
--------------------------------------------------------- */

.royal-footer-social-arrow {
    display: inline-flex;

    align-items: center;
    justify-content: center;

    width: 18px;
    height: 18px;

    flex: 0 0 18px;

    margin-left: 24px;

    color: currentColor;

    transition:
        transform .45s var(--ease),
        color .35s var(--ease);
}


/* Actual SVG */

.royal-footer-social-arrow svg {
    display: block;

    width: 18px;
    height: 18px;

    fill: none;

    stroke: currentColor;

    stroke-width: 1.15;

    stroke-linecap: round;
    stroke-linejoin: round;

    overflow: visible;
}


/* Refined diagonal movement */

.royal-footer-socials a:hover
.royal-footer-social-arrow {
    transform: translate(3px, -3px);
}


/* ---------------------------------------------------------
   BACK TO TOP
--------------------------------------------------------- */

.royal-footer-bottom a {
    display: inline-flex;

    align-items: center;

    gap: 11px;

    color: rgba(244, 240, 231, .38);

    text-decoration: none;

    transition:
        color .35s var(--ease);
}


/* Back-to-top arrow */

.royal-footer-bottom
.royal-footer-social-arrow {
    display: inline-flex;

    align-items: center;
    justify-content: center;

    width: 15px;
    height: 15px;

    flex: 0 0 15px;

    margin-left: 2px;

    color: currentColor;

    transition:
        transform .4s var(--ease),
        color .35s var(--ease);
}


/* Back-to-top SVG */

.royal-footer-bottom
.royal-footer-social-arrow svg {
    display: block;

    width: 15px;
    height: 15px;

    fill: none;

    stroke: currentColor;

    stroke-width: 1.15;

    stroke-linecap: round;
    stroke-linejoin: round;
}


/* Hover */

.royal-footer-bottom a:hover {
    color: var(--gold);
}

.royal-footer-bottom a:hover
.royal-footer-social-arrow {
    transform: translateY(-3px);
}


/* ---------------------------------------------------------
   MOBILE
--------------------------------------------------------- */

@media screen and (max-width: 800px) {

    .royal-footer-socials a {
        max-width: none;
        padding: 13px 0;
    }

    .royal-footer-social-arrow {
        width: 17px;
        height: 17px;

        flex-basis: 17px;

        margin-left: 20px;
    }

    .royal-footer-social-arrow svg {
        width: 17px;
        height: 17px;
    }

    .royal-footer-bottom
    .royal-footer-social-arrow {
        width: 14px;
        height: 14px;

        flex-basis: 14px;
    }

    .royal-footer-bottom
    .royal-footer-social-arrow svg {
        width: 14px;
        height: 14px;
    }

}


/* =========================================================
   GLOBAL ROYAL FOOTER — LEGAL LINKS + PRIVACY NOTICE
   Matches approved Home / Foundation / Her Story system
========================================================= */

.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);
}


/* =========================================================
   MOBILE LEGAL FOOTER
   Approved arrangement used across the royal site
========================================================= */

@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-legal-links .royal-footer-cookie-preferences:hover,
    .royal-footer-bottom .royal-footer-legal-links .royal-footer-cookie-preferences:focus,
    .royal-footer-bottom .royal-footer-legal-links .royal-footer-cookie-preferences:focus-visible,
    .royal-footer-bottom .royal-footer-legal-links .royal-footer-cookie-preferences:active {
        color: var(--gold) !important;
    }

    .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;
    }
}


/* =========================================================
   ROYAL ENGAGEMENTS
   ROYAL ARCHIVE — PREMIUM CINEMATIC CAROUSEL
   ========================================================= */

.engagements-archive {
    position: relative;
    overflow: hidden;
    background: var(--obsidian);
    color: var(--ivory);
    padding: 170px 0 130px;
}

.engagements-archive-inner {
    width: 100%;
    margin: 0 auto;
}


/* =========================================================
   ARCHIVE HEADER
   ========================================================= */

.engagements-archive-header {
    width: 86%;
    margin: 0 auto 90px;
    display: grid;
    grid-template-columns: minmax(0, 1.15fr) minmax(300px, .85fr);
    gap: 8vw;
    align-items: end;
}

.engagements-archive-heading {
    max-width: 900px;
}

.engagements-archive-eyebrow {
    margin: 0 0 24px;
    font-family: "DM Sans", sans-serif;
    font-size: 9px;
    font-weight: 500;
    line-height: 1;
    letter-spacing: .28em;
    text-transform: uppercase;
    color: var(--gold);
}

.engagements-archive-heading h2 {
    margin: 0;
    font-family: "Cormorant Garamond", serif;
    font-size: clamp(72px, 9.2vw, 145px);
    font-weight: 300;
    line-height: .82;
    letter-spacing: -.045em;
    color: var(--ivory);
}

.engagements-archive-heading h2 em {
    font-weight: 300;
    color: var(--gold);
}

.engagements-archive-intro {
    max-width: 460px;
    padding-bottom: 5px;
}

.engagements-archive-intro p {
    margin: 0;
    font-family: "DM Sans", sans-serif;
    font-size: 13px;
    font-weight: 400;
    line-height: 1.9;
    color: rgba(244, 240, 231, .58);
}

.engagements-archive-intro .engagements-archive-lead {
    margin-bottom: 24px;
    font-family: "Cormorant Garamond", serif;
    font-size: 23px;
    line-height: 1.45;
    color: rgba(244, 240, 231, .88);
}


/* =========================================================
   CAROUSEL
   ========================================================= */

.engagements-carousel {
    position: relative;
    width: 100%;
}

.engagements-carousel-stage {
    position: relative;
    width: 100%;
    overflow: hidden;
    touch-action: pan-y;
    background: #10100f;
}

.engagements-carousel-track {
    display: flex;
    width: 100%;
    transition: transform .8s cubic-bezier(.22, .61, .36, 1);
    will-change: transform;
}


/* =========================================================
   SLIDE
   ========================================================= */

.engagements-carousel-slide {
    position: relative;
    flex: 0 0 100%;
    width: 100%;
    padding: 0 7vw;
    box-sizing: border-box;
}

.engagements-carousel-slide-inner {
    position: relative;
    width: 100%;
    height: min(76vh, 820px);
    min-height: 520px;
    overflow: hidden;
    background: #11110f;
    isolation: isolate;
}


/* =========================================================
   BACKGROUND IMAGE
   Used as a cinematic blurred layer
   ========================================================= */

.engagements-carousel-slide-inner::before {
    content: "";
    position: absolute;
    inset: -45px;
    z-index: 0;
    background-image: var(--archive-background);
    background-position: center;
    background-size: cover;
    filter: blur(30px);
    transform: scale(1.12);
    opacity: .32;
}


/* =========================================================
   DARK CINEMATIC OVERLAY
   ========================================================= */

.engagements-carousel-slide-inner::after {
    content: "";
    position: absolute;
    inset: 0;
    z-index: 2;
    background:
        linear-gradient(
            180deg,
            rgba(0, 0, 0, .04) 0%,
            rgba(0, 0, 0, .02) 50%,
            rgba(0, 0, 0, .68) 100%
        );
    border: 1px solid rgba(213, 182, 116, .18);
    pointer-events: none;
}


/* =========================================================
   ACTUAL PHOTOGRAPH
   IMPORTANT: CONTAIN — NEVER CROP THE PHOTOGRAPH
   ========================================================= */

.engagements-carousel-slide-image {
    position: absolute;
    inset: 0;
    z-index: 1;

    width: 100%;
    height: 100%;

    object-fit: contain;
    object-position: center;

    display: block;

    padding: 0;

    transform: scale(1.015);

    transition:
        transform 1.2s cubic-bezier(.22, .61, .36, 1),
        opacity .6s ease;
}

.engagements-carousel-slide.is-active
.engagements-carousel-slide-image {
    transform: scale(1);
}


/* =========================================================
   SLIDE INFORMATION
   ========================================================= */

.engagements-carousel-slide-info {
    position: absolute;
    left: 42px;
    right: 42px;
    bottom: 38px;
    z-index: 4;

    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 30px;

    pointer-events: none;
}

.engagements-carousel-slide-context {
    display: flex;
    align-items: center;
    gap: 16px;
}

.engagements-carousel-slide-number {
    font-family: "DM Sans", sans-serif;
    font-size: 8px;
    font-weight: 500;
    letter-spacing: .18em;
    color: var(--gold);
}

.engagements-carousel-slide-rule {
    width: 34px;
    height: 1px;
    background: rgba(213, 182, 116, .55);
}

.engagements-carousel-slide-label {
    font-family: "DM Sans", sans-serif;
    font-size: 8px;
    font-weight: 500;
    letter-spacing: .2em;
    text-transform: uppercase;
    color: rgba(244, 240, 231, .72);
}


/* =========================================================
   CAROUSEL ARROWS
   ========================================================= */

.engagements-carousel-arrow {
    position: absolute;
    top: 50%;
    z-index: 6;

    width: 58px;
    height: 58px;

    display: flex;
    align-items: center;
    justify-content: center;

    border: 1px solid rgba(244, 240, 231, .32);
    border-radius: 50%;

    background: rgba(17, 17, 15, .48);

    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);

    color: var(--ivory);

    cursor: pointer;

    transform: translateY(-50%);

    transition:
        background .35s ease,
        border-color .35s ease,
        color .35s ease,
        transform .35s ease;
}

.engagements-carousel-arrow span {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 20px;
    height: 20px;
}

.engagements-carousel-arrow span svg {
    display: block;
    width: 20px;
    height: 20px;
    overflow: visible;
}

.engagements-carousel-arrow span svg path {
    fill: none;
    stroke: currentColor;
    stroke-width: 1.35;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.engagements-carousel-arrow-prev {
    left: 3vw;
}

.engagements-carousel-arrow-next {
    right: 3vw;
}

.engagements-carousel-arrow:hover {
    border-color: var(--gold);
    background: rgba(17, 17, 15, .82);
    color: var(--gold);
}

.engagements-carousel-arrow:active {
    transform: translateY(-50%) scale(.94);
}

.engagements-carousel-arrow:focus-visible {
    outline: 1px solid var(--gold);
    outline-offset: 5px;
}


/* =========================================================
   CONTROLS
   ========================================================= */

.engagements-carousel-controls {
    width: 86%;
    margin: 30px auto 0;

    display: grid;
    grid-template-columns: auto 1fr auto;
    align-items: center;

    gap: 28px;
}

.engagements-carousel-meta {
    min-width: 150px;

    display: flex;
    align-items: center;
    gap: 14px;
}

.engagements-carousel-index {
    font-family: "DM Sans", sans-serif;
    font-size: 9px;
    font-weight: 500;
    letter-spacing: .18em;
    color: var(--gold);
}

.engagements-carousel-label {
    font-family: "DM Sans", sans-serif;
    font-size: 8px;
    font-weight: 500;
    letter-spacing: .2em;
    text-transform: uppercase;
    color: rgba(244, 240, 231, .42);
}

.engagements-carousel-progress {
    position: relative;
    height: 1px;
    background: rgba(244, 240, 231, .14);
    overflow: hidden;
}

.engagements-carousel-progress span {
    display: block;
    width: 0;
    height: 100%;
    background: var(--gold);

    transition:
        width .7s cubic-bezier(.22, .61, .36, 1);
}

.engagements-carousel-expand {
    display: inline-flex;
    align-items: center;
    gap: 12px;

    padding: 0;
    border: 0;

    background: transparent;

    color: rgba(244, 240, 231, .65);

    font-family: "DM Sans", sans-serif;
    font-size: 8px;
    font-weight: 500;
    letter-spacing: .18em;
    text-transform: uppercase;

    cursor: pointer;

    transition: color .3s ease;
}

.engagements-carousel-expand span:last-child {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 17px;
    height: 17px;
}

.engagements-carousel-expand span:last-child svg {
    display: block;
    width: 17px;
    height: 17px;
    overflow: visible;
}

.engagements-carousel-expand span:last-child svg path {
    fill: none;
    stroke: currentColor;
    stroke-width: 1.35;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.engagements-carousel-expand:hover {
    color: var(--gold);
}

.engagements-carousel-expand:focus-visible {
    outline: 1px solid var(--gold);
    outline-offset: 7px;
}


/* =========================================================
   ARCHIVE FOOTER
   ========================================================= */

.engagements-archive-footer {
    width: 86%;
    margin: 120px auto 0;

    display: grid;
    grid-template-columns: minmax(80px, 1fr) auto;

    align-items: center;
    gap: 40px;
}

.engagements-archive-footer-line {
    display: block;
    width: 100%;
    height: 1px;
    background: rgba(213, 182, 116, .28);
}

.engagements-archive-footer p {
    margin: 0;

    font-family: "Cormorant Garamond", serif;
    font-size: 22px;
    font-weight: 300;
    line-height: 1.35;

    text-align: right;

    color: rgba(244, 240, 231, .68);
}


/* =========================================================
   LIGHTBOX
   ========================================================= */

.engagements-lightbox {
    position: fixed;
    inset: 0;
    z-index: 3000;

    display: flex;
    align-items: center;
    justify-content: center;

    padding: 40px;

    opacity: 0;
    visibility: hidden;
    pointer-events: none;

    transition:
        opacity .35s ease,
        visibility 0s linear .35s;
}

.engagements-lightbox.is-open {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;

    transition:
        opacity .35s ease,
        visibility 0s linear 0s;
}

.engagements-lightbox-backdrop {
    position: absolute;
    inset: 0;
    background: rgba(8, 8, 7, .97);
}

.engagements-lightbox-dialog {
    position: relative;
    z-index: 2;

    width: min(1400px, 92vw);
    height: min(88vh, 900px);

    display: flex;
    align-items: center;
    justify-content: center;
}

.engagements-lightbox-image-wrap {
    position: relative;

    width: 100%;
    height: 100%;

    display: flex;
    align-items: center;
    justify-content: center;
}

.engagements-lightbox-image-wrap img {
    display: block;

    max-width: 92%;
    max-height: 88%;

    width: auto;
    height: auto;

    object-fit: contain;

    opacity: 0;
    transform: scale(.97);

    transition:
        opacity .35s ease,
        transform .45s cubic-bezier(.22, .61, .36, 1);
}

.engagements-lightbox.is-image-ready
.engagements-lightbox-image-wrap img {
    opacity: 1;
    transform: scale(1);
}


/* =========================================================
   LIGHTBOX CLOSE
   ========================================================= */

.engagements-lightbox-close {
    position: absolute;
    top: 4px;
    right: 4px;
    z-index: 5;

    width: 48px;
    height: 48px;

    border: 1px solid rgba(244, 240, 231, .25);
    border-radius: 50%;

    background: transparent;

    cursor: pointer;

    transition:
        border-color .3s ease,
        transform .3s ease;
}

.engagements-lightbox-close span {
    position: absolute;

    left: 12px;
    top: 23px;

    width: 22px;
    height: 1px;

    background: var(--ivory);
}

.engagements-lightbox-close span:first-child {
    transform: rotate(45deg);
}

.engagements-lightbox-close span:last-child {
    transform: rotate(-45deg);
}

.engagements-lightbox-close:hover {
    border-color: var(--gold);
    transform: rotate(90deg);
}

.engagements-lightbox-close:focus-visible {
    outline: 1px solid var(--gold);
    outline-offset: 5px;
}


/* =========================================================
   LIGHTBOX ARROWS
   ========================================================= */

.engagements-lightbox-arrow {
    position: absolute;
    top: 50%;
    z-index: 5;

    width: 56px;
    height: 56px;

    display: flex;
    align-items: center;
    justify-content: center;

    border: 1px solid rgba(244, 240, 231, .25);
    border-radius: 50%;

    background: rgba(17, 17, 15, .45);

    color: var(--ivory);

    cursor: pointer;

    transform: translateY(-50%);

    transition:
        border-color .3s ease,
        color .3s ease,
        background .3s ease;
}

.engagements-lightbox-prev {
    left: 0;
}

.engagements-lightbox-next {
    right: 0;
}

.engagements-lightbox-arrow:hover {
    border-color: var(--gold);
    background: rgba(17, 17, 15, .85);
    color: var(--gold);
}

.engagements-lightbox-arrow:focus-visible {
    outline: 1px solid var(--gold);
    outline-offset: 5px;
}

.engagements-lightbox-arrow svg {
    display: block;
    width: 20px;
    height: 20px;
    overflow: visible;
}

.engagements-lightbox-arrow svg path {
    fill: none;
    stroke: currentColor;
    stroke-width: 1.35;
    stroke-linecap: round;
    stroke-linejoin: round;
}


/* =========================================================
   LIGHTBOX FOOTER
   ========================================================= */

.engagements-lightbox-footer {
    position: absolute;
    left: 50%;
    bottom: 5px;
    z-index: 5;

    transform: translateX(-50%);

    display: flex;
    align-items: center;
    gap: 18px;

    white-space: nowrap;

    font-family: "DM Sans", sans-serif;
    font-size: 8px;
    font-weight: 500;
    letter-spacing: .2em;
    text-transform: uppercase;

    color: rgba(244, 240, 231, .48);
}

.engagements-lightbox-footer span:first-child {
    color: var(--gold);
}

.engagements-lightbox-rule {
    width: 32px;
    height: 1px;
    background: rgba(213, 182, 116, .45);
}


/* =========================================================
   TABLET
   ========================================================= */

@media (max-width: 1000px) {

    .engagements-archive {
        padding: 140px 0 110px;
    }

    .engagements-archive-header {
        width: 88%;
        grid-template-columns: 1fr;
        gap: 45px;
        margin-bottom: 70px;
    }

    .engagements-archive-intro {
        max-width: 600px;
    }

    .engagements-carousel-slide {
        padding: 0 5vw;
    }

    .engagements-carousel-slide-inner {
        height: min(70vh, 720px);
    }

    .engagements-carousel-arrow-prev {
        left: 2vw;
    }

    .engagements-carousel-arrow-next {
        right: 2vw;
    }

    .engagements-carousel-controls {
        width: 90%;
    }

    .engagements-archive-footer {
        width: 90%;
    }
}


/* =========================================================
   MOBILE
   ========================================================= */

@media (max-width: 700px) {

    .engagements-archive {
        padding: 105px 0 85px;
    }

    .engagements-archive-header {
        width: 87%;
        gap: 35px;
        margin-bottom: 55px;
    }

    .engagements-archive-eyebrow {
        margin-bottom: 19px;
        font-size: 8px;
        letter-spacing: .24em;
    }

    .engagements-archive-heading h2 {
        font-size: clamp(64px, 18vw, 105px);
        line-height: .84;
    }

    .engagements-archive-intro .engagements-archive-lead {
        font-size: 21px;
        line-height: 1.42;
    }

    .engagements-archive-intro p {
        font-size: 12px;
        line-height: 1.8;
    }

    .engagements-carousel-slide {
        padding: 0 6.5vw;
    }

    .engagements-carousel-slide-inner {
        height: 67vh;
        min-height: 470px;
    }

    .engagements-carousel-slide-info {
        left: 24px;
        right: 24px;
        bottom: 25px;
    }

    .engagements-carousel-arrow {
        top: auto;
        bottom: 23px;

        width: 44px;
        height: 44px;

        transform: none;

        background: rgba(17, 17, 15, .62);
    }

    .engagements-carousel-arrow:active {
        transform: scale(.94);
    }

    .engagements-carousel-arrow-prev {
        left: auto;
        right: calc(6.5vw + 55px);
    }

    .engagements-carousel-arrow-next {
        right: 6.5vw;
    }

    .engagements-carousel-arrow span svg {
        width: 18px;
        height: 18px;
    }

    .engagements-carousel-controls {
        width: 87%;
        margin-top: 22px;

        grid-template-columns: auto 1fr;

        gap: 18px;
    }

    .engagements-carousel-meta {
        min-width: 0;
    }

    .engagements-carousel-label {
        display: none;
    }

    .engagements-carousel-progress {
        grid-column: 1 / -1;
        grid-row: 2;
    }

    .engagements-carousel-expand {
        justify-self: end;
    }

    .engagements-archive-footer {
        width: 87%;
        margin-top: 85px;

        grid-template-columns: 1fr;

        gap: 25px;
    }

    .engagements-archive-footer p {
        font-size: 20px;
        text-align: left;
    }

    .engagements-lightbox {
        padding: 20px;
    }

    .engagements-lightbox-dialog {
        width: 100%;
        height: 88vh;
    }

    .engagements-lightbox-image-wrap img {
        max-width: 100%;
        max-height: 78%;
    }

    .engagements-lightbox-close {
        top: 0;
        right: 0;

        width: 44px;
        height: 44px;
    }

    .engagements-lightbox-close span {
        left: 11px;
        top: 21px;
        width: 20px;
    }

    .engagements-lightbox-arrow {
        top: auto;
        bottom: 45px;

        width: 44px;
        height: 44px;

        transform: none;
    }

    .engagements-lightbox-prev {
        left: 0;
    }

    .engagements-lightbox-next {
        right: 0;
    }

    .engagements-lightbox-footer {
        bottom: 7px;
        font-size: 7px;
        letter-spacing: .16em;
    }
}


/* =========================================================
   SMALL MOBILE
   ========================================================= */

@media (max-width: 420px) {

    .engagements-archive {
        padding-top: 90px;
    }

    .engagements-archive-heading h2 {
        font-size: 19vw;
    }

    .engagements-carousel-slide {
        padding: 0 5.5vw;
    }

    .engagements-carousel-slide-inner {
        height: 63vh;
        min-height: 430px;
    }

    .engagements-carousel-slide-info {
        left: 19px;
        right: 19px;
        bottom: 21px;
    }

    .engagements-carousel-arrow-prev {
        right: calc(5.5vw + 51px);
    }

    .engagements-carousel-arrow-next {
        right: 5.5vw;
    }

    .engagements-carousel-controls {
        width: 89%;
    }
}


/* =========================================================
   REDUCED MOTION
   ========================================================= */

@media (prefers-reduced-motion: reduce) {

    .engagements-carousel-track,
    .engagements-carousel-slide-image,
    .engagements-carousel-progress span,
    .engagements-lightbox,
    .engagements-lightbox-image-wrap img,
    .engagements-carousel-arrow,
    .engagements-carousel-expand {
        transition: none;
    }
}

/* =========================================================
   ROYAL ARCHIVE — LIGHTBOX PAGE LOCK
   ========================================================= */

body.gallery-lock {
    overflow: hidden;
}
