/* =========================================================
   NANA EFUA APIATEWA III
   THE FOUNDATION — PAGE STYLES
   ROYAL HERITAGE × CONTEMPORARY EDITORIAL
   ========================================================= */


/* =========================================================
   01. FOUNDATION / GLOBAL 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 NAVIGATION ITEM
   ========================================================= */

.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. FOUNDATION HERO
   ========================================================= */

.foundation-hero {
  position: relative;

  min-height: 720px;
  height: 100svh;

  overflow: hidden;
  isolation: isolate;

  background: var(--obsidian);
  color: var(--ivory);
}


/* =========================================================
   10. FOUNDATION HERO MEDIA
   ========================================================= */

.foundation-hero-media {
  position: absolute;
  inset: 0;

  z-index: -3;

  overflow: hidden;
}

.foundation-hero-image {
  width: 100%;
  height: 100%;

  object-fit: cover;
  object-position: center top;

  transform: scale(1.015);

  transition:
    transform 1.8s var(--ease);
}

.foundation-hero:hover .foundation-hero-image {
  transform: scale(1.035);
}


/* =========================================================
   11. FOUNDATION HERO OVERLAY
   ========================================================= */

.foundation-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%
    );
}

.foundation-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. FOUNDATION HERO ADINKRA
   ========================================================= */

.foundation-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;
}

.foundation-hero-adinkra svg {
  width: 100%;
  height: 100%;

  overflow: visible;
}

.foundation-hero-adinkra circle {
  fill: none;
  stroke: var(--gold);
  stroke-width: 0.65;
}


/* =========================================================
   13. FOUNDATION HERO CONTENT
   ========================================================= */

.foundation-hero-content {
  position: absolute;

  left: 7vw;
  bottom: 14vh;

  width: min(760px, 70vw);
}


/* =========================================================
   14. FOUNDATION HERO KICKER
   ========================================================= */

.foundation-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);
}

.foundation-hero-line {
  display: block;

  width: 38px;
  height: 1px;

  flex: 0 0 auto;

  background: var(--gold-soft);
}


/* =========================================================
   15. FOUNDATION HERO TITLE
   ========================================================= */

.foundation-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);
}

.foundation-hero-title em {
  display: inline-block;

  margin-left: 0.55em;

  font-style: italic;
  font-weight: 300;

  letter-spacing: -0.06em;

  color: var(--gold);
}


/* =========================================================
   16. FOUNDATION HERO IDENTITY
   ========================================================= */

.foundation-hero-identity {
  max-width: 520px;

  margin-top: 48px;
  padding-left: 2px;
}

.foundation-hero-name {
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(24px, 2.2vw, 32px);
  font-weight: 400;
  line-height: 1.1;

  color: var(--ivory);
}

.foundation-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);
}

.foundation-hero-title-line span {
  margin: 0 7px;

  color: var(--gold);
}


/* =========================================================
   17. FOUNDATION HERO LOCATION
   ========================================================= */

.foundation-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);
}

.foundation-hero-location-divider {
  width: 24px;
  height: 1px;

  flex: 0 0 auto;

  background: var(--gold-soft);
}


/* =========================================================
   18. FOUNDATION HERO SCROLL
   ========================================================= */

.foundation-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;
}

.foundation-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;
}

.foundation-hero-scroll-line {
  width: 34px;
  height: 1px;

  background: var(--ivory-soft);

  transition:
    width 0.45s var(--ease),
    background 0.35s ease;
}

.foundation-hero-scroll-arrow {
  font-family: "DM Sans", sans-serif;
  font-size: 13px;
  font-weight: 300;
  line-height: 1;

  color: var(--gold);

  transition: transform 0.45s var(--ease);
}

.foundation-hero-scroll:hover {
  color: var(--gold);
}

.foundation-hero-scroll:hover .foundation-hero-scroll-line {
  width: 48px;
  background: var(--gold);
}

.foundation-hero-scroll:hover .foundation-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 PANEL
     ------------------------------------------------------- */

  .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);
  }


  /* =======================================================
     FOUNDATION HERO — MOBILE
     ======================================================= */

  .foundation-hero {
    min-height: 680px;
    height: 100svh;
  }


  /* -------------------------------------------------------
     MOBILE HERO IMAGE
     ------------------------------------------------------- */

  .foundation-hero-image {
    object-position: 50% 28%;

    transform: none;
  }

  .foundation-hero:hover .foundation-hero-image {
    transform: none;
  }


  /* -------------------------------------------------------
     MOBILE HERO OVERLAY
     ------------------------------------------------------- */

  .foundation-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%
      );
  }

  .foundation-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
     ------------------------------------------------------- */

  .foundation-hero-adinkra {
    top: 27%;
    right: 6vw;

    width: 105px;

    opacity: 0.13;

    transform: none;
  }


  /* -------------------------------------------------------
     MOBILE HERO CONTENT
     ------------------------------------------------------- */

  .foundation-hero-content {
    left: 6.5vw;
    right: 6.5vw;
    bottom: 15vh;

    width: auto;
  }


  /* -------------------------------------------------------
     MOBILE HERO KICKER
     ------------------------------------------------------- */

  .foundation-hero-kicker {
    gap: 12px;

    margin-bottom: 22px;

    font-size: 9px;
    letter-spacing: 0.18em;
  }

  .foundation-hero-line {
    width: 28px;
  }


  /* -------------------------------------------------------
     MOBILE HERO TITLE
     ------------------------------------------------------- */

  .foundation-hero-title {
    font-size: clamp(76px, 22vw, 112px);
    line-height: 0.76;
  }

  .foundation-hero-title em {
    margin-left: 0.32em;
  }


  /* -------------------------------------------------------
     MOBILE HERO IDENTITY
     ------------------------------------------------------- */

  .foundation-hero-identity {
    max-width: 86vw;

    margin-top: 34px;
  }

  .foundation-hero-name {
    font-size: 25px;
    line-height: 1.05;
  }

  .foundation-hero-title-line {
    max-width: 82vw;

    margin-top: 8px;

    font-size: 8px;
    line-height: 1.75;
    letter-spacing: 0.08em;
  }

  .foundation-hero-title-line span {
    display: none;
  }


  /* -------------------------------------------------------
     MOBILE HERO LOCATION
     ------------------------------------------------------- */

  .foundation-hero-location {
    display: none;
  }


  /* -------------------------------------------------------
     MOBILE HERO SCROLL
     ------------------------------------------------------- */

  .foundation-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
     ------------------------------------------------------- */

  .foundation-hero-content {
    bottom: 14vh;
  }

  .foundation-hero-title {
    font-size: clamp(68px, 21vw, 94px);
  }

  .foundation-hero-name {
    font-size: 22px;
  }

  .foundation-hero-identity {
    margin-top: 29px;
  }

  .foundation-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;
  }

  .foundation-hero-image {
    transform: none !important;
  }
}

/* =========================================================
   FOUNDATION — SECTION 02
   THE PURPOSE
   ========================================================= */

.foundation-purpose {
  position: relative;

  padding: 150px 7vw 160px;

  background: var(--ivory);
  color: var(--obsidian);

  overflow: hidden;
}

.foundation-purpose-inner {
  width: 100%;
  max-width: 1440px;
  margin: 0 auto;
}


/* =========================================================
   SECTION 02 — INTRO MARKER
   ========================================================= */

.foundation-purpose-intro {
  display: flex;
  align-items: center;
  gap: 16px;

  margin-bottom: 82px;

  font-family: "DM Sans", sans-serif;
  font-size: 8px;
  font-weight: 500;
  line-height: 1;
  letter-spacing: 0.22em;
  text-transform: uppercase;

  color: rgba(17, 17, 15, 0.52);
}

.foundation-purpose-number {
  color: var(--gold);
}

.foundation-purpose-rule {
  width: 42px;
  height: 1px;

  flex: 0 0 auto;

  background: var(--gold-soft);
}

.foundation-purpose-intro p {
  margin: 0;
}


/* =========================================================
   SECTION 02 — MAIN GRID
   ========================================================= */

.foundation-purpose-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(320px, 0.72fr);
  gap: clamp(70px, 11vw, 170px);

  align-items: start;
}


/* =========================================================
   SECTION 02 — HEADING
   ========================================================= */

.foundation-purpose-heading {
  position: relative;
}

.foundation-purpose-kicker {
  margin-bottom: 27px;

  font-family: "DM Sans", sans-serif;
  font-size: 8px;
  font-weight: 500;
  line-height: 1.4;
  letter-spacing: 0.2em;
  text-transform: uppercase;

  color: rgba(17, 17, 15, 0.48);
}

.foundation-purpose-heading h2 {
  max-width: 820px;

  font-family: "Cormorant Garamond", serif;
  font-size: clamp(62px, 7.4vw, 112px);
  font-weight: 300;
  line-height: 0.84;
  letter-spacing: -0.055em;

  color: var(--obsidian);
}

.foundation-purpose-heading h2 em {
  display: inline-block;

  margin-left: 0.36em;

  font-style: italic;
  font-weight: 300;

  letter-spacing: -0.06em;

  color: var(--gold);
}


/* =========================================================
   SECTION 02 — BODY CONTENT
   ========================================================= */

.foundation-purpose-content {
  max-width: 500px;

  padding-top: 8px;
}

.foundation-purpose-content p {
  margin-bottom: 25px;

  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.68);
}

.foundation-purpose-content .foundation-purpose-lead {
  margin-bottom: 32px;

  font-family: "Cormorant Garamond", serif;
  font-size: clamp(25px, 2.3vw, 33px);
  font-weight: 400;
  line-height: 1.25;
  letter-spacing: -0.018em;

  color: var(--obsidian);
}


/* =========================================================
   SECTION 02 — FOOTER PRINCIPLES
   ========================================================= */

.foundation-purpose-footer {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;

  margin-top: 52px;

  font-family: "DM Sans", sans-serif;
  font-size: 8px;
  font-weight: 500;
  line-height: 1;
  letter-spacing: 0.17em;
  text-transform: uppercase;

  color: rgba(17, 17, 15, 0.62);
}

.foundation-purpose-footer-rule {
  width: 18px;
  height: 1px;

  flex: 0 0 auto;

  background: var(--gold-soft);
}


/* =========================================================
   SECTION 02 — LARGE DESKTOP
   ========================================================= */

@media (min-width: 1400px) {

  .foundation-purpose {
    padding-left: 8vw;
    padding-right: 8vw;
  }

  .foundation-purpose-heading h2 {
    font-size: clamp(76px, 7vw, 112px);
  }
}


