@font-face {
  font-family: "Playfair Display";
  src: url("../fonts/playfair-display-variable.ttf") format("truetype");
  font-style: normal;
  font-weight: 400 900;
  font-display: swap;
}

@font-face {
  font-family: "Playfair Display";
  src: url("../fonts/playfair-display-italic-variable.ttf") format("truetype");
  font-style: italic;
  font-weight: 400 900;
  font-display: swap;
}

@font-face {
  font-family: "Open Sans";
  src: url("../fonts/open-sans-variable.ttf") format("truetype");
  font-style: normal;
  font-weight: 300 800;
  font-display: swap;
}

@font-face {
  font-family: "Open Sans";
  src: url("../fonts/open-sans-italic-variable.ttf") format("truetype");
  font-style: italic;
  font-weight: 300 800;
  font-display: swap;
}

@font-face {
  font-family: "Antonio";
  src: url("../fonts/antonio-variable.ttf") format("truetype");
  font-style: normal;
  font-weight: 100 700;
  font-display: swap;
}

@font-face {
  font-family: "Corinthia";
  src: url("../fonts/corinthia-regular.ttf") format("truetype");
  font-style: normal;
  font-weight: 400;
  font-display: swap;
}

:root {
  --teal: #426a70;
  --cream: #fcf6eb;
  --paper: #f8f1e5;
  --slate: #7f8f91;
  --blue-green: #426a70;
  --orange: #ed5c09;
  --brown: #463d2f;
  --gold: #c7b299;
  --burgundy: #990033;
  --black: #000;
  --white: #fff;
  --font-heading: "Playfair Display", Georgia, serif;
  --font-body: "Open Sans", Arial, sans-serif;
  --font-label: "Antonio", "Arial Narrow", sans-serif;
  --font-script: "Corinthia", "Brush Script MT", cursive;
  --copy-size: 1rem;
  --copy-leading: 1.625;
  --wrap: 74rem;
  --wrap-narrow: 49rem;
  --gutter: clamp(1.15rem, 4vw, 3.5rem);
  --section-space: clamp(4.5rem, 9vw, 8rem);
  --header-height: 4.625rem;
  color-scheme: light;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  text-size-adjust: 100%;
}

body {
  margin: 0;
  background: var(--white);
  color: var(--brown);
  font-family: var(--font-body);
  font-size: var(--copy-size);
  line-height: var(--copy-leading);
  -webkit-font-smoothing: antialiased;
}

body.menu-open {
  overflow: hidden;
}

img {
  display: block;
  max-width: 100%;
}

a {
  color: var(--burgundy);
  text-decoration-thickness: 0.08em;
  text-underline-offset: 0.2em;
}

a:hover {
  text-decoration-thickness: 0.14em;
}

button,
input,
textarea,
select {
  font: inherit;
}

button,
a {
  -webkit-tap-highlight-color: transparent;
}

:focus-visible {
  outline: 3px solid var(--gold);
  outline-offset: 4px;
}

h1,
h2,
h3,
p,
blockquote {
  margin-top: 0;
}

h1,
h2,
h3 {
  color: inherit;
  font-family: var(--font-heading);
  font-weight: 500;
  line-height: 1.04;
  text-wrap: balance;
}

.eyebrow {
  margin-bottom: 0.8rem;
  color: var(--burgundy);
  font-family: var(--font-label);
  font-size: 0.82rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  line-height: 1.35;
  text-transform: uppercase;
}

h1 {
  font-size: clamp(2.65rem, 7.5vw, 6.5rem);
  letter-spacing: -0.035em;
}

h2 {
  font-size: clamp(2rem, 4.5vw, 3.65rem);
  letter-spacing: -0.022em;
}

h3 {
  font-size: clamp(1.45rem, 2.5vw, 2rem);
}

[hidden] {
  display: none !important;
}

.wrap,
.wrap-wide,
.wrap-narrow {
  width: min(100% - (2 * var(--gutter)), var(--wrap));
  margin-inline: auto;
}

.wrap-wide {
  width: min(100% - (2 * var(--gutter)), 86rem);
}

.wrap-narrow {
  width: min(100% - (2 * var(--gutter)), var(--wrap-narrow));
}

.section-space {
  margin-block: var(--section-space);
}

.visually-hidden {
  position: absolute !important;
  width: 1px !important;
  height: 1px !important;
  padding: 0 !important;
  margin: -1px !important;
  overflow: hidden !important;
  clip: rect(0, 0, 0, 0) !important;
  white-space: nowrap !important;
  border: 0 !important;
}

.skip-link {
  position: fixed;
  top: 0.75rem;
  left: 0.75rem;
  z-index: 200;
  padding: 0.7rem 1rem;
  background: var(--cream);
  color: var(--black);
  transform: translateY(-180%);
}

.skip-link:focus {
  transform: translateY(0);
}

.site-header {
  position: relative;
  z-index: 50;
  min-height: var(--header-height);
  background: var(--white);
  color: var(--black);
  border-bottom: 1px solid rgb(70 61 47 / 10%);
}

.site-header--overlay {
  position: relative;
  inset: auto;
  background: var(--white);
}

.site-header__inner {
  display: flex;
  min-height: var(--header-height);
  width: min(100% - (2 * var(--gutter)), 86rem);
  margin-inline: auto;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
}

.wordmark {
  display: inline-flex;
  min-width: 0;
  color: var(--brown);
  align-items: center;
  gap: 0.48rem;
  line-height: 1.1;
  text-decoration: none;
}

.wordmark__mark {
  width: 2.8rem;
  height: 2.8rem;
  flex: 0 0 auto;
  object-fit: contain;
}

.wordmark__text {
  display: inline-flex;
  min-width: 0;
  flex-direction: column;
}

.wordmark__primary {
  font-family: var(--font-heading);
  font-size: clamp(0.82rem, 2.5vw, 1.2rem);
  font-weight: 500;
  letter-spacing: 0.01em;
}