/* =========================================================
   SECTION 02 — TABLET
   ========================================================= */

@media (max-width: 1000px) {

  .foundation-purpose {
    padding: 125px 7vw 135px;
  }

  .foundation-purpose-intro {
    margin-bottom: 65px;
  }

  .foundation-purpose-grid {
    grid-template-columns: minmax(0, 1fr) minmax(280px, 0.7fr);
    gap: 60px;
  }

  .foundation-purpose-heading h2 {
    font-size: clamp(58px, 8vw, 88px);
  }

  .foundation-purpose-content {
    max-width: 440px;
  }
}


/* =========================================================
   SECTION 02 — MOBILE
   ========================================================= */

@media (max-width: 800px) {

  .foundation-purpose {
    padding: 100px 6.5vw 110px;
  }

  .foundation-purpose-intro {
    gap: 13px;

    margin-bottom: 52px;

    font-size: 7px;
    letter-spacing: 0.19em;
  }

  .foundation-purpose-rule {
    width: 30px;
  }


  /* -------------------------------------------------------
     MOBILE CONTENT ORDER
     ------------------------------------------------------- */

  .foundation-purpose-grid {
    display: flex;
    flex-direction: column;

    gap: 48px;
  }


  /* -------------------------------------------------------
     MOBILE HEADING
     ------------------------------------------------------- */

  .foundation-purpose-kicker {
    margin-bottom: 22px;

    font-size: 7px;
    letter-spacing: 0.17em;
  }

  .foundation-purpose-heading h2 {
    max-width: 94vw;

    font-size: clamp(52px, 15vw, 78px);
    line-height: 0.86;
    letter-spacing: -0.05em;
  }

  .foundation-purpose-heading h2 em {
    margin-left: 0.22em;
  }


  /* -------------------------------------------------------
     MOBILE BODY
     ------------------------------------------------------- */

  .foundation-purpose-content {
    max-width: 100%;
    padding-top: 0;
  }

  .foundation-purpose-content .foundation-purpose-lead {
    margin-bottom: 27px;

    font-size: 27px;
    line-height: 1.24;
  }

  .foundation-purpose-content p {
    margin-bottom: 21px;

    font-size: 12px;
    line-height: 1.9;
  }


  /* -------------------------------------------------------
     MOBILE FOOTER
     ------------------------------------------------------- */

  .foundation-purpose-footer {
    gap: 10px;

    margin-top: 39px;

    font-size: 7px;
    letter-spacing: 0.14em;
  }

  .foundation-purpose-footer-rule {
    width: 14px;
  }
}


/* =========================================================
   SECTION 02 — SMALL MOBILE
   ========================================================= */

@media (max-width: 420px) {

  .foundation-purpose {
    padding: 85px 7vw 95px;
  }

  .foundation-purpose-intro {
    margin-bottom: 43px;
  }

  .foundation-purpose-grid {
    gap: 40px;
  }

  .foundation-purpose-heading h2 {
    font-size: clamp(47px, 14.8vw, 66px);
    line-height: 0.87;
  }

  .foundation-purpose-content .foundation-purpose-lead {
    font-size: 24px;
  }

  .foundation-purpose-content p {
    font-size: 11.5px;
    line-height: 1.85;
  }

  .foundation-purpose-footer {
    margin-top: 34px;
  }
}


/* =========================================================
   SECTION 02 — REDUCED MOTION
   ========================================================= */

@media (prefers-reduced-motion: reduce) {

  .foundation-purpose *,
  .foundation-purpose *::before,
  .foundation-purpose *::after {
    transition: none !important;
    animation: none !important;
  }
}

/* =========================================================
   FOUNDATION — SECTION 03
   EDUCATION & OPPORTUNITY
   ========================================================= */

.foundation-education {
  position: relative;

  padding: 150px 7vw 160px;

  background: var(--obsidian);
  color: var(--ivory);

  overflow: hidden;
}

.foundation-education-inner {
  width: 100%;
  max-width: 1440px;
  margin: 0 auto;

  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(0, 1fr);
  gap: clamp(70px, 9vw, 145px);

  align-items: center;
}


/* =========================================================
   SECTION 03 — IMAGE
   ========================================================= */

.foundation-education-media {
  width: 100%;
}

.foundation-education-figure {
  position: relative;

  width: 100%;
  margin: 0;

  overflow: hidden;
}

.foundation-education-image {
  width: 100%;
  height: min(680px, 55vw);

  object-fit: cover;
  object-position: center;

  transform: scale(1.015);

  transition: transform 1.4s var(--ease);
}

.foundation-education-figure:hover .foundation-education-image {
  transform: scale(1.035);
}

.foundation-education-caption {
  display: flex;
  align-items: center;
  gap: 14px;

  margin-top: 17px;

  font-family: "DM Sans", sans-serif;
  font-size: 7px;
  font-weight: 500;
  line-height: 1;
  letter-spacing: 0.18em;
  text-transform: uppercase;

  color: rgba(244, 240, 231, 0.42);
}

.foundation-education-caption span:first-child {
  color: var(--gold);
}

.foundation-education-caption span:last-child {
  color: rgba(244, 240, 231, 0.48);
}


/* =========================================================
   SECTION 03 — CONTENT
   ========================================================= */

.foundation-education-content {
  max-width: 620px;
}


/* =========================================================
   SECTION 03 — MARKER
   ========================================================= */

.foundation-education-marker {
  display: flex;
  align-items: center;
  gap: 15px;

  margin-bottom: 43px;

  font-family: "DM Sans", sans-serif;
  font-size: 8px;
  font-weight: 500;
  line-height: 1;
  letter-spacing: 0.22em;
  text-transform: uppercase;

  color: rgba(244, 240, 231, 0.48);
}

.foundation-education-number {
  color: var(--gold);
}

.foundation-education-rule {
  width: 40px;
  height: 1px;

  flex: 0 0 auto;

  background: var(--gold-soft);
}


/* =========================================================
   SECTION 03 — KICKER
   ========================================================= */

.foundation-education-kicker {
  margin-bottom: 22px;

  font-family: "DM Sans", sans-serif;
  font-size: 8px;
  font-weight: 500;
  line-height: 1.4;
  letter-spacing: 0.20em;
  text-transform: uppercase;

  color: var(--gold);
}


/* =========================================================
   SECTION 03 — HEADING
   ========================================================= */

.foundation-education-content h2 {
  max-width: 680px;

  font-family: "Cormorant Garamond", serif;
  font-size: clamp(64px, 7.3vw, 112px);
  font-weight: 300;
  line-height: 0.83;
  letter-spacing: -0.055em;

  color: var(--ivory);
}

.foundation-education-content h2 em {
  display: inline-block;

  margin-left: 0.40em;

  font-style: italic;
  font-weight: 300;

  letter-spacing: -0.06em;

  color: var(--gold);
}


/* =========================================================
   SECTION 03 — COPY
   ========================================================= */

.foundation-education-copy {
  max-width: 510px;

  margin-top: 48px;
  padding-left: 2px;
}

.foundation-education-copy p {
  margin-bottom: 24px;

  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);
}

.foundation-education-copy .foundation-education-lead {
  margin-bottom: 29px;

  font-family: "Cormorant Garamond", serif;
  font-size: clamp(25px, 2.25vw, 33px);
  font-weight: 400;
  line-height: 1.25;
  letter-spacing: -0.018em;

  color: var(--ivory);
}


/* =========================================================
   SECTION 03 — PRACTICAL DISCIPLINES
   ========================================================= */

.foundation-education-disciplines {
  margin-top: 47px;

  border-top: 1px solid rgba(213, 182, 116, 0.22);
}

.foundation-education-discipline {
  min-height: 58px;

  display: grid;
  grid-template-columns: 34px minmax(0, 1fr);
  align-items: center;

  border-bottom: 1px solid rgba(244, 240, 231, 0.10);
}

.foundation-education-discipline span {
  font-family: "DM Sans", sans-serif;
  font-size: 7px;
  font-weight: 500;
  line-height: 1;
  letter-spacing: 0.15em;

  color: var(--gold);
}

.foundation-education-discipline p {
  margin: 0;

  font-family: "Cormorant Garamond", serif;
  font-size: 21px;
  font-weight: 400;
  line-height: 1.1;
  letter-spacing: -0.01em;

  color: rgba(244, 240, 231, 0.88);
}


/* =========================================================
   SECTION 03 — LARGE DESKTOP
   ========================================================= */

@media (min-width: 1400px) {

  .foundation-education {
    padding-left: 8vw;
    padding-right: 8vw;
  }

  .foundation-education-image {
    height: 680px;
  }
}


/* =========================================================
   SECTION 03 — TABLET
   ========================================================= */

@media (max-width: 1000px) {

  .foundation-education {
    padding: 125px 7vw 135px;
  }

  .foundation-education-inner {
    grid-template-columns: minmax(0, 0.85fr) minmax(0, 1fr);
    gap: 60px;
  }

  .foundation-education-image {
    height: 620px;
  }

  .foundation-education-content h2 {
    font-size: clamp(55px, 8vw, 88px);
  }

  .foundation-education-copy {
    margin-top: 40px;
  }
}


/* =========================================================
   SECTION 03 — MOBILE
   ========================================================= */

@media (max-width: 800px) {

  .foundation-education {
    padding: 100px 6.5vw 110px;
  }

  .foundation-education-inner {
    display: flex;
    flex-direction: column;

    gap: 52px;

    align-items: stretch;
  }


  /* -------------------------------------------------------
     MOBILE CONTENT FIRST
     ------------------------------------------------------- */

  .foundation-education-content {
    order: 1;

    max-width: 100%;
  }

  .foundation-education-media {
    order: 2;
  }


  /* -------------------------------------------------------
     MOBILE MARKER
     ------------------------------------------------------- */

  .foundation-education-marker {
    gap: 12px;

    margin-bottom: 35px;

    font-size: 7px;
    letter-spacing: 0.18em;
  }

  .foundation-education-rule {
    width: 29px;
  }


  /* -------------------------------------------------------
     MOBILE KICKER
     ------------------------------------------------------- */

  .foundation-education-kicker {
    margin-bottom: 19px;

    font-size: 7px;
    letter-spacing: 0.17em;
  }


  /* -------------------------------------------------------
     MOBILE HEADING
     ------------------------------------------------------- */

  .foundation-education-content h2 {
    max-width: 94vw;

    font-size: clamp(52px, 15vw, 78px);
    line-height: 0.86;
  }

  .foundation-education-content h2 em {
    margin-left: 0.25em;
  }


  /* -------------------------------------------------------
     MOBILE COPY
     ------------------------------------------------------- */

  .foundation-education-copy {
    max-width: 100%;

    margin-top: 37px;
    padding-left: 0;
  }

  .foundation-education-copy .foundation-education-lead {
    margin-bottom: 25px;

    font-size: 26px;
    line-height: 1.25;
  }

  .foundation-education-copy p {
    margin-bottom: 20px;

    font-size: 12px;
    line-height: 1.9;
  }


  /* -------------------------------------------------------
     MOBILE DISCIPLINES
     ------------------------------------------------------- */

  .foundation-education-disciplines {
    margin-top: 38px;
  }

  .foundation-education-discipline {
    min-height: 55px;

    grid-template-columns: 30px minmax(0, 1fr);
  }

  .foundation-education-discipline p {
    font-size: 19px;
  }


  /* -------------------------------------------------------
     MOBILE IMAGE
     ------------------------------------------------------- */

  .foundation-education-image {
    width: 100%;
    height: 118vw;

    max-height: 590px;

    object-position: center;

    transform: none;
  }

  .foundation-education-figure:hover .foundation-education-image {
    transform: none;
  }

  .foundation-education-caption {
    margin-top: 14px;

    font-size: 6.5px;
  }
}


/* =========================================================
   SECTION 03 — SMALL MOBILE
   ========================================================= */

@media (max-width: 420px) {

  .foundation-education {
    padding: 85px 7vw 95px;
  }

  .foundation-education-inner {
    gap: 43px;
  }

  .foundation-education-marker {
    margin-bottom: 30px;
  }

  .foundation-education-content h2 {
    font-size: clamp(47px, 14.8vw, 66px);
  }

  .foundation-education-copy {
    margin-top: 32px;
  }

  .foundation-education-copy .foundation-education-lead {
    font-size: 24px;
  }

  .foundation-education-copy p {
    font-size: 11.5px;
    line-height: 1.85;
  }

  .foundation-education-disciplines {
    margin-top: 33px;
  }

  .foundation-education-discipline {
    min-height: 52px;
  }

  .foundation-education-discipline p {
    font-size: 18px;
  }

  .foundation-education-image {
    height: 120vw;
  }
}


/* =========================================================
   SECTION 03 — REDUCED MOTION
   ========================================================= */

@media (prefers-reduced-motion: reduce) {

  .foundation-education *,
  .foundation-education *::before,
  .foundation-education *::after {
    transition: none !important;
    animation: none !important;
  }

  .foundation-education-image {
    transform: none !important;
  }
}

/* =========================================================
   FOUNDATION — SECTION 04
   PRACTICAL SKILLS & EMPOWERMENT
   ========================================================= */

.foundation-skills {
  position: relative;

  padding: 155px 7vw 165px;

  background: #e8e1d4;
  color: var(--obsidian);

  overflow: hidden;
}

.foundation-skills-inner {
  width: 100%;
  max-width: 1440px;
  margin: 0 auto;
}


/* =========================================================
   SECTION 04 — HEADER
   ========================================================= */

.foundation-skills-header {
  max-width: 980px;
}

.foundation-skills-marker {
  display: flex;
  align-items: center;
  gap: 15px;

  margin-bottom: 43px;

  font-family: "DM Sans", sans-serif;
  font-size: 8px;
  font-weight: 500;
  line-height: 1;
  letter-spacing: 0.22em;
  text-transform: uppercase;

  color: rgba(17, 17, 15, 0.48);
}

.foundation-skills-number {
  color: var(--gold);
}

.foundation-skills-rule {
  width: 40px;
  height: 1px;

  flex: 0 0 auto;

  background: var(--gold-soft);
}

.foundation-skills-kicker {
  margin-bottom: 22px;

  font-family: "DM Sans", sans-serif;
  font-size: 8px;
  font-weight: 500;
  line-height: 1.4;
  letter-spacing: 0.20em;
  text-transform: uppercase;

  color: rgba(17, 17, 15, 0.48);
}

.foundation-skills-header h2 {
  max-width: 900px;

  font-family: "Cormorant Garamond", serif;
  font-size: clamp(70px, 8.5vw, 128px);
  font-weight: 300;
  line-height: 0.80;
  letter-spacing: -0.06em;

  color: var(--obsidian);
}

.foundation-skills-header h2 em {
  display: inline-block;

  margin-left: 0.38em;

  font-style: italic;
  font-weight: 300;

  letter-spacing: -0.06em;

  color: var(--gold);
}


/* =========================================================
   SECTION 04 — MAIN GRID
   ========================================================= */

.foundation-skills-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.82fr) minmax(360px, 1fr);

  gap: clamp(80px, 13vw, 190px);

  margin-top: 105px;

  align-items: start;
}


/* =========================================================
   SECTION 04 — INTRO COPY
   ========================================================= */

.foundation-skills-intro {
  max-width: 500px;

  padding-top: 5px;
}

.foundation-skills-intro p {
  margin-bottom: 25px;

  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);
}

.foundation-skills-intro .foundation-skills-lead {
  margin-bottom: 31px;

  font-family: "Cormorant Garamond", serif;
  font-size: clamp(27px, 2.45vw, 36px);
  font-weight: 400;
  line-height: 1.22;
  letter-spacing: -0.02em;

  color: var(--obsidian);
}


/* =========================================================
   SECTION 04 — SKILLS LIST
   ========================================================= */

.foundation-skills-list {
  width: 100%;

  border-top: 1px solid rgba(17, 17, 15, 0.20);
}

.foundation-skill-item {
  min-height: 94px;

  display: grid;
  grid-template-columns: 40px minmax(0, 1fr) 28px;

  align-items: center;

  border-bottom: 1px solid rgba(17, 17, 15, 0.16);

  transition:
    padding 0.45s var(--ease),
    background 0.45s var(--ease);
}

.foundation-skill-item:hover {
  padding-left: 10px;
  padding-right: 10px;

  background: rgba(244, 240, 231, 0.32);
}

.foundation-skill-index {
  font-family: "DM Sans", sans-serif;
  font-size: 7px;
  font-weight: 500;
  line-height: 1;
  letter-spacing: 0.15em;

  color: var(--gold);
}

.foundation-skill-name {
  overflow: hidden;
}

.foundation-skill-name span {
  display: inline-block;

  font-family: "Cormorant Garamond", serif;
  font-size: clamp(25px, 2.3vw, 34px);
  font-weight: 400;
  line-height: 1.1;
  letter-spacing: -0.015em;

  color: var(--obsidian);

  transition:
    transform 0.45s var(--ease),
    color 0.35s ease;
}

.foundation-skill-item:hover .foundation-skill-name span {
  transform: translateX(5px);
}

.foundation-skill-arrow {
  justify-self: end;

  font-family: "DM Sans", sans-serif;
  font-size: 13px;
  font-weight: 300;
  line-height: 1;

  color: var(--gold);

  transition:
    transform 0.45s var(--ease);
}

.foundation-skill-item:hover .foundation-skill-arrow {
  transform: translate(3px, -3px);
}


/* =========================================================
   SECTION 04 — CLOSING STATEMENT
   ========================================================= */

.foundation-skills-statement {
  display: flex;
  align-items: flex-start;
  gap: 22px;

  margin-top: 125px;
  margin-left: 36%;

  max-width: 530px;
}

.foundation-skills-statement-line {
  width: 42px;
  height: 1px;

  flex: 0 0 auto;

  margin-top: 17px;

  background: var(--gold-soft);
}

.foundation-skills-statement p {
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(31px, 3vw, 46px);
  font-weight: 300;
  line-height: 1.02;
  letter-spacing: -0.025em;

  color: var(--obsidian);
}


/* =========================================================
   SECTION 04 — LARGE DESKTOP
   ========================================================= */

@media (min-width: 1400px) {

  .foundation-skills {
    padding-left: 8vw;
    padding-right: 8vw;
  }

  .foundation-skills-header h2 {
    font-size: clamp(78px, 8vw, 128px);
  }
}


/* =========================================================
   SECTION 04 — TABLET
   ========================================================= */

@media (max-width: 1000px) {

  .foundation-skills {
    padding: 125px 7vw 140px;
  }

  .foundation-skills-grid {
    grid-template-columns: minmax(0, 0.78fr) minmax(300px, 1fr);

    gap: 65px;

    margin-top: 85px;
  }

  .foundation-skills-header h2 {
    font-size: clamp(62px, 8.5vw, 94px);
  }

  .foundation-skills-intro .foundation-skills-lead {
    font-size: 29px;
  }

  .foundation-skill-item {
    min-height: 82px;
  }

  .foundation-skill-name span {
    font-size: 28px;
  }

  .foundation-skills-statement {
    margin-top: 100px;
    margin-left: 32%;
  }
}


/* =========================================================
   SECTION 04 — MOBILE
   ========================================================= */

@media (max-width: 800px) {

  .foundation-skills {
    padding: 100px 6.5vw 110px;
  }


  /* -------------------------------------------------------
     MOBILE HEADER
     ------------------------------------------------------- */

  .foundation-skills-marker {
    gap: 12px;

    margin-bottom: 35px;

    font-size: 7px;
    letter-spacing: 0.18em;
  }

  .foundation-skills-rule {
    width: 29px;
  }

  .foundation-skills-kicker {
    margin-bottom: 19px;

    font-size: 7px;
    letter-spacing: 0.17em;
  }

  .foundation-skills-header h2 {
    max-width: 94vw;

    font-size: clamp(53px, 15vw, 79px);
    line-height: 0.85;
  }

  .foundation-skills-header h2 em {
    margin-left: 0.24em;
  }


  /* -------------------------------------------------------
     MOBILE MAIN CONTENT
     ------------------------------------------------------- */

  .foundation-skills-grid {
    display: flex;
    flex-direction: column;

    gap: 49px;

    margin-top: 52px;
  }

  .foundation-skills-intro {
    max-width: 100%;
    padding-top: 0;
  }

  .foundation-skills-intro .foundation-skills-lead {
    margin-bottom: 26px;

    font-size: 26px;
    line-height: 1.25;
  }

  .foundation-skills-intro p {
    margin-bottom: 21px;

    font-size: 12px;
    line-height: 1.9;
  }


  /* -------------------------------------------------------
     MOBILE SKILLS LIST
     ------------------------------------------------------- */

  .foundation-skills-list {
    width: 100%;
  }

  .foundation-skill-item {
    min-height: 72px;

    grid-template-columns: 30px minmax(0, 1fr) 22px;
  }

  .foundation-skill-item:hover {
    padding-left: 0;
    padding-right: 0;

    background: transparent;
  }

  .foundation-skill-name span {
    font-size: 24px;
  }

  .foundation-skill-item:hover .foundation-skill-name span {
    transform: none;
  }

  .foundation-skill-arrow {
    font-size: 11px;
  }

  .foundation-skill-item:hover .foundation-skill-arrow {
    transform: none;
  }


  /* -------------------------------------------------------
     MOBILE STATEMENT
     ------------------------------------------------------- */

  .foundation-skills-statement {
    display: flex;

    gap: 15px;

    margin-top: 67px;
    margin-left: 0;

    max-width: 100%;
  }

  .foundation-skills-statement-line {
    width: 27px;

    margin-top: 13px;
  }

  .foundation-skills-statement p {
    font-size: 31px;
    line-height: 1.02;
  }
}