.wordmark__secondary {
  margin-top: 0.22rem;
  color: rgb(70 61 47 / 72%);
  font-family: var(--font-label);
  font-size: 0.58rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.desktop-nav {
  display: none;
}

.mobile-menu-toggle,
.mobile-menu__close {
  display: inline-flex;
  min-width: 44px;
  min-height: 44px;
  padding: 0;
  border: 0;
  background: transparent;
  color: inherit;
  align-items: center;
  justify-content: center;
  gap: 0.72rem;
  cursor: pointer;
  font-family: var(--font-label);
  font-size: 0.875rem;
  font-weight: 400;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.mobile-menu-toggle > i {
  width: 1px;
  height: 1.1rem;
  background: currentColor;
  opacity: 0.55;
}

.mobile-menu-toggle__icon {
  display: grid;
  width: 1.3rem;
  gap: 0.34rem;
}

.mobile-menu-toggle__icon i {
  display: block;
  height: 1px;
  background: currentColor;
}

.mobile-menu {
  position: fixed;
  inset: 0;
  z-index: 120;
  display: flex;
  padding: 0;
  background: var(--cream);
  color: var(--brown);
  flex-direction: column;
  opacity: 0;
  transition: opacity 180ms ease;
}

.mobile-menu.is-open {
  opacity: 1;
}

.mobile-menu__top {
  display: flex;
  min-height: 5.6rem;
  padding-inline: var(--gutter);
  border-bottom: 1px solid rgb(70 61 47 / 18%);
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.mobile-menu__name {
  font-family: var(--font-heading);
  font-size: 1.1rem;
}

.mobile-menu__identity {
  display: inline-flex;
  max-width: 13.5rem;
  align-items: center;
  gap: 0.65rem;
  line-height: 1.15;
}

.mobile-menu__identity img {
  width: 2.8rem;
  height: 2.8rem;
  flex: 0 0 auto;
  object-fit: contain;
}

.mobile-menu__close {
  color: var(--black);
}

.mobile-menu__close span:last-child {
  font-family: Arial, sans-serif;
  font-size: 1.7rem;
  font-weight: 400;
  line-height: 1;
}

.mobile-menu__body {
  display: grid;
  min-height: 0;
  flex: 1;
  overflow: auto;
}

.mobile-menu__primary,
.mobile-menu__aside {
  padding: clamp(2rem, 5vw, 5rem) var(--gutter);
}

.mobile-menu__primary {
  background: var(--cream);
}

.mobile-menu ul {
  padding: 0;
  margin: 0;
  list-style: none;
}

.mobile-menu li {
  border-top: 1px solid rgb(70 61 47 / 22%);
}

.mobile-menu li:last-child {
  border-bottom: 1px solid rgb(70 61 47 / 22%);
}

.mobile-menu nav a {
  display: flex;
  min-height: 3.8rem;
  padding-block: 0.8rem;
  color: var(--brown);
  align-items: center;
  font-family: var(--font-heading);
  font-size: clamp(1.45rem, 5.2vw, 2.75rem);
  text-decoration: none;
}

.mobile-menu nav a[aria-current="page"] {
  color: var(--burgundy);
}

.mobile-menu nav a::after {
  margin-left: auto;
  color: var(--burgundy);
  content: "›";
  font-family: Georgia, serif;
  font-size: 1.25em;
}

.mobile-menu__aside {
  display: flex;
  background: var(--slate);
  color: var(--white);
  flex-direction: column;
  justify-content: center;
}

.mobile-menu__aside .eyebrow {
  color: var(--cream);
}

.mobile-menu__invitation {
  max-width: 23ch;
  font-family: var(--font-heading);
  font-size: clamp(1.65rem, 4vw, 3rem);
  line-height: 1.22;
}

.mobile-menu__contact {
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem 1.25rem;
  margin-top: 1.5rem;
  font-size: 0.83rem;
}

.mobile-menu__contact a {
  color: var(--white);
}

.no-script-nav {
  padding: calc(var(--header-height) + 1.5rem) var(--gutter) 1.5rem;
  background: var(--teal);
  color: var(--white);
}

.no-script-nav ul {
  padding: 0;
  margin: 0;
  list-style: none;
}

.no-script-nav li + li {
  margin-top: 0.65rem;
}

.no-script-nav a {
  color: var(--white);
}

.home-hero {
  position: relative;
  display: grid;
  min-height: max(47rem, 100svh);
  overflow: hidden;
  color: var(--white);
  isolation: isolate;
}

.home-hero__media,
.home-hero__frame,
.home-hero__veil {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.home-hero__media {
  z-index: 0;
  background: var(--teal);
}

.home-hero__frame {
  object-fit: cover;
  filter: none;
  opacity: 0;
  transition: opacity 1.35s ease;
}

.home-hero__frame.is-active {
  opacity: 1;
}

.home-hero__veil {
  z-index: 1;
  background: rgb(1 38 44 / 80%);
}

.home-hero__content {
  position: relative;
  z-index: 2;
  display: flex;
  width: min(100% - (2 * var(--gutter)), 42rem);
  padding-top: 5.5rem;
  padding-bottom: clamp(6.5rem, 13vh, 9rem);
  margin-inline: auto;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
}

.home-hero__eyebrow {
  margin-bottom: 1rem;
  color: var(--gold);
  font-family: var(--font-script);
  font-size: clamp(3.2rem, 6vw, 5.6rem);
  font-weight: 400;
  letter-spacing: normal;
  line-height: 0.8;
  text-transform: none;
}

.home-hero h1 {
  max-width: none;
  margin-bottom: 1.5rem;
  color: var(--white);
  font-size: clamp(2.55rem, 6vw, 4.25rem);
  font-style: normal;
  font-weight: 400;
  letter-spacing: -0.045em;
  line-height: 0.98;
  text-shadow: 0 2px 18px rgb(0 0 0 / 42%);
}

.home-hero h1 span {
  display: block;
}

.home-hero__content > p {
  max-width: 41rem;
  margin-bottom: 2rem;
  color: rgb(255 255 255 / 88%);
  font-size: var(--copy-size);
  line-height: var(--copy-leading);
}

.home-hero__content > .home-hero__eyebrow {
  margin-bottom: 1rem;
  color: var(--gold);
  font-size: clamp(3.2rem, 6vw, 5.6rem);
}

.home-hero__collage {
  display: none;
}

.home-hero__deckle {
  position: absolute;
  right: 0;
  bottom: -1px;
  left: 0;
  z-index: 4;
  height: 3.5rem;
  background: var(--white);
  clip-path: polygon(0 70%, 5% 61%, 11% 74%, 17% 58%, 23% 69%, 30% 55%, 37% 72%, 44% 60%, 51% 74%, 58% 56%, 65% 69%, 72% 58%, 80% 72%, 87% 60%, 94% 71%, 100% 57%, 100% 100%, 0 100%);
}

.home-hero__actions,
.contact-details__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem 1.75rem;
}

.home-introduction {
  position: relative;
  overflow: hidden;
  background: var(--white);
  text-align: center;
}

.home-introduction__inner {
  position: relative;
  z-index: 1;
}

.home-introduction__eyebrow {
  padding-top: 0.14em;
  margin-bottom: 1rem;
  color: var(--burgundy);
  font-family: var(--font-script);
  font-size: clamp(3.2rem, 6vw, 5.6rem);
  font-weight: 400;
  letter-spacing: normal;
  line-height: 1.05;
}

.home-introduction h2 {
  margin-bottom: 1.5rem;
  color: var(--black);
  font-size: clamp(2.65rem, 6vw, 4rem);
  font-weight: 400;
  letter-spacing: -0.045em;
  line-height: 0.98;
}

.home-introduction__copy {
  max-width: 41rem;
  margin: 0 auto 2rem;
  color: var(--brown);
  font-size: var(--copy-size);
  line-height: var(--copy-leading);
}

.text-action {
  display: inline-flex;
  min-height: 44px;
  min-width: 9.5rem;
  padding: 0.68rem 1rem;
  border: 1px solid currentColor;
  color: var(--burgundy);
  justify-content: center;
  font-family: var(--font-label);
  align-items: center;
  font-size: 0.86rem;
  font-weight: 500;
  letter-spacing: 0.075em;
  text-decoration: none;
  text-transform: uppercase;
}

.text-action--light {
  color: var(--white);
}

.text-action:hover,
.text-action:focus-visible {
  background: var(--burgundy);
  color: var(--white);
}

.text-action--light:hover,
.text-action--light:focus-visible {
  background: var(--white);
  color: var(--black);
}

.hero-pause {
  position: absolute;
  right: var(--gutter);
  bottom: 3.4rem;
  z-index: 3;
  min-height: 44px;
  padding: 0.55rem 0.8rem;
  border: 1px solid rgb(255 255 255 / 55%);
  background: rgb(66 106 112 / 78%);
  color: var(--white);
  cursor: pointer;
  font-family: var(--font-label);
  font-size: 0.8rem;
  font-weight: 400;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.home-index {
  position: relative;
  padding-bottom: clamp(4rem, 8vw, 7rem);
  background: var(--white);
}

.home-index__inner {
  position: relative;
  z-index: 5;
  padding: clamp(2.2rem, 5vw, 4.5rem);
  margin-top: -3.5rem;
  background: var(--paper);
  box-shadow: 0 14px 40px rgb(70 61 47 / 9%);
}

.home-index__inner::before {
  position: absolute;
  inset: 0.75rem;
  border: 1px solid rgb(70 61 47 / 20%);
  content: "";
  pointer-events: none;
}

.home-index__label {
  position: relative;
  z-index: 1;
}

.home-index__ornament,
.principles-preview__ornament {
  position: absolute;
  border: 1px solid rgb(199 178 153 / 25%);
  border-radius: 50%;
  pointer-events: none;
}

.home-index__ornament {
  right: -13rem;
  bottom: -10rem;
  width: 32rem;
  height: 32rem;
  box-shadow: 0 0 0 5rem rgb(199 178 153 / 7%), 0 0 0 10rem rgb(199 178 153 / 5%);
}

.section-index ol {
  padding: 0;
  margin: 0;
  list-style: none;
}

.section-index li {
  border-top: 1px solid var(--gold);
}

.section-index li:last-child {
  border-bottom: 1px solid var(--gold);
}

.section-index a {
  display: grid;
  min-height: 4.8rem;
  padding-block: 1rem;
  color: var(--brown);
  align-items: center;
  grid-template-columns: 2.4rem 1fr auto;
  gap: 1rem;
  text-decoration: none;
  transition: color 160ms ease, padding 160ms ease;
}

.section-index a:hover,
.section-index a:focus-visible {
  padding-inline: 0.45rem;
  color: var(--burgundy);
}

.section-index a > span:nth-child(2) {
  font-family: var(--font-heading);
  font-size: clamp(1.35rem, 3.4vw, 2.5rem);
  line-height: 1.08;
}

.section-index__number {
  color: var(--burgundy);
  font-family: var(--font-label);
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 0.08em;
}

.section-heading {
  display: flex;
  margin-bottom: clamp(2.2rem, 5vw, 4rem);
  align-items: end;
  justify-content: space-between;
  gap: 1rem;
}

.principles-preview {
  position: relative;
  padding-block: clamp(2rem, 5vw, 5rem);
  margin-block: 0 var(--section-space);
  background: var(--white);
}

.principles-preview__frame {
  position: relative;
  padding: clamp(3rem, 6vw, 5.5rem) clamp(1rem, 3vw, 2.5rem) clamp(4.5rem, 8vw, 7rem);
  border: 1px solid rgb(199 178 153 / 72%);
}

.principles-preview__ornament {
  top: 5rem;
  left: -12rem;
  width: 30rem;
  height: 30rem;
  box-shadow: 0 0 0 4.5rem rgb(199 178 153 / 7%), 0 0 0 9rem rgb(199 178 153 / 5%);
}

.principles-preview .section-heading {
  position: relative;
  display: grid;
  margin-inline: auto;
  text-align: center;
  justify-content: center;
  justify-items: center;
}

.principles-preview .section-heading h2 {
  max-width: 18ch;
}

.section-heading h2 {
  max-width: 15ch;
  margin-bottom: 0;
}

.principles-preview,
.principles-section {
  overflow: hidden;
}

.principles-rail {
  display: flex;
  padding-bottom: 1rem;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  gap: 1rem;
  scrollbar-color: var(--gold) transparent;
}

.principle-figure {
  position: relative;
  display: block;
  min-width: min(78vw, 21rem);
  min-height: 20rem;
  border: 1px solid rgb(255 255 255 / 72%);
  color: var(--white);
  scroll-snap-align: start;
  text-decoration: none;
  overflow: hidden;
}

.principle-figure picture {
  position: absolute;
  inset: 0;
  display: block;
  width: 100%;
  height: 100%;
  overflow: hidden;
  background: var(--teal);
}

.principle-figure::after {
  position: absolute;
  inset: 0;
  background: rgb(0 0 0 / 48%);
  content: "";
}

.principle-figure::before {
  position: absolute;
  inset: 0.8rem;
  z-index: 2;
  border: 1px solid rgb(255 255 255 / 64%);
  content: "";
}

.principle-figure__image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: none;
  transition: transform 380ms ease, filter 380ms ease;
}

.principle-figure:hover .principle-figure__image,
.principle-figure:focus-visible .principle-figure__image {
  filter: none;
  transform: scale(1.035);
}

.principle-figure > span {
  position: absolute;
  right: 1.8rem;
  bottom: 1.7rem;
  left: 1.8rem;
  z-index: 3;
  font-family: var(--font-heading);
  font-size: clamp(1.35rem, 2.3vw, 2rem);
  line-height: 1.08;
  text-align: center;
  text-shadow: 0 2px 12px rgb(0 0 0 / 60%);
}

.principles-preview__statement {
  position: relative;
  z-index: 3;
  max-width: 58rem;
  padding: clamp(2rem, 4vw, 3.2rem);
  margin-top: clamp(-4.6rem, -5vw, -2.8rem);
  background: var(--paper);
  box-shadow: 0 12px 35px rgb(70 61 47 / 8%);
  text-align: center;
}

.principles-preview__statement p {
  margin: 0;
  font-family: var(--font-heading);
  font-size: var(--copy-size);
  font-style: normal;
  line-height: var(--copy-leading);
}

/* Homepage location ------------------------------------------------------- */

.home-location {
  position: relative;
  padding: clamp(1rem, 3vw, 2rem) var(--gutter) clamp(4.5rem, 9vw, 8rem);
  overflow: hidden;
  background: var(--white);
}

.home-location::before {
  position: absolute;
  top: 12%;
  right: -9rem;
  width: 24rem;
  height: 24rem;
  border: 1px solid rgb(199 178 153 / 24%);
  border-radius: 50%;
  box-shadow: 0 0 0 4rem rgb(199 178 153 / 6%), 0 0 0 8rem rgb(199 178 153 / 4%);
  content: "";
  pointer-events: none;
}

.home-location__frame {
  position: relative;
  z-index: 1;
  display: grid;
  border: 1px solid var(--gold);
  background: var(--paper);
  box-shadow: 0 18px 45px rgb(70 61 47 / 10%);
}

.home-location__copy {
  position: relative;
  display: flex;
  min-height: 31rem;
  padding: clamp(4.5rem, 8vw, 7rem) clamp(1.5rem, 6vw, 5.5rem) clamp(3rem, 6vw, 5rem);
  flex-direction: column;
  justify-content: center;
}

.home-location__copy .script-accent {
  position: absolute;
  top: clamp(1rem, 3vw, 2rem);
  left: clamp(1.4rem, 5vw, 4.5rem);
  color: var(--black);
  font-size: clamp(3.8rem, 7vw, 6.5rem);
  transform: rotate(-4deg);
}

.home-location__copy h2 {
  max-width: 12ch;
  margin-bottom: 1.4rem;
  color: var(--brown);
}

.home-location__copy > p:not(.script-accent, .eyebrow) {
  max-width: 34rem;
  margin-bottom: 1.6rem;
  color: rgb(70 61 47 / 82%);
}

.home-location__copy address {
  display: flex;
  padding-left: 1rem;
  margin-bottom: 2rem;
  border-left: 3px solid var(--burgundy);
  flex-direction: column;
  font-style: normal;
  line-height: 1.5;
}

.home-location__copy address strong {
  color: var(--black);
  font-family: var(--font-heading);
  font-size: 1.2rem;
  font-weight: 600;
}

.home-location__copy .text-action {
  align-self: flex-start;
}

.home-location__map {
  position: relative;
  min-height: 25rem;
  background: var(--slate);
  overflow: hidden;
}

.home-location__map::after {
  position: absolute;
  inset: 0.75rem;
  border: 1px solid rgb(255 255 255 / 72%);
  content: "";
  pointer-events: none;
}

.home-location__map iframe {
  display: block;
  width: 100%;
  height: 100%;
  min-height: 25rem;
  border: 0;
}

@media (min-width: 54rem) {
  .home-location__frame {
    grid-template-columns: minmax(22rem, 0.82fr) minmax(28rem, 1.18fr);
  }

  .home-location__map,
  .home-location__map iframe {
    min-height: 36rem;
  }
}

@media (max-width: 41.99rem) {
  .home-location {
    padding-inline: 0.7rem;
  }

  .home-location__copy {
    min-height: 0;
  }

  .home-location__copy .text-action {
    width: 100%;
  }
}

/* Editorial scroll motion ------------------------------------------------ */

.motion-ready [data-motion-reveal] {
  opacity: 0;
  transform: translate3d(0, 2rem, 0);
  transition:
    opacity 720ms cubic-bezier(0.22, 1, 0.36, 1),
    transform 900ms cubic-bezier(0.22, 1, 0.36, 1),
    clip-path 1000ms cubic-bezier(0.22, 1, 0.36, 1);
  transition-delay: var(--motion-delay, 0ms);
  will-change: opacity, transform;
}

.motion-ready [data-motion-reveal="left"] {
  transform: translate3d(-2.25rem, 0, 0);
}

.motion-ready [data-motion-reveal="image"] {
  opacity: 1;
  clip-path: inset(0 100% 0 0);
  transform: none;
  will-change: clip-path;
}

.motion-ready [data-motion-reveal="line"] {
  opacity: 1;
  transform: scaleY(0);
  transform-origin: top;
}

.motion-ready [data-motion-reveal].is-motion-visible {
  opacity: 1;
  clip-path: inset(0);
  transform: translate3d(0, 0, 0);
}

.motion-image,
.motion-parallax {
  --motion-parallax-y: 0px;
  display: block;
  overflow: hidden;
}

.motion-image img,
.motion-parallax img {
  transform: translate3d(0, var(--motion-parallax-y), 0) scale(1.055);
  transform-origin: center;
  transition: transform 1200ms cubic-bezier(0.22, 1, 0.36, 1);
  will-change: transform;
}

.motion-image.is-motion-visible img,
.motion-parallax:not(.motion-image) img {
  transform: translate3d(0, var(--motion-parallax-y), 0) scale(1.035);
}

.motion-rule {
  position: relative;
}

.motion-rule::after {
  position: absolute;
  bottom: -1.25rem;
  left: 0;
  width: min(8rem, 34%);
  height: 1px;
  background: var(--gold);
  content: "";
  opacity: 0.85;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 1050ms cubic-bezier(0.22, 1, 0.36, 1) 220ms;
}

.motion-rule.is-motion-visible::after {
  transform: scaleX(1);
}

.home-introduction__inner.motion-rule::after,
.principles-preview .section-heading.motion-rule::after {
  left: 50%;
  transform: translateX(-50%) scaleX(0);
  transform-origin: center;
}

.home-introduction__inner.motion-rule.is-motion-visible::after,
.principles-preview .section-heading.motion-rule.is-motion-visible::after {
  transform: translateX(-50%) scaleX(1);
}

.calendar-journey__line {
  position: absolute;
  top: clamp(15rem, 25vw, 22rem);
  bottom: clamp(4rem, 8vw, 7rem);
  left: 50%;
  width: 1px;
  background: var(--hairline);
  pointer-events: none;
}

@media (min-width: 64rem) {
  .principles-preview__frame {
    display: grid;
    grid-template-columns: minmax(18rem, 0.72fr) minmax(0, 1.28fr);
    align-items: start;
    gap: clamp(3.5rem, 7vw, 7.5rem);
  }

  .principles-preview .section-heading {
    position: sticky;
    top: calc(var(--header-height) + 2.25rem);
    margin: 0;
    align-self: start;
    justify-content: start;
    justify-items: start;
    text-align: left;
  }

  .principles-preview .section-heading::after {
    left: 0;
    transform: scaleX(0);
    transform-origin: left;
  }

  .principles-preview .section-heading.is-motion-visible::after {
    transform: scaleX(1);
  }

  .principles-rail {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    padding: 0;
    overflow: visible;
    gap: clamp(1.5rem, 3vw, 3rem);
    scroll-snap-type: none;
  }

  .principle-figure {
    min-width: 0;
    min-height: clamp(23rem, 34vw, 31rem);
  }

  .principle-figure:nth-child(even) {
    margin-top: clamp(3rem, 6vw, 6rem);
  }
}

@supports (animation-timeline: view()) {
  .motion-parallax img {
    animation: motion-native-parallax linear both;
    animation-timeline: view(block);
    animation-range: cover 0% cover 100%;
  }

  @keyframes motion-native-parallax {
    from {
      transform: translate3d(0, 1.1rem, 0) scale(1.055);
    }

    to {
      transform: translate3d(0, -1.1rem, 0) scale(1.055);
    }
  }
}

@media (prefers-reduced-motion: reduce) {
  .motion-ready [data-motion-reveal],
  .motion-ready [data-motion-reveal="left"],
  .motion-ready [data-motion-reveal="image"],
  .motion-ready [data-motion-reveal="line"] {
    opacity: 1;
    clip-path: none;
    transform: none;
    transition: none;
  }

  .motion-image img,
  .motion-parallax img {
    animation: none;
    transform: none;
    transition: none;
  }

  .motion-rule::after,
  .motion-rule.is-motion-visible::after {
    transform: scaleX(1);
    transition: none;
  }
}

.principles-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem 1.5rem;
}

.contact-band {
  position: relative;
  display: grid;
  padding: clamp(1.2rem, 4vw, 3.5rem);
  background: var(--slate);
  color: var(--white);
}

.contact-band__media {
  min-height: 18rem;
  overflow: hidden;
}

.contact-band__media picture {
  display: block;
  height: 100%;
}

.contact-band__image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: none;
}

.contact-band__content {
  display: flex;
  min-height: 25rem;
  padding: clamp(3rem, 8vw, 6rem) var(--gutter);
  border: 1px solid rgb(255 255 255 / 46%);
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
}

.contact-band h2 {
  max-width: 11ch;
  margin-bottom: 1.25rem;
  color: var(--white);
}

.contact-band address {
  max-width: 24rem;
  margin-bottom: 1.6rem;
  color: var(--cream);
  font-style: normal;
}

.contact-band .eyebrow {
  color: var(--cream);
}

@media (max-width: 53.99rem) {
  .page-hero > picture {
    width: 100%;
  }

  .page-hero__veil {
    background: rgb(1 38 44 / 80%);
  }
}

.contact-band a {
  color: var(--white);
}

.contact-band a + a {
  margin-top: 0.35rem;
}

.page-hero {
  position: relative;
  display: grid;
  min-height: clamp(34rem, 72svh, 52rem);
  overflow: hidden;
  background: var(--slate);
  color: var(--white);
  isolation: isolate;
}

.page-hero > picture,
.page-hero__image,
.page-hero__veil {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.page-hero > picture {
  right: 0;
  left: auto;
  width: 58%;
}

.page-hero__image {
  object-fit: cover;
  filter: none;
}

.page-hero--portrait .page-hero__image {
  object-fit: contain;
}

.page-hero__veil {
  z-index: 1;
  background: rgb(1 38 44 / 80%);
}

.page-hero__title {
  position: relative;
  z-index: 2;
  display: flex;
  padding-top: calc(var(--header-height) + 4rem);
  padding-bottom: clamp(2.5rem, 7vw, 5rem);
  align-items: flex-end;
}

.page-hero h1 {
  max-width: 10ch;
  margin-bottom: 0;
  color: var(--white);
  font-weight: 400;
}

.prose {
  font-size: var(--copy-size);
  line-height: var(--copy-leading);
}

.prose--lead > p:first-child::first-letter {
  float: left;
  margin: 0.04em 0.12em 0 0;
  color: var(--burgundy);
  font-family: var(--font-heading);
  font-size: 4.3em;
  line-height: 0.78;
}

.prose p + p {
  margin-top: 1.35rem;
}

.editorial-columns {
  display: grid;
  gap: 3rem;
}

.editorial-columns > section {
  padding-top: 1.4rem;
  border-top: 1px solid var(--gold);
}

.editorial-columns h2 {
  margin-bottom: 1.35rem;
  font-size: clamp(1.65rem, 3vw, 2.55rem);
}

.editorial-columns p:last-child {
  margin-bottom: 0;
}

.quotes-section,
.concluding-columns {
  padding-block: var(--section-space);
  margin-block: 0;
  background: var(--teal);
  color: var(--white);
}

.quotes-section .section-heading h2,
.concluding-columns h2 {
  color: var(--white);
}

.quotes-grid {
  display: grid;
  gap: 0;
}

.quotes-grid blockquote {
  padding: clamp(1.8rem, 4vw, 3rem) 0;
  margin: 0;
  border-top: 1px solid rgb(199 178 153 / 50%);
}

.quotes-grid blockquote:last-child {
  border-bottom: 1px solid rgb(199 178 153 / 50%);
}

.quotes-grid blockquote p,
.feature-quote p {
  margin-bottom: 1.2rem;
  font-family: var(--font-heading);
  font-size: var(--copy-size);
  line-height: var(--copy-leading);
}

blockquote cite {
  color: var(--gold);
  font-family: var(--font-label);
  font-style: normal;
  font-size: 0.86rem;
  font-weight: 500;
  letter-spacing: 0.04em;
}

.feature-quote {
  padding-left: clamp(1.3rem, 4vw, 3rem);
  border-left: 3px solid var(--burgundy);
}

.supporting-image {
  overflow: hidden;
  background: var(--teal);
}

.supporting-image picture {
  display: block;
}

.supporting-image__image {
  width: 100%;
  max-height: 42rem;
  object-fit: contain;
}

.concluding-columns .editorial-columns > section {
  border-color: rgb(199 178 153 / 50%);
}

.principle-navigation {
  display: grid;
  padding-block: clamp(2rem, 5vw, 4rem);
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

.principle-navigation a {
  display: flex;
  min-height: 5rem;
  padding-block: 0.8rem;
  color: var(--brown);
  flex-direction: column;
  justify-content: center;
  border-top: 1px solid var(--gold);
  text-decoration: none;
}

.principle-navigation__next {
  text-align: right;
  align-items: flex-end;
}

.principle-navigation small {
  color: var(--burgundy);
  font-family: var(--font-label);
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.principle-navigation span {
  margin-top: 0.35rem;
  font-family: var(--font-heading);
  font-size: clamp(1rem, 2.2vw, 1.4rem);
  line-height: 1.14;
}

.principle-page--image-only .principle-navigation {
  margin-top: var(--section-space);
}

.image-first-hero {
  position: relative;
  height: clamp(28rem, 66svh, 48rem);
  overflow: hidden;
  background: var(--teal);
}

.image-first-hero picture {
  display: block;
  width: 100%;
  height: 100%;
}

.image-first-hero__image {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.image-first-copy h1 {
  margin-bottom: clamp(2rem, 5vw, 3.5rem);
}

.image-first-copy p {
  font-size: var(--copy-size);
  line-height: var(--copy-leading);
}

.contact-about {
  display: grid;
  gap: 1.8rem;
}

.public-affairs-editorial {
  overflow: hidden;
}

.public-affairs-story {
  display: grid;
  align-items: center;
  gap: clamp(2.5rem, 7vw, 7rem);
}

.public-affairs-story__copy {
  max-width: 34rem;
}

.public-affairs-story__copy h2,
.public-affairs-media__copy h2 {
  margin-bottom: 1.4rem;
}

.public-affairs-story__copy p:last-child,
.public-affairs-media__copy p:last-child {
  margin-bottom: 0;
}

.public-affairs-story__figure,
.public-affairs-mosaic figure,
.public-affairs-media__campaign {
  position: relative;
  margin: 0;
}

.public-affairs-story__figure::before {
  position: absolute;
  top: -1rem;
  right: -1rem;
  bottom: 1rem;
  left: 1rem;
  z-index: -1;
  border: 1px solid var(--gold);
  content: "";
}

.public-affairs-story__figure picture,
.public-affairs-story__image {
  display: block;
  width: 100%;
  height: 100%;
}

.public-affairs-story__image {
  aspect-ratio: 4 / 3;
  object-fit: cover;
}

.public-affairs-mosaic {
  position: relative;
  background: var(--paper);
}

.public-affairs-mosaic__inner {
  position: relative;
}

.public-affairs-mosaic__heading {
  position: relative;
  z-index: 2;
  max-width: 30rem;
  padding: clamp(2rem, 5vw, 3.5rem);
  margin: 0 0 clamp(1.2rem, 4vw, 2.5rem) auto;
  background: var(--teal);
  color: var(--white);
}

.public-affairs-mosaic__heading .eyebrow {
  color: var(--cream);
}

.public-affairs-mosaic__heading h2 {
  margin-bottom: 0;
  color: var(--white);
}

.public-affairs-mosaic__images {
  display: grid;
  align-items: end;
  gap: clamp(1rem, 2.5vw, 2rem);
}

.public-affairs-mosaic__primary picture,
.public-affairs-mosaic__secondary picture {
  display: block;
  width: 100%;
  height: 100%;
}

.public-affairs-mosaic__primary .public-affairs-mosaic__image {
  aspect-ratio: 16 / 9;
}

.public-affairs-mosaic__secondary .public-affairs-mosaic__image {
  aspect-ratio: 4 / 3;
}

.public-affairs-mosaic__image {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.public-affairs-media {
  display: grid;
  align-items: center;
  gap: clamp(3rem, 9vw, 9rem);
}

.public-affairs-media__campaign {
  display: grid;
  padding: clamp(1.2rem, 3vw, 2rem);
  background: var(--teal);
  place-items: center;
}

.public-affairs-media__campaign picture {
  display: block;
  width: min(100%, 30rem);
}

.public-affairs-media__campaign-image {
  width: 100%;
  height: auto;
}

.public-affairs-media__copy {
  max-width: 36rem;
}

.contact-about h2 {
  margin-bottom: 0;
}

.contact-about p {
  max-width: 55rem;
  margin-bottom: 0;
  font-family: var(--font-body);
  font-size: var(--copy-size);
  line-height: var(--copy-leading);
}

.contact-details {
  padding-block: var(--section-space);
  margin-bottom: 0;
  background: var(--teal);
  color: var(--white);
}

.contact-details__grid {
  display: grid;
  gap: 3rem;
}

.contact-details h2 {
  color: var(--white);
  font-size: 1.7rem;
}

.contact-details p {
  color: rgb(255 255 255 / 82%);
}

.contact-details a {
  display: block;
  width: fit-content;
  color: var(--gold);
}

.contact-details__actions {
  margin-top: 1.5rem;
}

.contact-details__actions .text-action {
  color: var(--white);
}

.site-footer {
  padding-block: clamp(3rem, 7vw, 5rem);
  background: #001a1e;
  color: rgb(255 255 255 / 76%);
}

.site-footer__inner {
  display: grid;
  width: min(100% - (2 * var(--gutter)), 86rem);
  margin-inline: auto;
  gap: 2.8rem;
}

.site-footer__identity {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
}

.site-footer__mark {
  width: 4rem;
  height: 4rem;
  flex: 0 0 auto;
  object-fit: contain;
}

.site-footer h2,
.site-footer__name {
  margin-bottom: 0.8rem;
  color: var(--white);
  font-family: var(--font-heading);
  font-size: 1.25rem;
  font-weight: 500;
}

.site-footer p {
  margin-bottom: 0;
}

.site-footer a {
  display: block;
  width: fit-content;
  color: var(--gold);
}

.site-footer a + a {
  margin-top: 0.35rem;
}

.not-found {
  display: flex;
  min-height: 70svh;
  padding-block: var(--section-space);
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
}

.not-found h1 {
  margin-bottom: 1.5rem;
}

@media (min-width: 42rem) {
  .wordmark {
    gap: 0.72rem;
  }

  .wordmark__mark {
    width: 3rem;
    height: 3rem;
  }

  .principles-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .contact-about {
    grid-template-columns: minmax(12rem, 0.7fr) minmax(0, 1.8fr);
    align-items: start;
  }

  .contact-details__grid,
  .site-footer__inner {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (min-width: 54rem) {
  .mobile-menu__body {
    grid-template-columns: minmax(0, 0.92fr) minmax(22rem, 1.08fr);
  }

  .mobile-menu__primary,
  .mobile-menu__aside {
    padding-inline: clamp(3rem, 6vw, 6rem);
  }

  .mobile-menu__primary {
    align-content: center;
  }

  .home-hero__veil {
    right: 0;
    width: 100%;
    background: rgb(1 38 44 / 80%);
  }

  .home-hero__content {
    width: min(48vw, 32rem);
    padding-top: 5.5rem;
    padding-bottom: clamp(6.5rem, 13vh, 9rem);
    margin-right: auto;
    margin-left: clamp(6rem, 12.4vw, 11.25rem);
  }

  .home-hero__actions {
    width: 100%;
    justify-content: flex-start;
  }

  .home-hero h1 {
    font-size: clamp(2.55rem, 3.75vw, 4rem);
    white-space: nowrap;
  }

  .home-hero__collage {
    position: absolute;
    inset: 0 0 0 52%;
    z-index: 2;
    display: block;
    pointer-events: none;
  }

  .home-hero__collage > picture,
  .home-hero__collage-panel {
    position: absolute;
    display: block;
    overflow: hidden;
    background: var(--teal);
    box-shadow: 0 10px 40px rgb(0 0 0 / 15%);
  }

  .home-hero__collage-frame {
    position: absolute;
    inset: 0;
    display: block;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 1.15s ease;
    will-change: opacity;
  }

  .home-hero__collage-frame.is-active {
    opacity: 1;
  }

  .home-hero__collage-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: none;
  }

  .home-hero__collage-main {
    inset: 14% 6% 7% 8%;
  }

  .home-hero__collage-top {
    top: 0;
    left: 0;
    z-index: 2;
    width: 42%;
    height: 25%;
  }

  .home-hero__collage-side {
    right: 0;
    bottom: 9%;
    z-index: 3;
    width: 34%;
    height: 41%;
    border: 0.8rem solid var(--paper);
  }

  .home-index__inner {
    width: min(72%, 58rem);
    margin-left: clamp(3rem, 8vw, 8rem);
  }

  .contact-band {
    grid-template-columns: 1.12fr 0.88fr;
  }

  .public-affairs-story {
    grid-template-columns: minmax(18rem, 0.78fr) minmax(0, 1.22fr);
  }

  .public-affairs-mosaic__heading {
    margin-bottom: -4.5rem;
    margin-right: clamp(2rem, 6vw, 6rem);
  }

  .public-affairs-mosaic__images {
    grid-template-columns: minmax(0, 1.35fr) minmax(18rem, 0.65fr);
  }

  .public-affairs-mosaic__secondary {
    margin-bottom: -3rem;
  }

  .public-affairs-media {
    grid-template-columns: minmax(18rem, 0.72fr) minmax(0, 1.28fr);
  }

  .contact-band__content {
    min-height: 34rem;
    margin-block: 2.5rem;
    margin-left: -3.5rem;
    background: var(--teal);
    box-shadow: 0 14px 40px rgb(66 106 112 / 24%);
  }

  .editorial-columns--2 {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .editorial-columns--3 {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .editorial-columns {
    gap: 0;
  }

  .editorial-columns > section {
    padding-inline: clamp(1.5rem, 3vw, 3rem);
  }

  .editorial-columns > section:first-child {
    padding-left: 0;
  }

  .editorial-columns > section:last-child {
    padding-right: 0;
  }

  .editorial-columns > section + section {
    border-left: 1px solid var(--gold);
  }

  .quotes-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .quotes-grid blockquote {
    padding-inline: clamp(1.5rem, 4vw, 3rem);
  }

  .quotes-grid blockquote:nth-child(even) {
    border-left: 1px solid rgb(199 178 153 / 50%);
  }

  .quotes-grid blockquote:nth-last-child(-n + 2) {
    border-bottom: 1px solid rgb(199 178 153 / 50%);
  }

  .contact-details__grid {
    grid-template-columns: 1.3fr 1fr 0.8fr;
  }

  .site-footer__inner {
    grid-template-columns: 1.5fr 1fr 0.8fr;
  }
}

@media (min-width: 70rem) {
  .site-header__inner {
    justify-content: flex-start;
  }

  .mobile-menu-toggle {
    display: none;
  }

  .desktop-nav {
    display: flex;
    min-width: 0;
    margin-left: clamp(2rem, 4vw, 4.5rem);
    flex: 1;
    align-items: stretch;
    justify-content: space-between;
    gap: 0.5rem;
  }

  .desktop-nav > a,
  .desktop-nav__faith > a {
    display: flex;
    min-height: 44px;
    color: var(--black);
    align-items: center;
    font-family: var(--font-label);
    font-size: 0.875rem;
    font-weight: 400;
    letter-spacing: 0.045em;
    line-height: 1.2;
    text-decoration: none;
    text-transform: uppercase;
    white-space: nowrap;
  }

  .desktop-nav > a[aria-current="page"],
  .desktop-nav__faith.is-current > a {
    color: var(--burgundy);
  }

  .desktop-nav__faith {
    position: relative;
    display: flex;
    align-items: center;
  }

  .faith-menu-toggle {
    display: inline-grid;
    width: 32px;
    height: 44px;
    padding: 0;
    border: 0;
    background: transparent;
    color: var(--burgundy);
    place-items: center;
    cursor: pointer;
  }

  .faith-menu-toggle span[aria-hidden="true"] {
    font-size: 1.1rem;
    transform-origin: center;
    transition: transform 150ms ease;
  }

  .faith-menu-toggle[aria-expanded="true"] span[aria-hidden="true"] {
    transform: rotate(180deg);
  }

  .faith-menu {
    position: absolute;
    top: calc(100% + 0.8rem);
    left: -1rem;
    width: min(24rem, 36vw);
    padding: 0.6rem 1.25rem 1rem;
    background: var(--cream);
    color: var(--brown);
    border-top: 3px solid var(--burgundy);
  }

  .faith-menu a {
    display: block;
    padding: 0.65rem 0;
    color: var(--brown);
    border-bottom: 1px solid rgb(199 178 153 / 55%);
    font-size: 0.82rem;
    text-decoration: none;
  }

  .faith-menu a:hover,
  .faith-menu a:focus-visible,
  .faith-menu a[aria-current="page"] {
    color: var(--burgundy);
  }

  .faith-menu__overview {
    font-weight: 700;
  }

  .principles-rail {
    display: grid;
    overflow: visible;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 0;
  }

  .principle-figure {
    min-width: 0;
    min-height: 24rem;
  }

  .principles-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .section-index a {
    grid-template-columns: 4rem 1fr auto;
  }
}

@media (max-width: 23.75rem) and (max-height: 42rem) {
  .home-hero__content {
    padding-top: calc(var(--header-height) + 1.25rem);
    padding-bottom: 5rem;
  }

  .home-hero h1 {
    margin-bottom: 0.8rem;
    font-size: 2.05rem;
  }

  .home-hero__content > p {
    margin-bottom: 0.65rem;
    font-size: 0.9rem;
    line-height: 1.5;
  }

  .home-hero__actions {
    gap: 0 1rem;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
  }

  .hero-pause {
    display: none;
  }

}

/* Premium editorial system ------------------------------------------------ */

:root {
  --deep-teal: #294f54;
  --ink: #3f382f;
  --soft-gold: rgb(199 178 153 / 42%);
  --hairline: rgb(199 178 153 / 72%);
  --shadow-soft: 0 24px 70px rgb(53 61 58 / 12%);
  --section-space: clamp(5.5rem, 10vw, 9.5rem);
}

body {
  background: var(--white);
}

main {
  overflow: hidden;
}

.script-accent {
  padding-top: 0.12em;
  margin-bottom: 0.35rem;
  color: var(--burgundy);
  font-family: var(--font-script);
  font-size: clamp(3.25rem, 6vw, 5.5rem);
  line-height: 0.9;
}

.editorial-link {
  display: inline-flex;
  color: var(--burgundy);
  align-items: center;
  gap: 0.6rem;
  font-family: var(--font-label);
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-decoration: none;
  text-transform: uppercase;
}

.editorial-link span {
  font-family: var(--font-body);
  font-size: 1.15rem;
  transition: transform 180ms ease;
}

.editorial-link:hover span,
.editorial-link:focus-visible span {
  transform: translateX(0.3rem);
}

.editorial-stage {
  position: relative;
  isolation: isolate;
}

.editorial-stage::before {
  position: absolute;
  top: calc(-1 * clamp(2.5rem, 6vw, 5rem));
  right: 0;
  bottom: calc(-1 * clamp(2.5rem, 6vw, 5rem));
  left: 8%;
  z-index: -2;
  background: rgb(248 241 229 / 94%);
  content: "";
}

.editorial-stage__ornament,
.editorial-cta__ornament,
.page-hero__ornament {
  position: absolute;
  border: 1px solid var(--soft-gold);
  border-radius: 50%;
  pointer-events: none;
}

.editorial-stage__ornament {
  top: 50%;
  right: -12rem;
  z-index: -1;
  width: 27rem;
  height: 27rem;
  transform: translateY(-50%);
  box-shadow: 0 0 0 4rem rgb(199 178 153 / 7%), 0 0 0 8rem rgb(199 178 153 / 4%);
}

/* Shared layered hero */

.page-hero {
  min-height: clamp(38rem, 72svh, 50rem);
  background: var(--deep-teal);
}

.page-hero__figure {
  position: absolute;
  inset: 0 0 0 auto;
  width: 68%;
  margin: 0;
  overflow: hidden;
}

.page-hero__figure picture,
.page-hero__image {
  display: block;
  width: 100%;
  height: 100%;
}

.page-hero__image {
  object-fit: cover;
}

.page-hero__veil {
  z-index: 1;
  background: rgb(1 38 44 / 80%);
}

.page-hero__title {
  padding-top: clamp(8rem, 14vw, 12rem);
  padding-bottom: clamp(7rem, 12vw, 10rem);
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-end;
}

.page-hero__title .eyebrow {
  margin-bottom: 1.15rem;
  color: var(--cream);
}

.page-hero h1 {
  max-width: 9ch;
  font-size: clamp(3.3rem, 7vw, 6.8rem);
  line-height: 0.94;
  text-shadow: 0 2px 24px rgb(0 0 0 / 18%);
}

.page-hero--long-title h1 {
  max-width: 12ch;
  font-size: clamp(2.8rem, 6vw, 5.7rem);
}

.page-hero__caption {
  position: absolute;
  right: clamp(1.4rem, 4vw, 4.5rem);
  bottom: clamp(4.6rem, 7vw, 6.5rem);
  z-index: 3;
  max-width: 28rem;
  padding: 0.5rem 0.75rem;
  margin: 0;
  background: rgb(41 79 84 / 78%);
  color: rgb(255 255 255 / 88%);
  font-size: 0.72rem;
  line-height: 1.45;
}

.page-hero__ornament {
  top: 9%;
  left: -7rem;
  z-index: 2;
  width: 22rem;
  height: 22rem;
  opacity: 0.5;
  box-shadow: 0 0 0 3.5rem rgb(238 221 195 / 5%), 0 0 0 7rem rgb(238 221 195 / 3%);
}

.page-hero__ornament::before,
.editorial-cta__ornament::before {
  position: absolute;
  inset: 19%;
  border: 1px solid rgb(199 178 153 / 34%);
  background: transparent;
  border-radius: 50%;
  content: "";
}

.page-hero__paper-edge {
  position: absolute;
  right: 0;
  bottom: -1px;
  left: 0;
  z-index: 5;
  height: 2.6rem;
  background: var(--white);
  clip-path: polygon(0 65%, 5% 52%, 11% 70%, 18% 48%, 25% 68%, 33% 50%, 40% 72%, 48% 54%, 56% 69%, 64% 49%, 72% 70%, 81% 51%, 89% 67%, 95% 54%, 100% 66%, 100% 100%, 0 100%);
}

.page-hero--portrait .page-hero__figure {
  top: 5%;
  right: 6%;
  bottom: 7%;
  width: min(42%, 34rem);
  height: auto;
  border: 0.75rem solid var(--paper);
  box-shadow: var(--shadow-soft);
}

.page-hero--portrait .page-hero__figure::before {
  position: absolute;
  inset: 0.75rem;
  z-index: 2;
  border: 1px solid rgb(255 255 255 / 65%);
  content: "";
  pointer-events: none;
}

.page-hero--portrait .page-hero__caption {
  right: 0.75rem;
  bottom: 0.75rem;
  left: 0.75rem;
}

/* Shared framed call to action */

.editorial-cta {
  position: relative;
  display: grid;
  min-height: 24rem;
  padding: clamp(3rem, 7vw, 6rem);
  border: 1px solid var(--hairline);
  background: var(--paper);
  align-items: end;
  gap: 2.5rem;
  overflow: hidden;
}

.editorial-cta::before {
  position: absolute;
  inset: 0.8rem;
  border: 1px solid rgb(199 178 153 / 48%);
  content: "";
  pointer-events: none;
}

.editorial-cta__copy,
.editorial-cta > .text-action {
  position: relative;
  z-index: 2;
}

.editorial-cta__copy {
  max-width: 48rem;
}

.editorial-cta h2 {
  max-width: 16ch;
  margin-bottom: 1.25rem;
  color: var(--black);
}

.editorial-cta__copy > p:last-child {
  max-width: 43rem;
  margin-bottom: 0;
}

.editorial-cta__ornament {
  top: 50%;
  right: -8rem;
  width: 24rem;
  height: 24rem;
  transform: translateY(-50%);
  box-shadow: 0 0 0 4rem rgb(199 178 153 / 8%), 0 0 0 8rem rgb(199 178 153 / 5%);
}

/* Faith overview */

.faith-intro__inner,
.house-intro__inner,
.calendar-intro__inner,
.contact-about__inner {
  display: grid;
  align-items: start;
  gap: clamp(2.5rem, 8vw, 8rem);
}

.faith-intro__heading h2,
.house-intro__statement h2,
.calendar-intro h2,
.contact-about h2 {
  max-width: 12ch;
  color: var(--black);
}

.faith-intro__prose,
.house-intro__prose {
  position: relative;
  padding: clamp(1.6rem, 4vw, 3.5rem);
  border: 1px solid var(--hairline);
  background: var(--white);
  box-shadow: var(--shadow-soft);
}

.faith-intro__prose::before,
.house-intro__prose::before {
  position: absolute;
  top: -1rem;
  right: 1rem;
  bottom: 1rem;
  left: -1rem;
  z-index: -1;
  border: 1px solid rgb(199 178 153 / 52%);
  content: "";
}

.faith-principles {
  position: relative;
  padding-block: clamp(4rem, 8vw, 8rem);
  margin-block: 0;
  background: var(--paper);
}

.faith-principles__heading {
  display: grid;
  margin-bottom: clamp(4rem, 8vw, 8rem);
  align-items: end;
  gap: 2rem;
}

.faith-principles__heading h2 {
  max-width: 12ch;
  margin-bottom: 0;
  color: var(--black);
}

.faith-principles__heading > p {
  max-width: 34rem;
  margin-bottom: 0;
}

.faith-principles__grid {
  display: grid;
  gap: clamp(4rem, 8vw, 8rem) clamp(2rem, 6vw, 6rem);
}

.faith-principle {
  position: relative;
}

.faith-principle__image-link {
  position: relative;
  display: block;
  aspect-ratio: 5 / 4;
  background: var(--teal);
  color: var(--white);
}

.faith-principle__image-link::before {
  position: absolute;
  inset: -0.9rem 0.9rem 0.9rem -0.9rem;
  z-index: -1;
  border: 1px solid var(--hairline);
  content: "";
}

.faith-principle__image-link picture,
.faith-principle__image {
  display: block;
  width: 100%;
  height: 100%;
}

.faith-principle__image {
  object-fit: cover;
  transition: transform 400ms ease;
}

.faith-principle__image-link {
  overflow: hidden;
}

.faith-principle__image-link:hover .faith-principle__image,
.faith-principle__image-link:focus-visible .faith-principle__image {
  transform: scale(1.035);
}

.faith-principle__copy {
  position: relative;
  z-index: 2;
  width: calc(100% - 1.6rem);
  padding: 1.5rem 1.6rem 0;
  margin-top: -2.5rem;
  margin-left: auto;
  background: var(--paper);
}

.faith-principle__number,
.calendar-moment__number,
.contact-card__number,
.house-pillars article > span {
  color: var(--burgundy);
  font-family: var(--font-label);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.13em;
}

.faith-principle h3 {
  margin: 0.55rem 0 1rem;
}

.faith-principle h3 a {
  color: var(--brown);
  text-decoration: none;
}

.faith-principle:nth-child(3n + 2) .faith-principle__image-link {
  aspect-ratio: 4 / 5;
}

.faith-principle:nth-child(5) .faith-principle__image-link {
  aspect-ratio: 3 / 2;
}

/* House of Worship */

.house-intro__pull {
  max-width: 22ch;
  padding-top: 1.5rem;
  margin-top: 2rem;
  border-top: 1px solid var(--gold);
  font-family: var(--font-heading);
  font-size: clamp(1.35rem, 2.5vw, 2rem);
  font-style: normal;
  line-height: 1.35;
}

.house-pillars {
  position: relative;
  padding-block: clamp(2.5rem, 6vw, 5rem);
  margin-block: 0;
  background: var(--deep-teal);
  color: var(--white);
}

.house-pillars::before {
  position: absolute;
  top: -2.4rem;
  right: 0;
  left: 0;
  height: 2.5rem;
  background: var(--deep-teal);
  clip-path: polygon(0 100%, 0 64%, 7% 76%, 14% 56%, 22% 72%, 31% 51%, 40% 69%, 49% 55%, 58% 73%, 67% 52%, 77% 69%, 86% 54%, 94% 72%, 100% 57%, 100% 100%);
  content: "";
}

.house-pillars__frame {
  padding: clamp(3rem, 7vw, 6rem);
  border: 1px solid rgb(238 221 195 / 55%);
}

.house-pillars__heading {
  max-width: 39rem;
  margin-bottom: clamp(3rem, 7vw, 6rem);
}

.house-pillars__heading .eyebrow {
  color: var(--cream);
}

.house-pillars__heading h2 {
  margin-bottom: 0;
  color: var(--white);
}

.house-pillars__grid {
  display: grid;
  gap: 2rem;
}

.house-pillars article {
  padding-top: 1.6rem;
  border-top: 1px solid rgb(238 221 195 / 48%);
}

.house-pillars article > span {
  color: var(--gold);
}

.house-pillars h3 {
  margin: 1rem 0;
  color: var(--white);
}

.house-pillars article p {
  margin-bottom: 0;
  color: rgb(255 255 255 / 78%);
}

/* Calendar */

.calendar-intro__inner > p {
  max-width: 35rem;
  padding: clamp(1.8rem, 4vw, 3rem);
  margin: 0;
  border-top: 1px solid var(--gold);
  border-bottom: 1px solid var(--gold);
  font-family: var(--font-heading);
  font-size: clamp(1.25rem, 2.4vw, 1.8rem);
  line-height: 1.45;
}

.calendar-journey {
  position: relative;
  padding-block: clamp(5rem, 10vw, 9rem);
  margin-block: 0;
  background: var(--paper);
}

.calendar-journey__heading {
  margin-bottom: clamp(3.5rem, 7vw, 6rem);
}

.calendar-journey__heading h2 {
  max-width: 14ch;
  margin-bottom: 0;
  color: var(--black);
}

.calendar-journey__grid {
  display: grid;
  gap: 1.2rem;
}

.calendar-moment {
  position: relative;
  display: grid;
  min-height: 22rem;
  padding: clamp(2rem, 5vw, 4rem);
  border: 1px solid var(--hairline);
  background: var(--white);
  align-content: space-between;
  box-shadow: 0 16px 45px rgb(70 61 47 / 7%);
}

.calendar-moment::before {
  position: absolute;
  inset: 0.7rem;
  border: 1px solid rgb(199 178 153 / 35%);
  content: "";
  pointer-events: none;
}

.calendar-moment > * {
  position: relative;
  z-index: 1;
}

.calendar-moment h3 {
  margin: 1.4rem 0 1.2rem;
  color: var(--black);
}

.calendar-moment p {
  margin-bottom: 0;
}

/* Contact */

.contact-about {
  display: block;
}

.contact-about__inner > p {
  max-width: 46rem;
  padding: clamp(2rem, 5vw, 4rem);
  margin: 0;
  border: 1px solid var(--hairline);
  background: var(--white);
  box-shadow: var(--shadow-soft);
  font-family: var(--font-heading);
  font-size: clamp(1.15rem, 2vw, 1.55rem);
  line-height: 1.55;
}

.contact-details {
  position: relative;
  padding-block: clamp(5rem, 10vw, 9rem);
  background: var(--deep-teal);
}

.contact-details::before {
  position: absolute;
  inset: 0;
  background: transparent;
  content: "";
  pointer-events: none;
}

.contact-details__heading {
  position: relative;
  z-index: 1;
  margin-bottom: clamp(3rem, 7vw, 6rem);
}

.contact-details__heading .eyebrow {
  color: var(--gold);
}

.contact-details__heading h2 {
  max-width: 13ch;
  margin-bottom: 0;
  color: var(--white);
}

.contact-details__grid {
  position: relative;
  z-index: 1;
  gap: 1rem;
}

.contact-card {
  min-height: 24rem;
  padding: clamp(2rem, 4vw, 3.5rem);
  border: 1px solid rgb(238 221 195 / 45%);
  background: rgb(255 255 255 / 5%);
}

.contact-card--primary {
  background: var(--paper);
  color: var(--brown);
}

.contact-card h3 {
  margin: 1.35rem 0;
  color: var(--white);
}

.contact-card--primary h3 {
  color: var(--black);
}

.contact-card--primary p {
  color: var(--brown);
}

.contact-card--primary > a {
  color: var(--burgundy);
}

.contact-card .contact-card__number {
  color: var(--gold);
}

.contact-card--primary .contact-card__number {
  color: var(--burgundy);
}

.contact-card .text-action {
  display: inline-flex;
  width: auto;
}

.contact-card--primary .contact-details__actions .text-action {
  border-color: var(--burgundy);
  background: var(--burgundy);
  color: var(--white);
}

.contact-card--primary .contact-details__actions .text-action:hover,
.contact-card--primary .contact-details__actions .text-action:focus-visible {
  border-color: var(--teal);
  background: var(--teal);
  color: var(--white);
}

/* Existing editorial sections inherit the same language */

.principle-page .editorial-columns > section {
  position: relative;
  padding: clamp(2rem, 4vw, 3.5rem);
  border: 1px solid var(--hairline);
  background: rgb(255 255 255 / 88%);
}

.principle-page .editorial-columns > section + section {
  border-left: 1px solid var(--hairline);
}

.principle-page .editorial-columns h2 {
  color: var(--black);
}

.principle-page .concluding-columns .editorial-columns > section {
  background: transparent;
  border-color: rgb(238 221 195 / 40%);
}

.principle-page .concluding-columns .editorial-columns h2 {
  color: var(--white);
}

.quotes-section {
  position: relative;
  background: var(--deep-teal);
}

.principle-navigation a {
  position: relative;
  padding: 1.3rem;
  border: 1px solid var(--hairline);
  background: var(--paper);
}

.principle-navigation a:hover,
.principle-navigation a:focus-visible {
  background: var(--teal);
  color: var(--white);
}

.public-affairs-story__figure figcaption,
.public-affairs-mosaic figcaption,
.public-affairs-media figcaption {
  position: absolute;
  right: 0;
  bottom: 0;
  z-index: 2;
  padding: 0.45rem 0.7rem;
  background: rgb(41 79 84 / 84%);
  color: var(--white);
  font-family: var(--font-label);
  font-size: 0.66rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.public-affairs-media figcaption {
  right: auto;
  bottom: 0.6rem;
  left: 0.6rem;
  max-width: calc(100% - 1.2rem);
}

.public-affairs-mosaic__inner::before {
  position: absolute;
  top: -6rem;
  left: -12rem;
  width: 24rem;
  height: 24rem;
  border: 1px solid var(--soft-gold);
  border-radius: 50%;
  box-shadow: 0 0 0 4rem rgb(199 178 153 / 7%), 0 0 0 8rem rgb(199 178 153 / 4%);
  content: "";
}

.site-footer {
  position: relative;
  padding-top: clamp(4rem, 8vw, 7rem);
  background: #1f4247;
  border-top: 1px solid var(--gold);
  overflow: hidden;
}

.site-footer::after {
  position: absolute;
  right: -9rem;
  bottom: -12rem;
  width: 26rem;
  height: 26rem;
  border: 1px solid rgb(199 178 153 / 18%);
  border-radius: 50%;
  box-shadow: 0 0 0 4rem rgb(199 178 153 / 5%), 0 0 0 8rem rgb(199 178 153 / 3%);
  content: "";
}

.site-footer__inner {
  position: relative;
  z-index: 1;
}

@media (min-width: 42rem) {
  .faith-principles__heading,
  .calendar-intro__inner,
  .contact-about__inner {
    grid-template-columns: minmax(0, 1fr) minmax(20rem, 0.8fr);
  }

  .faith-principles__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .calendar-journey__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .calendar-moment--3 {
    grid-column: 1 / -1;
    width: calc(50% - 0.6rem);
    margin-left: auto;
  }
}

@media (min-width: 54rem) {
  .faith-intro__inner,
  .house-intro__inner {
    grid-template-columns: minmax(18rem, 0.8fr) minmax(0, 1.2fr);
  }

  .editorial-cta {
    grid-template-columns: minmax(0, 1fr) auto;
  }

  .editorial-cta > .text-action {
    align-self: end;
  }

  .house-pillars__grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 0;
  }

  .house-pillars article {
    padding-inline: clamp(1.4rem, 3vw, 3rem);
  }

  .house-pillars article + article {
    border-left: 1px solid rgb(238 221 195 / 38%);
  }

  .contact-details__grid {
    grid-template-columns: 1.25fr 0.8fr 0.8fr;
  }

  .contact-card:nth-child(2) {
    transform: translateY(2.5rem);
  }

  .contact-card:nth-child(3) {
    transform: translateY(-2rem);
  }
}

@media (min-width: 70rem) {
  .site-header__inner {
    min-height: 5.25rem;
  }

  .wordmark__mark {
    width: 3.35rem;
    height: 3.35rem;
  }

  .faith-principles__grid {
    grid-template-columns: repeat(12, minmax(0, 1fr));
  }

  .faith-principle {
    grid-column: span 5;
  }

  .faith-principle:nth-child(odd) {
    grid-column: 1 / span 6;
  }

  .faith-principle:nth-child(even) {
    grid-column: 8 / span 5;
    margin-top: 5rem;
  }

  .faith-principle:nth-child(3),
  .faith-principle:nth-child(6) {
    margin-left: 4rem;
  }
}

@media (max-width: 53.99rem) {
  .page-hero__figure {
    width: 100%;
  }

  .page-hero__veil {
    background: rgb(1 38 44 / 80%);
  }

  .page-hero__title {
    padding-top: 14rem;
    padding-bottom: 7rem;
  }

  .page-hero__caption {
    right: 1.2rem;
    bottom: 3.2rem;
    max-width: calc(100% - 2.4rem);
  }

  .page-hero--portrait .page-hero__figure {
    inset: 0;
    width: 100%;
    border: 0;
    box-shadow: none;
  }

  .page-hero--portrait .page-hero__caption {
    right: 1.2rem;
    bottom: 3.2rem;
    left: auto;
  }

  .contact-card {
    min-height: auto;
  }
}

@media (max-width: 41.99rem) {
  .editorial-stage::before {
    left: 0;
  }

  .editorial-stage__ornament {
    right: -18rem;
  }

  .faith-principle__copy {
    width: calc(100% - 1rem);
    padding-inline: 1rem;
  }

  .calendar-moment,
  .editorial-cta,
  .house-pillars__frame {
    padding: 2rem 1.4rem;
  }

  .page-hero h1 {
    font-size: clamp(2.75rem, 14vw, 4.5rem);
  }

  .page-hero--long-title h1 {
    font-size: clamp(2.2rem, 11vw, 3.5rem);
  }
}

/* Editorial reading rhythm ------------------------------------------------ */

.editorial-lead {
  color: var(--black);
  font-family: var(--font-heading);
  font-size: 1.08em;
  font-style: normal;
  font-weight: 500;
  line-height: 1.52;
}

.prose .editorial-lead,
.editorial-columns .editorial-lead,
.public-affairs-story__copy .editorial-lead,
.public-affairs-media__copy .editorial-lead,
.calendar-moment .editorial-lead {
  display: block;
  margin-bottom: 0.8rem;
}

.prose .editorial-lead {
  font-size: 1.13em;
}

.editorial-accent {
  color: var(--burgundy);
  font-family: var(--font-heading);
  font-style: normal;
  font-weight: 650;
}

.principle-page .editorial-columns > section:nth-child(even) h2 {
  color: var(--burgundy);
  font-style: normal;
}

.calendar-moment:nth-child(even) h3 {
  color: var(--burgundy);
  font-style: normal;
}

.quotes-grid blockquote:nth-child(even) p {
  font-style: normal;
}

.concluding-columns .editorial-lead {
  color: var(--cream);
}

.concluding-columns .editorial-accent {
  color: var(--gold);
}

.concluding-columns .editorial-columns > section:nth-child(even) h2 {
  color: var(--white);
}

/* Clean invitation and footer handoff ------------------------------------- */

.home-invitation {
  position: relative;
  z-index: 3;
  padding: clamp(5rem, 10vw, 9rem) var(--gutter) 0;
  background: var(--white);
}

.home-invitation__frame {
  position: relative;
  width: min(100%, 74rem);
  min-height: 22rem;
  padding: clamp(4.5rem, 8vw, 6.5rem) clamp(1.5rem, 7vw, 6rem) clamp(3rem, 6vw, 5rem);
  border: 1px solid var(--hairline);
  background: var(--paper);
  box-shadow: var(--shadow-soft);
  text-align: center;
  transform: translateY(3.5rem);
}

.home-invitation__frame::before {
  position: absolute;
  inset: 0.8rem;
  border: 1px solid rgb(199 178 153 / 48%);
  content: "";
  pointer-events: none;
}

.home-invitation .script-accent {
  position: absolute;
  top: -2.7rem;
  left: clamp(1.2rem, 6vw, 5rem);
  z-index: 2;
  color: var(--black);
  font-size: clamp(4rem, 8vw, 7rem);
  transform: rotate(-4deg);
}

.home-invitation__content {
  position: relative;
  z-index: 1;
}

.home-invitation__content h2 {
  max-width: 19ch;
  margin: 0 auto clamp(2rem, 5vw, 3rem);
  color: var(--brown);
  font-size: clamp(2rem, 4.5vw, 3.8rem);
  letter-spacing: 0.015em;
  text-transform: uppercase;
}

.home-invitation__actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.8rem 1.2rem;
}

.home-invitation__actions .text-action {
  min-width: min(100%, 15rem);
  border-color: var(--burgundy);
  background: var(--burgundy);
  color: var(--white);
}

.home-invitation__actions .text-action:hover,
.home-invitation__actions .text-action:focus-visible {
  border-color: var(--teal);
  background: var(--teal);
}

.home-page .site-footer {
  padding-top: clamp(7.5rem, 12vw, 10rem);
}

.site-footer__identity {
  max-width: 33rem;
}

.site-footer__mission {
  max-width: 32rem;
  color: rgb(255 255 255 / 72%);
}

.site-footer__inner > div:not(.site-footer__identity) h2 {
  margin-bottom: 1rem;
  color: var(--gold);
  font-family: var(--font-label);
  font-size: 0.9rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.site-footer__inner > div:not(.site-footer__identity) p {
  max-width: 18rem;
  margin-bottom: 0.8rem;
  color: rgb(255 255 255 / 72%);
}

.site-footer__inner > div:not(.site-footer__identity) a {
  color: var(--white);
}

.site-footer--compact {
  padding-block: clamp(2.5rem, 5vw, 4rem);
}

.site-footer__compact-inner {
  position: relative;
  z-index: 1;
  display: flex;
  width: min(100% - (2 * var(--gutter)), 86rem);
  margin-inline: auto;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
}

.site-footer__compact-identity {
  display: inline-flex;
  color: var(--white);
  align-items: center;
  gap: 0.9rem;
  text-decoration: none;
}

.site-footer__compact-identity span {
  display: flex;
  flex-direction: column;
}

.site-footer__compact-identity strong {
  font-family: var(--font-heading);
  font-size: 1.2rem;
  font-weight: 500;
}

.site-footer__compact-identity small {
  color: rgb(255 255 255 / 62%);
  font-family: var(--font-label);
  font-size: 0.7rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.site-footer__compact-inner nav {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 0.75rem 1.5rem;
}

.site-footer__compact-inner nav a {
  color: var(--gold);
  font-family: var(--font-label);
  font-size: 0.78rem;
  letter-spacing: 0.07em;
  text-decoration: none;
  text-transform: uppercase;
}

@media (max-width: 41.99rem) {
  .home-invitation {
    padding-inline: 0.7rem;
  }

  .home-invitation__frame {
    padding-top: 5.5rem;
  }

  .home-invitation .script-accent {
    top: -2rem;
  }

  .home-invitation__actions {
    align-items: stretch;
    flex-direction: column;
  }

  .home-invitation__actions .text-action {
    width: 100%;
  }

  .site-footer__compact-inner {
    align-items: flex-start;
    flex-direction: column;
  }

  .site-footer__compact-inner nav {
    justify-content: flex-start;
  }
}

/* Homepage principles: centred introduction above a uniform image grid. */
@media (min-width: 64rem) {
  .principles-preview__frame {
    display: block;
  }

  .principles-preview .section-heading {
    position: relative;
    top: auto;
    margin: 0 auto clamp(3rem, 5vw, 5rem);
    justify-content: center;
    justify-items: center;
    text-align: center;
  }

  .principles-preview .section-heading::after {
    left: 50%;
    transform: translateX(-50%) scaleX(0);
    transform-origin: center;
  }

  .principles-preview .section-heading.is-motion-visible::after {
    transform: translateX(-50%) scaleX(1);
  }

  .principles-preview .principles-rail {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: clamp(0.9rem, 1.5vw, 1.5rem);
  }

  .principles-preview .principle-figure {
    min-height: clamp(22rem, 31vw, 28rem);
  }

  .principles-preview .principle-figure:nth-child(even) {
    margin-top: 0;
  }
}