/* =========================================================
   SECTION 04 — SMALL MOBILE
   ========================================================= */

@media (max-width: 420px) {

  .foundation-skills {
    padding: 85px 7vw 95px;
  }

  .foundation-skills-header h2 {
    font-size: clamp(48px, 14.8vw, 67px);
  }

  .foundation-skills-grid {
    gap: 41px;

    margin-top: 45px;
  }

  .foundation-skills-intro .foundation-skills-lead {
    font-size: 24px;
  }

  .foundation-skills-intro p {
    font-size: 11.5px;
    line-height: 1.85;
  }

  .foundation-skill-item {
    min-height: 67px;
  }

  .foundation-skill-name span {
    font-size: 22px;
  }

  .foundation-skills-statement {
    margin-top: 58px;
  }

  .foundation-skills-statement p {
    font-size: 28px;
  }
}


/* =========================================================
   SECTION 04 — REDUCED MOTION
   ========================================================= */

@media (prefers-reduced-motion: reduce) {

  .foundation-skills *,
  .foundation-skills *::before,
  .foundation-skills *::after {
    transition: none !important;
    animation: none !important;
  }
}

/* =========================================================
   FOUNDATION — SECTION 05
   FOUNDATION IMPACT
   ========================================================= */

.foundation-impact {
  position: relative;

  padding: 155px 7vw 165px;

  background: var(--ivory);
  color: var(--obsidian);

  overflow: hidden;
}

.foundation-impact-inner {
  width: 100%;
  max-width: 1440px;
  margin: 0 auto;
}


/* =========================================================
   SECTION 05 — TOP BAR
   ========================================================= */

.foundation-impact-top {
  display: flex;
  align-items: center;
  justify-content: space-between;

  margin-bottom: 95px;
}

.foundation-impact-marker {
  display: flex;
  align-items: center;
  gap: 15px;

  font-family: "DM Sans", sans-serif;
  font-size: 8px;
  font-weight: 500;
  line-height: 1;
  letter-spacing: 0.22em;
  text-transform: uppercase;

  color: rgba(17, 17, 15, 0.48);
}

.foundation-impact-number {
  color: var(--gold);
}

.foundation-impact-rule {
  width: 40px;
  height: 1px;

  flex: 0 0 auto;

  background: var(--gold-soft);
}

.foundation-impact-location {
  font-family: "DM Sans", sans-serif;
  font-size: 8px;
  font-weight: 500;
  line-height: 1;
  letter-spacing: 0.18em;
  text-transform: uppercase;

  color: rgba(17, 17, 15, 0.42);
}


/* =========================================================
   SECTION 05 — MAIN
   ========================================================= */

.foundation-impact-main {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 0.68fr);

  gap: clamp(80px, 12vw, 180px);

  align-items: end;
}


/* =========================================================
   SECTION 05 — HEADING
   ========================================================= */

.foundation-impact-heading {
  position: relative;
}

.foundation-impact-kicker {
  margin-bottom: 25px;

  font-family: "DM Sans", sans-serif;
  font-size: 8px;
  font-weight: 500;
  line-height: 1.4;
  letter-spacing: 0.20em;
  text-transform: uppercase;

  color: rgba(17, 17, 15, 0.48);
}

.foundation-impact-heading h2 {
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(115px, 15vw, 225px);
  font-weight: 300;
  line-height: 0.67;
  letter-spacing: -0.075em;

  color: var(--obsidian);
}

.foundation-impact-heading h2 em {
  display: inline-block;

  margin-left: 0.08em;

  font-style: italic;
  font-weight: 300;

  letter-spacing: -0.075em;

  color: var(--gold);
}


/* =========================================================
   SECTION 05 — CONTENT
   ========================================================= */

.foundation-impact-content {
  max-width: 510px;

  padding-bottom: 5px;
}

.foundation-impact-content p {
  margin-bottom: 25px;

  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);
}

.foundation-impact-content .foundation-impact-lead {
  margin-bottom: 30px;

  font-family: "Cormorant Garamond", serif;
  font-size: clamp(27px, 2.45vw, 36px);
  font-weight: 400;
  line-height: 1.23;
  letter-spacing: -0.02em;

  color: var(--obsidian);
}


/* =========================================================
   SECTION 05 — IMPACT STAT
   ========================================================= */

.foundation-impact-stat {
  display: flex;
  flex-direction: column;

  margin-top: 48px;
  padding-top: 25px;

  border-top: 1px solid rgba(17, 17, 15, 0.18);
}

.foundation-impact-stat-value {
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(55px, 5.5vw, 82px);
  font-weight: 300;
  line-height: 0.85;
  letter-spacing: -0.055em;

  color: var(--gold);
}

.foundation-impact-stat-label {
  margin-top: 14px;

  font-family: "DM Sans", sans-serif;
  font-size: 7px;
  font-weight: 500;
  line-height: 1.5;
  letter-spacing: 0.19em;
  text-transform: uppercase;

  color: rgba(17, 17, 15, 0.50);
}


/* =========================================================
   SECTION 05 — BOTTOM STATEMENT
   ========================================================= */

.foundation-impact-bottom {
  display: grid;
  grid-template-columns: minmax(280px, 0.72fr) minmax(0, 1fr);

  gap: clamp(70px, 11vw, 165px);

  margin-top: 135px;

  align-items: end;
}

.foundation-impact-statement {
  max-width: 440px;

  padding-bottom: 15px;

  font-family: "Cormorant Garamond", serif;
  font-size: clamp(31px, 3.1vw, 47px);
  font-weight: 300;
  line-height: 1.04;
  letter-spacing: -0.025em;

  color: var(--obsidian);
}

.foundation-impact-image {
  width: 100%;
  overflow: hidden;
}

.foundation-impact-image img {
  width: 100%;
  height: min(570px, 46vw);

  object-fit: cover;
  object-position: center;

  transform: scale(1.015);

  transition: transform 1.4s var(--ease);
}

.foundation-impact-image:hover img {
  transform: scale(1.035);
}


/* =========================================================
   SECTION 05 — LARGE DESKTOP
   ========================================================= */

@media (min-width: 1400px) {

  .foundation-impact {
    padding-left: 8vw;
    padding-right: 8vw;
  }

  .foundation-impact-heading h2 {
    font-size: clamp(140px, 15vw, 225px);
  }

  .foundation-impact-image img {
    height: 570px;
  }
}


/* =========================================================
   SECTION 05 — TABLET
   ========================================================= */

@media (max-width: 1000px) {

  .foundation-impact {
    padding: 125px 7vw 140px;
  }

  .foundation-impact-top {
    margin-bottom: 75px;
  }

  .foundation-impact-main {
    grid-template-columns: minmax(0, 1fr) minmax(280px, 0.7fr);

    gap: 60px;
  }

  .foundation-impact-heading h2 {
    font-size: clamp(100px, 15vw, 165px);
  }

  .foundation-impact-content .foundation-impact-lead {
    font-size: 29px;
  }

  .foundation-impact-bottom {
    grid-template-columns: minmax(250px, 0.7fr) minmax(0, 1fr);

    gap: 60px;

    margin-top: 105px;
  }

  .foundation-impact-statement {
    font-size: 34px;
  }

  .foundation-impact-image img {
    height: 500px;
  }
}


/* =========================================================
   SECTION 05 — MOBILE
   ========================================================= */

@media (max-width: 800px) {

  .foundation-impact {
    padding: 100px 6.5vw 110px;
  }


  /* -------------------------------------------------------
     MOBILE TOP BAR
     ------------------------------------------------------- */

  .foundation-impact-top {
    display: flex;
    align-items: center;
    justify-content: space-between;

    margin-bottom: 55px;
  }

  .foundation-impact-marker {
    gap: 12px;

    font-size: 7px;
    letter-spacing: 0.18em;
  }

  .foundation-impact-rule {
    width: 29px;
  }

  .foundation-impact-location {
    font-size: 7px;
    letter-spacing: 0.14em;
  }


  /* -------------------------------------------------------
     MOBILE MAIN
     ------------------------------------------------------- */

  .foundation-impact-main {
    display: flex;
    flex-direction: column;

    gap: 43px;

    align-items: stretch;
  }


  /* -------------------------------------------------------
     MOBILE HEADING
     ------------------------------------------------------- */

  .foundation-impact-kicker {
    margin-bottom: 20px;

    font-size: 7px;
    letter-spacing: 0.17em;
  }

  .foundation-impact-heading h2 {
    font-size: clamp(105px, 31vw, 165px);
    line-height: 0.68;
    letter-spacing: -0.07em;
  }

  .foundation-impact-heading h2 em {
    margin-left: 0.06em;
  }


  /* -------------------------------------------------------
     MOBILE CONTENT
     ------------------------------------------------------- */

  .foundation-impact-content {
    max-width: 100%;

    padding-bottom: 0;
  }

  .foundation-impact-content .foundation-impact-lead {
    margin-bottom: 25px;

    font-size: 26px;
    line-height: 1.25;
  }

  .foundation-impact-content p {
    margin-bottom: 20px;

    font-size: 12px;
    line-height: 1.9;
  }


  /* -------------------------------------------------------
     MOBILE STAT
     ------------------------------------------------------- */

  .foundation-impact-stat {
    margin-top: 37px;
    padding-top: 21px;
  }

  .foundation-impact-stat-value {
    font-size: 62px;
  }

  .foundation-impact-stat-label {
    margin-top: 11px;

    font-size: 6.5px;
    letter-spacing: 0.16em;
  }


  /* -------------------------------------------------------
     MOBILE BOTTOM
     ------------------------------------------------------- */

  .foundation-impact-bottom {
    display: flex;
    flex-direction: column;

    gap: 39px;

    margin-top: 70px;

    align-items: stretch;
  }

  .foundation-impact-statement {
    max-width: 90vw;

    padding-bottom: 0;

    font-size: 31px;
    line-height: 1.03;
  }

  .foundation-impact-image {
    width: 100%;
  }

  .foundation-impact-image img {
    width: 100%;
    height: 112vw;

    max-height: 560px;

    object-position: center;

    transform: none;
  }

  .foundation-impact-image:hover img {
    transform: none;
  }
}


/* =========================================================
   SECTION 05 — SMALL MOBILE
   ========================================================= */

@media (max-width: 420px) {

  .foundation-impact {
    padding: 85px 7vw 95px;
  }

  .foundation-impact-top {
    margin-bottom: 48px;
  }

  .foundation-impact-location {
    display: none;
  }

  .foundation-impact-main {
    gap: 38px;
  }

  .foundation-impact-heading h2 {
    font-size: clamp(95px, 30vw, 140px);
  }

  .foundation-impact-content .foundation-impact-lead {
    font-size: 24px;
  }

  .foundation-impact-content p {
    font-size: 11.5px;
    line-height: 1.85;
  }

  .foundation-impact-stat {
    margin-top: 32px;
  }

  .foundation-impact-stat-value {
    font-size: 57px;
  }

  .foundation-impact-bottom {
    gap: 34px;

    margin-top: 61px;
  }

  .foundation-impact-statement {
    font-size: 28px;
  }

  .foundation-impact-image img {
    height: 115vw;
  }
}


/* =========================================================
   SECTION 05 — REDUCED MOTION
   ========================================================= */

@media (prefers-reduced-motion: reduce) {

  .foundation-impact *,
  .foundation-impact *::before,
  .foundation-impact *::after {
    transition: none !important;
    animation: none !important;
  }

  .foundation-impact-image img {
    transform: none !important;
  }
}

/* =========================================================
   FOUNDATION — SECTION 06
   LEGACY & THE FUTURE
   ========================================================= */

.foundation-legacy {
  position: relative;

  padding: 155px 7vw 165px;

  background: var(--obsidian);
  color: var(--ivory);

  overflow: hidden;
}

.foundation-legacy-inner {
  width: 100%;
  max-width: 1440px;
  margin: 0 auto;
}


/* =========================================================
   SECTION 06 — TOP BAR
   ========================================================= */

.foundation-legacy-top {
  display: flex;
  align-items: center;
  justify-content: space-between;

  margin-bottom: 92px;
}

.foundation-legacy-marker {
  display: flex;
  align-items: center;
  gap: 15px;

  font-family: "DM Sans", sans-serif;
  font-size: 8px;
  font-weight: 500;
  line-height: 1;
  letter-spacing: 0.22em;
  text-transform: uppercase;

  color: rgba(244, 240, 231, 0.45);
}

.foundation-legacy-number {
  color: var(--gold);
}

.foundation-legacy-rule {
  width: 40px;
  height: 1px;

  flex: 0 0 auto;

  background: var(--gold-soft);
}

.foundation-legacy-location {
  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.35);
}


/* =========================================================
   SECTION 06 — MAIN GRID
   ========================================================= */

.foundation-legacy-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(360px, 0.78fr);

  gap: clamp(75px, 11vw, 170px);

  align-items: center;
}


/* =========================================================
   SECTION 06 — CONTENT
   ========================================================= */

.foundation-legacy-content {
  max-width: 720px;
}

.foundation-legacy-kicker {
  margin-bottom: 23px;

  font-family: "DM Sans", sans-serif;
  font-size: 8px;
  font-weight: 500;
  line-height: 1.4;
  letter-spacing: 0.20em;
  text-transform: uppercase;

  color: var(--gold);
}

.foundation-legacy-content h2 {
  max-width: 760px;

  font-family: "Cormorant Garamond", serif;
  font-size: clamp(70px, 8vw, 120px);
  font-weight: 300;
  line-height: 0.81;
  letter-spacing: -0.06em;

  color: var(--ivory);
}

.foundation-legacy-content h2 em {
  display: inline-block;

  margin-left: 0.38em;

  font-style: italic;
  font-weight: 300;

  letter-spacing: -0.06em;

  color: var(--gold);
}


/* =========================================================
   SECTION 06 — COPY
   ========================================================= */

.foundation-legacy-copy {
  max-width: 530px;

  margin-top: 50px;
  padding-left: 2px;
}

.foundation-legacy-copy p {
  margin-bottom: 25px;

  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.62);
}

.foundation-legacy-copy .foundation-legacy-lead {
  margin-bottom: 31px;

  font-family: "Cormorant Garamond", serif;
  font-size: clamp(27px, 2.45vw, 36px);
  font-weight: 400;
  line-height: 1.23;
  letter-spacing: -0.02em;

  color: var(--ivory);
}


/* =========================================================
   SECTION 06 — IMAGE
   ========================================================= */

.foundation-legacy-media {
  position: relative;

  width: 100%;
  margin: 0;

  overflow: hidden;
}

.foundation-legacy-image {
  width: 100%;
  height: min(650px, 52vw);

  object-fit: cover;
  object-position: center;

  transform: scale(1.015);

  transition: transform 1.4s var(--ease);
}

.foundation-legacy-media:hover .foundation-legacy-image {
  transform: scale(1.035);
}

.foundation-legacy-caption {
  display: flex;
  align-items: center;
  gap: 14px;

  margin-top: 17px;

  font-family: "DM Sans", sans-serif;
  font-size: 7px;
  font-weight: 500;
  line-height: 1;
  letter-spacing: 0.18em;
  text-transform: uppercase;

  color: rgba(244, 240, 231, 0.40);
}

.foundation-legacy-caption span:first-child {
  color: var(--gold);
}


/* =========================================================
   SECTION 06 — CLOSING STATEMENT
   ========================================================= */

.foundation-legacy-closing {
  display: flex;
  align-items: flex-start;
  gap: 22px;

  max-width: 650px;

  margin-top: 125px;
  margin-left: 42%;
}

.foundation-legacy-closing-rule {
  width: 42px;
  height: 1px;

  flex: 0 0 auto;

  margin-top: 17px;

  background: var(--gold-soft);
}

.foundation-legacy-closing p {
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(32px, 3.2vw, 49px);
  font-weight: 300;
  line-height: 1.02;
  letter-spacing: -0.025em;

  color: var(--ivory);
}


/* =========================================================
   SECTION 06 — LARGE DESKTOP
   ========================================================= */

@media (min-width: 1400px) {

  .foundation-legacy {
    padding-left: 8vw;
    padding-right: 8vw;
  }

  .foundation-legacy-content h2 {
    font-size: clamp(78px, 8vw, 120px);
  }

  .foundation-legacy-image {
    height: 650px;
  }
}


/* =========================================================
   SECTION 06 — TABLET
   ========================================================= */

@media (max-width: 1000px) {

  .foundation-legacy {
    padding: 125px 7vw 140px;
  }

  .foundation-legacy-top {
    margin-bottom: 72px;
  }

  .foundation-legacy-grid {
    grid-template-columns: minmax(0, 1fr) minmax(280px, 0.72fr);

    gap: 60px;
  }

  .foundation-legacy-content h2 {
    font-size: clamp(61px, 8.5vw, 92px);
  }

  .foundation-legacy-copy {
    margin-top: 41px;
  }

  .foundation-legacy-copy .foundation-legacy-lead {
    font-size: 29px;
  }

  .foundation-legacy-image {
    height: 590px;
  }

  .foundation-legacy-closing {
    margin-top: 100px;
    margin-left: 34%;
  }

  .foundation-legacy-closing p {
    font-size: 36px;
  }
}


/* =========================================================
   SECTION 06 — MOBILE
   ========================================================= */

@media (max-width: 800px) {

  .foundation-legacy {
    padding: 100px 6.5vw 110px;
  }


  /* -------------------------------------------------------
     MOBILE TOP BAR
     ------------------------------------------------------- */

  .foundation-legacy-top {
    margin-bottom: 52px;
  }

  .foundation-legacy-marker {
    gap: 12px;

    font-size: 7px;
    letter-spacing: 0.18em;
  }

  .foundation-legacy-rule {
    width: 29px;
  }

  .foundation-legacy-location {
    font-size: 7px;
    letter-spacing: 0.13em;
  }


  /* -------------------------------------------------------
     MOBILE MAIN
     ------------------------------------------------------- */

  .foundation-legacy-grid {
    display: flex;
    flex-direction: column;

    gap: 48px;

    align-items: stretch;
  }


  /* -------------------------------------------------------
     MOBILE CONTENT FIRST
     ------------------------------------------------------- */

  .foundation-legacy-content {
    order: 1;

    max-width: 100%;
  }

  .foundation-legacy-media {
    order: 2;
  }


  /* -------------------------------------------------------
     MOBILE HEADING
     ------------------------------------------------------- */

  .foundation-legacy-kicker {
    margin-bottom: 19px;

    font-size: 7px;
    letter-spacing: 0.17em;
  }

  .foundation-legacy-content h2 {
    max-width: 94vw;

    font-size: clamp(53px, 15vw, 79px);
    line-height: 0.86;
  }

  .foundation-legacy-content h2 em {
    margin-left: 0.24em;
  }


  /* -------------------------------------------------------
     MOBILE COPY
     ------------------------------------------------------- */

  .foundation-legacy-copy {
    max-width: 100%;

    margin-top: 36px;
    padding-left: 0;
  }

  .foundation-legacy-copy .foundation-legacy-lead {
    margin-bottom: 26px;

    font-size: 26px;
    line-height: 1.25;
  }

  .foundation-legacy-copy p {
    margin-bottom: 21px;

    font-size: 12px;
    line-height: 1.9;
  }


  /* -------------------------------------------------------
     MOBILE IMAGE
     ------------------------------------------------------- */

  .foundation-legacy-image {
    width: 100%;
    height: 118vw;

    max-height: 590px;

    object-position: center;

    transform: none;
  }

  .foundation-legacy-media:hover .foundation-legacy-image {
    transform: none;
  }

  .foundation-legacy-caption {
    margin-top: 14px;

    font-size: 6.5px;
  }


  /* -------------------------------------------------------
     MOBILE CLOSING
     ------------------------------------------------------- */

  .foundation-legacy-closing {
    gap: 15px;

    max-width: 100%;

    margin-top: 68px;
    margin-left: 0;
  }

  .foundation-legacy-closing-rule {
    width: 27px;

    margin-top: 13px;
  }

  .foundation-legacy-closing p {
    font-size: 31px;
    line-height: 1.03;
  }
}


/* =========================================================
   SECTION 06 — SMALL MOBILE
   ========================================================= */

@media (max-width: 420px) {

  .foundation-legacy {
    padding: 85px 7vw 95px;
  }

  .foundation-legacy-top {
    margin-bottom: 45px;
  }

  .foundation-legacy-location {
    display: none;
  }

  .foundation-legacy-grid {
    gap: 41px;
  }

  .foundation-legacy-content h2 {
    font-size: clamp(48px, 14.8vw, 67px);
  }

  .foundation-legacy-copy {
    margin-top: 31px;
  }

  .foundation-legacy-copy .foundation-legacy-lead {
    font-size: 24px;
  }

  .foundation-legacy-copy p {
    font-size: 11.5px;
    line-height: 1.85;
  }

  .foundation-legacy-image {
    height: 120vw;
  }

  .foundation-legacy-closing {
    margin-top: 59px;
  }

  .foundation-legacy-closing p {
    font-size: 28px;
  }
}


/* =========================================================
   SECTION 06 — REDUCED MOTION
   ========================================================= */

@media (prefers-reduced-motion: reduce) {

  .foundation-legacy *,
  .foundation-legacy *::before,
  .foundation-legacy *::after {
    transition: none !important;
    animation: none !important;
  }

  .foundation-legacy-image {
    transform: none !important;
  }
}

/* =========================================================
   FOUNDATION — CLOSING
   THE WORK CONTINUES
   ========================================================= */

.foundation-closing {
  position: relative;

  min-height: 760px;

  padding: 145px 7vw 120px;

  background: #e8e1d4;
  color: var(--obsidian);

  overflow: hidden;
}

.foundation-closing-inner {
  position: relative;

  width: 100%;
  max-width: 1440px;
  min-height: 490px;

  margin: 0 auto;

  display: flex;
  flex-direction: column;
}


/* =========================================================
   CLOSING — MARKER
   ========================================================= */

.foundation-closing-marker {
  display: flex;
  align-items: center;
  gap: 15px;

  font-family: "DM Sans", sans-serif;
  font-size: 8px;
  font-weight: 500;
  line-height: 1;
  letter-spacing: 0.22em;
  text-transform: uppercase;

  color: rgba(17, 17, 15, 0.45);
}

.foundation-closing-marker span:first-child {
  color: var(--gold);
}

.foundation-closing-rule {
  width: 40px;
  height: 1px;

  flex: 0 0 auto;

  background: var(--gold-soft);
}


/* =========================================================
   CLOSING — MAIN CONTENT
   ========================================================= */

.foundation-closing-content {
  max-width: 900px;

  margin-top: 100px;
}

.foundation-closing-kicker {
  margin-bottom: 24px;

  font-family: "DM Sans", sans-serif;
  font-size: 8px;
  font-weight: 500;
  line-height: 1.4;
  letter-spacing: 0.20em;
  text-transform: uppercase;

  color: rgba(17, 17, 15, 0.48);
}

.foundation-closing-content h2 {
  max-width: 900px;

  font-family: "Cormorant Garamond", serif;
  font-size: clamp(76px, 9vw, 136px);
  font-weight: 300;
  line-height: 0.78;
  letter-spacing: -0.06em;

  color: var(--obsidian);
}

.foundation-closing-content h2 em {
  display: inline-block;

  margin-left: 0.40em;

  font-style: italic;
  font-weight: 300;

  letter-spacing: -0.06em;

  color: var(--gold);
}


/* =========================================================
   CLOSING — COPY
   ========================================================= */

.foundation-closing-copy {
  max-width: 475px;

  margin-top: 45px;
  margin-left: 25%;

  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.63);
}


/* =========================================================
   CLOSING — LINK
   ========================================================= */

.foundation-closing-link {
  display: inline-flex;
  align-items: center;
  gap: 18px;

  margin-top: 38px;
  margin-left: 25%;

  padding-bottom: 9px;

  border-bottom: 1px solid rgba(213, 182, 116, 0.65);

  font-family: "DM Sans", sans-serif;
  font-size: 8px;
  font-weight: 500;
  line-height: 1;
  letter-spacing: 0.18em;
  text-transform: uppercase;

  color: var(--obsidian);

  transition:
    color 0.35s ease,
    border-color 0.35s ease;
}

.foundation-closing-link-arrow {
  font-size: 13px;
  font-weight: 300;
  line-height: 1;

  color: var(--gold);

  transition: transform 0.45s var(--ease);
}

.foundation-closing-link:hover {
  color: var(--gold);

  border-color: var(--gold);
}

.foundation-closing-link:hover .foundation-closing-link-arrow {
  transform: translate(3px, -3px);
}


/* =========================================================
   CLOSING — SIGNATURE
   ========================================================= */

.foundation-closing-signature {
  position: absolute;

  right: 0;
  bottom: 0;

  display: flex;
  flex-direction: column;
  align-items: flex-end;

  text-align: right;
}

.foundation-closing-signature-line {
  width: 42px;
  height: 1px;

  margin-bottom: 17px;

  background: var(--gold-soft);
}

.foundation-closing-signature p {
  font-family: "Cormorant Garamond", serif;
  font-size: 25px;
  font-weight: 400;
  line-height: 1.1;
  letter-spacing: -0.01em;

  color: var(--obsidian);
}

.foundation-closing-signature span:last-child {
  margin-top: 8px;

  font-family: "DM Sans", sans-serif;
  font-size: 7px;
  font-weight: 500;
  line-height: 1.5;
  letter-spacing: 0.16em;
  text-transform: uppercase;

  color: rgba(17, 17, 15, 0.45);
}


/* =========================================================
   CLOSING — LARGE DESKTOP
   ========================================================= */

@media (min-width: 1400px) {

  .foundation-closing {
    padding-left: 8vw;
    padding-right: 8vw;
  }

  .foundation-closing-content h2 {
    font-size: clamp(82px, 9vw, 136px);
  }
}


/* =========================================================
   CLOSING — TABLET
   ========================================================= */

@media (max-width: 1000px) {

  .foundation-closing {
    min-height: 700px;

    padding: 125px 7vw 105px;
  }

  .foundation-closing-content {
    margin-top: 80px;
  }

  .foundation-closing-content h2 {
    font-size: clamp(65px, 9vw, 100px);
  }

  .foundation-closing-copy,
  .foundation-closing-link {
    margin-left: 20%;
  }
}


/* =========================================================
   CLOSING — MOBILE
   ========================================================= */

@media (max-width: 800px) {

  .foundation-closing {
    min-height: auto;

    padding: 100px 6.5vw 85px;
  }

  .foundation-closing-inner {
    min-height: 0;
  }


  /* -------------------------------------------------------
     MOBILE MARKER
     ------------------------------------------------------- */

  .foundation-closing-marker {
    gap: 12px;

    font-size: 7px;
    letter-spacing: 0.18em;
  }

  .foundation-closing-rule {
    width: 29px;
  }


  /* -------------------------------------------------------
     MOBILE CONTENT
     ------------------------------------------------------- */

  .foundation-closing-content {
    max-width: 100%;

    margin-top: 58px;
  }

  .foundation-closing-kicker {
    margin-bottom: 20px;

    font-size: 7px;
    letter-spacing: 0.17em;
  }

  .foundation-closing-content h2 {
    max-width: 94vw;

    font-size: clamp(53px, 15vw, 79px);
    line-height: 0.85;
  }

  .foundation-closing-content h2 em {
    margin-left: 0.24em;
  }


  /* -------------------------------------------------------
     MOBILE COPY
     ------------------------------------------------------- */

  .foundation-closing-copy {
    max-width: 100%;

    margin-top: 35px;
    margin-left: 0;

    font-size: 12px;
    line-height: 1.9;
  }


  /* -------------------------------------------------------
     MOBILE LINK
     ------------------------------------------------------- */

  .foundation-closing-link {
    margin-top: 32px;
    margin-left: 0;

    font-size: 7px;
    letter-spacing: 0.16em;
  }


  /* -------------------------------------------------------
     MOBILE SIGNATURE
     ------------------------------------------------------- */

  .foundation-closing-signature {
    position: relative;

    right: auto;
    bottom: auto;

    align-items: flex-start;

    margin-top: 82px;

    text-align: left;
  }

  .foundation-closing-signature-line {
    width: 29px;

    margin-bottom: 14px;
  }

  .foundation-closing-signature p {
    font-size: 23px;
  }

  .foundation-closing-signature span:last-child {
    margin-top: 7px;

    font-size: 6.5px;
    letter-spacing: 0.13em;
  }
}


/* =========================================================
   CLOSING — SMALL MOBILE
   ========================================================= */

@media (max-width: 420px) {

  .foundation-closing {
    padding: 85px 7vw 75px;
  }

  .foundation-closing-content {
    margin-top: 50px;
  }

  .foundation-closing-content h2 {
    font-size: clamp(48px, 14.8vw, 67px);
  }

  .foundation-closing-copy {
    margin-top: 31px;

    font-size: 11.5px;
    line-height: 1.85;
  }

  .foundation-closing-link {
    margin-top: 29px;
  }

  .foundation-closing-signature {
    margin-top: 68px;
  }

  .foundation-closing-signature p {
    font-size: 21px;
  }
}


/* =========================================================
   CLOSING — REDUCED MOTION
   ========================================================= */

@media (prefers-reduced-motion: reduce) {

  .foundation-closing *,
  .foundation-closing *::before,
  .foundation-closing *::after {
    transition: none !important;
    animation: none !important;
  }
}

/* =========================================================
   GLOBAL ROYAL FOOTER
========================================================== */

.royal-footer {
    position: relative;

    background: #0b0c0b;
    color: var(--ivory);

    padding: 95px 7vw 28px;

    border-top: 1px solid rgba(213,182,116,.18);
}

.royal-footer-inner {
    width: 100%;
    max-width: 1440px;
    margin: 0 auto;
}


/* =========================================================
   TOP
========================================================== */

.royal-footer-top {
    display: grid;
    grid-template-columns: 1.45fr .7fr .85fr;

    gap: 7vw;

    padding-bottom: 85px;
}


/* =========================================================
   IDENTITY
========================================================== */

.royal-footer-identity {
    display: flex;
    align-items: flex-start;

    gap: 35px;
}

.royal-footer-mark {
    position: relative;

    display: flex;
    align-items: center;
    justify-content: center;

    flex: 0 0 72px;

    width: 72px;
    height: 72px;

    margin-top: 7px;

    text-decoration: none;
}

.royal-footer-mark-ring {
    position: absolute;

    display: block;

    border: 1px solid rgba(213,182,116,.65);
    border-radius: 50%;
}

.ring-one {
    width: 72px;
    height: 72px;
}

.ring-two {
    width: 46px;
    height: 46px;
}

.ring-three {
    width: 21px;
    height: 21px;
}

.royal-footer-name {
    max-width: 420px;
}

.royal-footer-kicker {
    display: block;

    margin-bottom: 15px;

    font-family: "DM Sans", sans-serif;
    font-size: 8px;
    font-weight: 500;
    letter-spacing: .2em;
    text-transform: uppercase;

    color: var(--gold);
}

.royal-footer-name h2 {
    margin: 0;

    font-family: "Cormorant Garamond", serif;
    font-size: clamp(42px, 4vw, 64px);
    font-weight: 300;
    line-height: .82;
    letter-spacing: -.035em;
}

.royal-footer-name p {
    margin: 22px 0 0;

    font-family: "DM Sans", sans-serif;
    font-size: 9px;
    font-weight: 300;
    line-height: 1.75;
    letter-spacing: .08em;
    text-transform: uppercase;

    color: rgba(244,240,231,.38);
}


/* =========================================================
   NAVIGATION + CONTACT
========================================================== */

.royal-footer-navigation,
.royal-footer-contact {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.royal-footer-nav-title {
    display: block;

    margin-bottom: 25px;

    font-family: "DM Sans", sans-serif;
    font-size: 8px;
    font-weight: 500;
    letter-spacing: .19em;
    text-transform: uppercase;

    color: var(--gold);
}

.royal-footer-navigation a,
.royal-footer-contact a {
    display: inline-block;

    margin-bottom: 12px;

    font-family: "DM Sans", sans-serif;
    font-size: 10px;
    font-weight: 300;

    color: rgba(244,240,231,.58);

    text-decoration: none;

    transition:
        color .3s var(--ease),
        transform .3s var(--ease);
}

.royal-footer-navigation a:hover,
.royal-footer-contact a:hover {
    color: var(--gold);
    transform: translateX(4px);
}

.royal-footer-location {
    margin-top: 13px;

    font-family: "DM Sans", sans-serif;
    font-size: 8px;
    font-weight: 300;
    line-height: 1.7;
    letter-spacing: .12em;
    text-transform: uppercase;

    color: rgba(244,240,231,.28);
}


/* =========================================================
   MIDDLE
========================================================== */

.royal-footer-middle {
    display: grid;
    grid-template-columns: 1.45fr .55fr;

    gap: 7vw;

    padding: 35px 0 45px;

    border-top: 1px solid rgba(244,240,231,.1);
    border-bottom: 1px solid rgba(244,240,231,.1);
}

.royal-footer-motto > span,
.royal-footer-socials > span {
    display: block;

    margin-bottom: 14px;

    font-family: "DM Sans", sans-serif;
    font-size: 8px;
    font-weight: 500;
    letter-spacing: .18em;
    text-transform: uppercase;

    color: var(--gold);
}

.royal-footer-motto p {
    max-width: 650px;

    margin: 0;

    font-family: "Cormorant Garamond", serif;
    font-size: clamp(23px, 2.3vw, 32px);
    font-weight: 300;
    line-height: 1.15;

    color: rgba(244,240,231,.68);
}

.royal-footer-socials {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.royal-footer-socials a {
    display: flex;
    justify-content: space-between;

    width: 100%;
    max-width: 240px;

    padding: 10px 0;

    border-bottom: 1px solid rgba(244,240,231,.1);

    font-family: "DM Sans", sans-serif;
    font-size: 9px;
    font-weight: 500;
    letter-spacing: .14em;
    text-transform: uppercase;

    color: rgba(244,240,231,.5);

    text-decoration: none;

    transition: color .3s var(--ease);
}

.royal-footer-socials a:first-of-type {
    border-top: 1px solid rgba(244,240,231,.1);
}

.royal-footer-socials a:hover {
    color: var(--gold);
}


/* =========================================================
   BOTTOM
========================================================== */

.royal-footer-bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;

    gap: 30px;

    padding-top: 25px;

    font-family: "DM Sans", sans-serif;
    font-size: 7px;
    font-weight: 400;
    letter-spacing: .13em;
    text-transform: uppercase;

    color: rgba(244,240,231,.24);
}

.royal-footer-bottom a {
    display: inline-flex;
    align-items: center;
    gap: 10px;

    color: rgba(244,240,231,.38);

    text-decoration: none;

    transition: color .3s var(--ease);
}

.royal-footer-bottom a:hover {
    color: var(--gold);
}


/* =========================================================
   MOBILE
========================================================== */

@media screen and (max-width: 800px) {

    .royal-footer {
        padding: 75px 6.5vw 25px;
    }

    .royal-footer-top {
        display: block;

        padding-bottom: 60px;
    }

    .royal-footer-identity {
        gap: 22px;
    }

    .royal-footer-mark {
        flex: 0 0 55px;

        width: 55px;
        height: 55px;
    }

    .ring-one {
        width: 55px;
        height: 55px;
    }

    .ring-two {
        width: 36px;
        height: 36px;
    }

    .ring-three {
        width: 17px;
        height: 17px;
    }

    .royal-footer-name h2 {
        font-size: clamp(40px, 11vw, 55px);
    }

    .royal-footer-name p {
        max-width: 290px;

        font-size: 8px;
    }


    .royal-footer-navigation {
        margin-top: 55px;
    }

    .royal-footer-contact {
        margin-top: 48px;
    }


    .royal-footer-middle {
        display: block;

        padding: 35px 0 40px;
    }

    .royal-footer-motto {
        margin-bottom: 40px;
    }

    .royal-footer-motto p {
        font-size: 25px;
        line-height: 1.12;
    }

    .royal-footer-socials a {
        max-width: none;
    }


    .royal-footer-bottom {
        display: grid;
        grid-template-columns: 1fr 1fr;

        gap: 18px;

        line-height: 1.6;
    }

    .royal-footer-bottom > span:first-child {
        grid-column: span 2;
    }

    .royal-footer-bottom > span:nth-child(2) {
        text-align: left;
    }

    .royal-footer-bottom a {
        justify-self: end;
    }

}


/* =========================================================
   PREMIUM ROYAL FOOTER ARROWS
   Clean SVG system — no pseudo-elements
========================================================= */


/* ---------------------------------------------------------
   SOCIAL LINKS
--------------------------------------------------------- */

.royal-footer-socials a {
    display: flex;
    align-items: center;
    justify-content: space-between;

    width: 100%;
    max-width: 240px;

    padding: 12px 0;

    border-bottom: 1px solid rgba(244, 240, 231, .10);

    color: rgba(244, 240, 231, .50);

    text-decoration: none;

    transition:
        color .35s var(--ease),
        padding-left .35s var(--ease);
}


/* First social item gets a top rule */

.royal-footer-socials a:first-of-type {
    border-top: 1px solid rgba(244, 240, 231, .10);
}


/* Hover */

.royal-footer-socials a:hover {
    color: var(--gold);
    padding-left: 5px;
}


/* ---------------------------------------------------------
   EXTERNAL / SOCIAL ARROW
--------------------------------------------------------- */

.royal-footer-social-arrow {
    display: inline-flex;

    align-items: center;
    justify-content: center;

    width: 18px;
    height: 18px;

    flex: 0 0 18px;

    margin-left: 24px;

    color: currentColor;

    transition:
        transform .45s var(--ease),
        color .35s var(--ease);
}


/* Actual SVG */

.royal-footer-social-arrow svg {
    display: block;

    width: 18px;
    height: 18px;

    fill: none;

    stroke: currentColor;

    stroke-width: 1.15;

    stroke-linecap: round;
    stroke-linejoin: round;

    overflow: visible;
}


/* Refined diagonal movement */

.royal-footer-socials a:hover
.royal-footer-social-arrow {
    transform: translate(3px, -3px);
}


/* ---------------------------------------------------------
   BACK TO TOP
--------------------------------------------------------- */

.royal-footer-bottom a {
    display: inline-flex;

    align-items: center;

    gap: 11px;

    color: rgba(244, 240, 231, .38);

    text-decoration: none;

    transition:
        color .35s var(--ease);
}


/* Back-to-top arrow */

.royal-footer-bottom
.royal-footer-social-arrow {
    display: inline-flex;

    align-items: center;
    justify-content: center;

    width: 15px;
    height: 15px;

    flex: 0 0 15px;

    margin-left: 2px;

    color: currentColor;

    transition:
        transform .4s var(--ease),
        color .35s var(--ease);
}


/* Back-to-top SVG */

.royal-footer-bottom
.royal-footer-social-arrow svg {
    display: block;

    width: 15px;
    height: 15px;

    fill: none;

    stroke: currentColor;

    stroke-width: 1.15;

    stroke-linecap: round;
    stroke-linejoin: round;
}


/* Hover */

.royal-footer-bottom a:hover {
    color: var(--gold);
}

.royal-footer-bottom a:hover
.royal-footer-social-arrow {
    transform: translateY(-3px);
}


/* ---------------------------------------------------------
   MOBILE
--------------------------------------------------------- */

@media screen and (max-width: 800px) {

    .royal-footer-socials a {
        max-width: none;
        padding: 13px 0;
    }

    .royal-footer-social-arrow {
        width: 17px;
        height: 17px;

        flex-basis: 17px;

        margin-left: 20px;
    }

    .royal-footer-social-arrow svg {
        width: 17px;
        height: 17px;
    }

    .royal-footer-bottom
    .royal-footer-social-arrow {
        width: 14px;
        height: 14px;

        flex-basis: 14px;
    }

    .royal-footer-bottom
    .royal-footer-social-arrow svg {
        width: 14px;
        height: 14px;
    }

}

/* =========================================================
   ARROW SYSTEM — SVG, NOT UNICODE GLYPHS
   ========================================================= */

.foundation-hero-scroll-arrow {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 18px;
  height: 18px;
  flex: 0 0 18px;
  font-size: 0;
}

.foundation-hero-scroll-arrow svg {
  display: block;
  width: 18px;
  height: 18px;
  overflow: visible;
}

.foundation-hero-scroll-arrow svg path {
  fill: none;
  stroke: currentColor;
  stroke-width: 1.35;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.foundation-skill-arrow {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 18px;
  height: 18px;
  flex: 0 0 18px;
  font-size: 0;
}

.foundation-skill-arrow svg {
  display: block;
  width: 18px;
  height: 18px;
  overflow: visible;
}

.foundation-skill-arrow svg path {
  fill: none;
  stroke: currentColor;
  stroke-width: 1.35;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.foundation-closing-link-arrow {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 18px;
  height: 18px;
  flex: 0 0 18px;
  font-size: 0;
}

.foundation-closing-link-arrow svg {
  display: block;
  width: 18px;
  height: 18px;
  overflow: visible;
}

.foundation-closing-link-arrow svg path {
  fill: none;
  stroke: currentColor;
  stroke-width: 1.35;
  stroke-linecap: round;
  stroke-linejoin: round;
}

/* =========================================================
   GLOBAL PRIVACY NOTICE
   Matches the Royal House visual system
========================================================= */

.privacy-notice {
    position: fixed;
    left: 0;
    right: 0;
    bottom: 0;

    width: 100%;
    box-sizing: border-box;

    z-index: 9998;

    background: rgba(17, 17, 15, 0.98);
    border-top: 1px solid rgba(213, 182, 116, 0.22);

    color: rgba(244, 240, 231, 0.68);

    opacity: 0;
    visibility: hidden;
    transform: translateY(100%);

    transition:
        opacity 0.35s ease,
        transform 0.45s cubic-bezier(.25,.1,.25,1),
        visibility 0s linear .45s;
}

.privacy-notice.is-visible {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);

    transition:
        opacity 0.35s ease,
        transform 0.45s cubic-bezier(.25,.1,.25,1),
        visibility 0s linear 0s;
}

.privacy-notice-inner {
    width: min(100% - 12vw, 1500px);
    margin: 0 auto;

    min-height: 76px;

    display: flex;
    align-items: center;
    justify-content: space-between;

    gap: 40px;
}

.privacy-notice-copy {
    min-width: 0;
}

.privacy-notice-kicker {
    display: block;

    margin-bottom: 6px;

    color: #d5b674;

    font-family: "DM Sans", sans-serif;
    font-size: 8px;
    font-weight: 500;
    line-height: 1;
    letter-spacing: .18em;
    text-transform: uppercase;
}

.privacy-notice-copy p {
    margin: 0;

    max-width: 850px;

    color: rgba(244, 240, 231, .58);

    font-family: "DM Sans", sans-serif;
    font-size: 8px;
    font-weight: 400;
    line-height: 1.7;
    letter-spacing: .035em;
}

.privacy-notice-actions {
    flex: 0 0 auto;

    display: flex;
    align-items: center;
    gap: 24px;
}

.privacy-notice-actions a,
.privacy-notice-actions a:visited {
    color: #d5b674;

    font-family: "DM Sans", sans-serif;
    font-size: 7px;
    font-weight: 500;
    line-height: 1;
    letter-spacing: .16em;
    text-transform: uppercase;

    text-decoration: none;

    white-space: nowrap;

    transition: color .3s ease;
}

.privacy-notice-actions a:hover {
    color: #f4f0e7;
    text-decoration: none;
}

.privacy-notice-actions a:focus-visible {
    color: #f4f0e7;
    outline: 1px solid #d5b674;
    outline-offset: 5px;
}

.privacy-notice-actions button {
    appearance: none;
    border: 0;
    padding: 0;

    background: transparent;

    color: rgba(244, 240, 231, .48);

    font-family: "DM Sans", sans-serif;
    font-size: 7px;
    font-weight: 500;
    line-height: 1;
    letter-spacing: .16em;
    text-transform: uppercase;

    cursor: pointer;

    white-space: nowrap;

    transition:
        color .3s ease,
        opacity .3s ease;
}

.privacy-notice-actions button:hover {
    color: #f4f0e7;
}

.privacy-notice-actions button:focus-visible {
    color: #f4f0e7;
    outline: 1px solid #d5b674;
    outline-offset: 5px;
}


/* =========================================================
   LEGAL LINKS INSERTED BY site.js
========================================================= */

.royal-footer-legal-links {
    display: flex;
    align-items: center;
    justify-content: flex-end;

    flex-wrap: wrap;

    gap: 10px 22px;

    margin-top: 24px;
}

.royal-footer-legal-links a,
.royal-footer-legal-links a:visited {
    color: rgba(244, 240, 231, .42);

    font-family: "DM Sans", sans-serif;
    font-size: 7px;
    font-weight: 500;
    line-height: 1.4;
    letter-spacing: .14em;
    text-transform: uppercase;

    text-decoration: none;

    transition: color .3s ease;
}

.royal-footer-legal-links a:hover {
    color: #d5b674;
    text-decoration: none;
}

.royal-footer-legal-links a:focus-visible {
    color: #f4f0e7;
    text-decoration: none;

    outline: 1px solid #d5b674;
    outline-offset: 5px;
}


/* Privacy Preferences button inserted by site.js */

.royal-footer-cookie-preferences {
    appearance: none;

    border: 0;
    padding: 0;

    background: transparent;

    color: rgba(244, 240, 231, .42);

    font-family: "DM Sans", sans-serif;
    font-size: 7px;
    font-weight: 500;
    line-height: 1.4;
    letter-spacing: .14em;
    text-transform: uppercase;

    cursor: pointer;

    transition: color .3s ease;
}

.royal-footer-cookie-preferences:hover {
    color: #d5b674;
}

.royal-footer-cookie-preferences:focus-visible {
    color: #f4f0e7;

    outline: 1px solid #d5b674;
    outline-offset: 5px;
}


/* =========================================================
   MOBILE
========================================================= */

@media (max-width: 800px) {

    .privacy-notice {
        padding: 0;
    }

    .privacy-notice-inner {
        width: 100%;
        min-height: auto;

        padding: 18px 6.5vw 20px;

        display: block;
    }

    .privacy-notice-kicker {
        margin-bottom: 7px;

        font-size: 7px;
        letter-spacing: .17em;
    }

    .privacy-notice-copy p {
        max-width: none;

        font-size: 7px;
        line-height: 1.65;
    }

    .privacy-notice-actions {
        margin-top: 12px;

        display: flex;
        align-items: center;
        justify-content: space-between;

        gap: 18px;
    }

    .privacy-notice-actions a,
    .privacy-notice-actions button {
        font-size: 6.5px;
        letter-spacing: .13em;
    }


    /* Legal footer links */

    .royal-footer-legal-links {
        width: 100%;

        display: grid;
        grid-template-columns: 1fr 1fr;

        justify-content: stretch;
        align-items: start;

        gap: 14px 18px;

        margin-top: 24px;
    }

    .royal-footer-legal-links a,
    .royal-footer-cookie-preferences {
        display: block;

        font-size: 6.5px;
        letter-spacing: .12em;
    }

    .royal-footer-cookie-preferences {
        grid-column: 1 / -1;
    }
}


/* =========================================================
   SMALL PHONES
========================================================= */

@media (max-width: 420px) {

    .privacy-notice-inner {
        padding-left: 6.5vw;
        padding-right: 6.5vw;
    }

    .privacy-notice-copy p {
        font-size: 6.5px;
    }

    .privacy-notice-actions {
        gap: 12px;
    }

    .royal-footer-legal-links {
        column-gap: 14px;
    }
}


/* =========================================================
   REDUCED MOTION
========================================================= */

@media (prefers-reduced-motion: reduce) {

    .privacy-notice {
        transition: none;
    }

    .privacy-notice.is-visible {
        transition: none;
    }

    .privacy-notice-actions a,
    .privacy-notice-actions button,
    .royal-footer-legal-links a,
    .royal-footer-cookie-preferences {
        transition: none;
    }
}

/* =========================================================
   FOUNDATION — MOBILE FOOTER
   EXACT HOMEPAGE MOBILE STRUCTURE
========================================================= */

@media screen and (max-width: 800px) {

    .royal-footer-bottom {
        position: relative;

        display: grid;

        grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
        grid-template-rows: auto auto auto;

        column-gap: 24px;
        row-gap: 0;

        align-items: start;

        padding-top: 25px;
    }

    /* -----------------------------------------
       COPYRIGHT
    ----------------------------------------- */

    .royal-footer-bottom > span:first-child {
        grid-column: 1 / -1;
        grid-row: 1;

        padding-bottom: 38px;

        text-align: left;
    }


    /* -----------------------------------------
       FULL-WIDTH DIVIDER
       BETWEEN COPYRIGHT AND LOWER FOOTER
    ----------------------------------------- */

    .royal-footer-bottom::before {
        content: "";

        position: absolute;

        left: 0;
        right: 0;

        top: 82px;

        height: 1px;

        background: rgba(244, 240, 231, .10);

        pointer-events: none;
    }


    /* -----------------------------------------
       GHANA · UNITED KINGDOM
    ----------------------------------------- */

    .royal-footer-bottom > span:nth-child(2) {
        grid-column: 1;
        grid-row: 2;

        margin: 39px 0 0;

        text-align: left;

        align-self: start;
    }


    /* -----------------------------------------
       LEGAL LINKS
    ----------------------------------------- */

    .royal-footer-bottom .royal-footer-legal-links {
        grid-column: 2;
        grid-row: 2;

        width: 100%;
        max-width: none;

        margin: 39px 0 0;
        padding: 0;

        display: grid;

        grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);

        column-gap: 24px;
        row-gap: 14px;

        justify-self: stretch;
        align-self: start;

        text-align: left;
    }


    /* Individual legal links */

    .royal-footer-bottom .royal-footer-legal-links a,
    .royal-footer-bottom .royal-footer-cookie-preferences {

        display: block;

        width: auto;

        margin: 0;
        padding: 0;

        white-space: nowrap;

        text-align: left;
    }


    /* Privacy Preferences */
    .royal-footer-bottom .royal-footer-cookie-preferences {
        grid-column: 1 / -1;
    }


    /* -----------------------------------------
       BACK TO TOP
    ----------------------------------------- */

    .royal-footer-bottom > a {
        grid-column: 1 / -1;
        grid-row: 3;

        justify-self: center;

        margin-top: 39px;

        text-align: center;
    }
}


/* =========================================================
   SMALL PHONES
========================================================= */

@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;
    }
}

/* =========================================================
   FOUNDATION — FIX LEGAL LINK ALIGNMENT
   Match Homepage mobile footer exactly
========================================================= */

@media screen and (max-width: 800px) {

    .royal-footer-bottom .royal-footer-legal-links a,
    .royal-footer-bottom .royal-footer-cookie-preferences {
        justify-self: start !important;
    }

    .royal-footer-bottom .royal-footer-legal-links {
        justify-self: stretch !important;
    }

}