:root {
  --ink: #171713;
  --ink-deep: #080806;
  --ivory: #f8f3e7;
  --paper: #ede2cc;
  --white: #fff;
  --gold: #d7a715;
  --gold-readable: #8a6500;
  --sage: #6e7764;
  --earth: #8a6842;
  --muted: #69685f;
  --line: rgba(23, 23, 19, 0.17);
  --line-light: rgba(255, 255, 255, 0.24);
  --shadow: 0 28px 70px rgba(23, 23, 19, 0.13);
  --serif: "Lora", Georgia, serif;
  --sans: "Be Vietnam Pro", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --script: "Dancing Script", "Segoe Script", cursive;
  --container: 1280px;
  --gutter: clamp(20px, 4vw, 64px);
  --section: clamp(76px, 10vw, 144px);
  --radius-sm: 18px;
  --radius-md: 30px;
  --radius-lg: 48px;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

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

html {
  scroll-behavior: smooth;
  scroll-padding-top: 94px;
  background: var(--ivory);
}

body {
  margin: 0;
  overflow-x: clip;
  background: var(--ivory);
  color: var(--ink);
  font-family: var(--sans);
  font-size: clamp(16px, 1.15vw, 18px);
  font-weight: 400;
  line-height: 1.72;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}

body.menu-open {
  overflow: hidden;
}

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

a {
  color: inherit;
  text-decoration-thickness: 1px;
  text-underline-offset: 0.2em;
}

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

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

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

::selection {
  background: var(--gold);
  color: var(--ink-deep);
}

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

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

h2 {
  font-size: clamp(40px, 5.4vw, 76px);
  letter-spacing: -0.035em;
}

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

.reading-width {
  max-width: 820px;
}

.center {
  text-align: center;
}

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

.site-main {
  min-height: 60vh;
}

.skip-link {
  position: fixed;
  z-index: 10000;
  top: 12px;
  left: 12px;
  padding: 12px 18px;
  transform: translateY(-180%);
  border-radius: 999px;
  background: var(--white);
  color: var(--ink);
  font-size: 14px;
  font-weight: 600;
  text-decoration: none;
  transition: transform 180ms ease;
}

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

.scroll-progress {
  position: fixed;
  z-index: 1001;
  inset: 0 0 auto;
  height: 3px;
  pointer-events: none;
}

.scroll-progress span {
  display: block;
  width: 100%;
  height: 100%;
  transform: scaleX(0);
  transform-origin: left;
  background: var(--gold);
}

.eyebrow,
.home-hero__overline {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 22px;
  color: var(--gold-readable);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.18em;
  line-height: 1.35;
  text-transform: uppercase;
}

.eyebrow::before,
.home-hero__overline span {
  width: 34px;
  height: 1px;
  flex: 0 0 auto;
  background: currentColor;
  content: "";
}

.eyebrow--light {
  color: #f4d772;
}

.calligraphy-accent {
  margin-bottom: 4px;
  color: #f2ce4f;
  font-family: var(--script);
  font-size: clamp(30px, 4vw, 54px);
  font-weight: 500;
  letter-spacing: 0.01em;
  line-height: 1.1;
  transform: rotate(-2deg);
}

.calligraphy-accent--ink {
  margin-top: 22px;
  color: var(--gold-readable);
  font-size: clamp(28px, 3.3vw, 44px);
}

.button {
  display: inline-flex;
  min-height: 50px;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 13px 23px;
  border: 1px solid transparent;
  border-radius: 999px;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.035em;
  line-height: 1.25;
  text-decoration: none;
  transition: transform 240ms var(--ease), background-color 240ms ease, color 240ms ease, border-color 240ms ease;
}

.button:hover {
  transform: translateY(-2px);
}

.button--ink {
  background: var(--ink-deep);
  color: var(--white);
}

.button--ink:hover {
  background: #292922;
}

.button--gold {
  background: var(--gold);
  color: var(--ink-deep);
}

.button--gold:hover {
  background: #e7ba29;
}

.button--light {
  background: var(--ivory);
  color: var(--ink-deep);
}

.text-link {
  display: inline-flex;
  min-height: 44px;
  align-items: center;
  gap: 9px;
  border-bottom: 1px solid currentColor;
  color: var(--ink);
  font-size: 14px;
  font-weight: 600;
  text-decoration: none;
  transition: color 180ms ease, gap 220ms var(--ease);
}

.text-link:hover {
  gap: 14px;
  color: var(--gold-readable);
}

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

.text-link--light:hover {
  color: #f4d772;
}

/* Header */
.site-header {
  position: fixed;
  z-index: 1000;
  inset: 0 0 auto;
  color: var(--ink);
  transition: background-color 280ms ease, box-shadow 280ms ease, color 280ms ease, backdrop-filter 280ms ease;
}

.has-immersive-hero .site-header:not(.is-scrolled),
body.page:not(.home) .site-header:not(.is-scrolled) {
  color: var(--white);
}

.site-header.is-scrolled,
.menu-open .site-header {
  background: rgba(248, 243, 231, 0.94);
  box-shadow: 0 10px 34px rgba(23, 23, 19, 0.08);
  color: var(--ink);
  -webkit-backdrop-filter: blur(18px);
  backdrop-filter: blur(18px);
}

.site-header__inner {
  display: flex;
  min-height: 88px;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
}

.brand {
  position: relative;
  z-index: 3;
  display: inline-flex;
  min-height: 52px;
  align-items: center;
  gap: 12px;
  text-decoration: none;
}

.brand__mark {
  width: 48px;
  height: 48px;
  object-fit: contain;
  transition: filter 220ms ease;
}

.has-immersive-hero .site-header:not(.is-scrolled) .brand__mark,
body.page:not(.home) .site-header:not(.is-scrolled) .brand__mark {
  filter: invert(1);
}

.menu-open .brand__mark {
  filter: none !important;
}

.brand__wordmark {
  display: grid;
  line-height: 1.05;
}

.brand__wordmark strong {
  font-family: var(--serif);
  font-size: 19px;
  font-weight: 600;
}

.brand__wordmark small {
  margin-top: 5px;
  font-size: 9px;
  font-weight: 500;
  letter-spacing: 0.11em;
  text-transform: uppercase;
}

.site-navigation {
  display: flex;
  align-items: center;
  gap: clamp(18px, 2.2vw, 34px);
}

.site-navigation ul {
  display: flex;
  align-items: center;
  gap: clamp(17px, 1.8vw, 28px);
  margin: 0;
  padding: 0;
  list-style: none;
}

.site-navigation ul a {
  position: relative;
  display: inline-flex;
  min-height: 44px;
  align-items: center;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.025em;
  text-decoration: none;
}

.site-navigation ul a::after {
  position: absolute;
  right: 0;
  bottom: 7px;
  left: 0;
  height: 1px;
  transform: scaleX(0);
  transform-origin: right;
  background: currentColor;
  content: "";
  transition: transform 240ms var(--ease);
}

.site-navigation ul a:hover::after,
.site-navigation ul a:focus-visible::after {
  transform: scaleX(1);
  transform-origin: left;
}

.nav-booking {
  min-height: 44px;
  padding-inline: 18px;
  font-size: 11px;
}

.menu-toggle {
  position: relative;
  z-index: 3;
  display: none;
  min-width: 72px;
  min-height: 48px;
  align-items: center;
  justify-content: flex-end;
  gap: 11px;
  padding: 0;
  border: 0;
  background: transparent;
  color: currentColor;
  cursor: pointer;
}

.menu-toggle__label {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.menu-toggle__lines {
  position: relative;
  width: 27px;
  height: 18px;
}

.menu-toggle__lines i {
  position: absolute;
  right: 0;
  width: 27px;
  height: 2px;
  background: currentColor;
  transition: top 220ms ease, transform 220ms ease;
}

.menu-toggle__lines i:first-child {
  top: 4px;
}

.menu-toggle__lines i:last-child {
  top: 13px;
}

.menu-toggle[aria-expanded="true"] .menu-toggle__lines i:first-child {
  top: 9px;
  transform: rotate(45deg);
}

.menu-toggle[aria-expanded="true"] .menu-toggle__lines i:last-child {
  top: 9px;
  transform: rotate(-45deg);
}

/* Home hero */
.home-hero {
  position: relative;
  display: grid;
  min-height: max(760px, 100svh);
  align-items: end;
  overflow: hidden;
  background: var(--ink-deep);
  color: var(--white);
}

.home-hero__media,
.home-hero__veil {
  position: absolute;
  inset: 0;
}

.home-hero__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 50% 52%;
  transform: scale(1.025);
  animation: hero-breathe 18s ease-in-out infinite alternate;
}

.home-hero__veil {
  background:
    linear-gradient(90deg, rgba(6, 8, 4, 0.77) 0%, rgba(7, 8, 5, 0.44) 47%, rgba(7, 8, 5, 0.1) 77%),
    linear-gradient(0deg, rgba(6, 7, 4, 0.72) 0%, transparent 54%);
}

.home-hero__halo {
  position: absolute;
  top: 15%;
  right: 14%;
  width: clamp(150px, 20vw, 300px);
  aspect-ratio: 1;
  border: 1px solid rgba(244, 215, 114, 0.36);
  border-radius: 50%;
  box-shadow: 0 0 90px rgba(215, 167, 21, 0.15), inset 0 0 70px rgba(215, 167, 21, 0.08);
}

.home-hero__halo::after {
  position: absolute;
  inset: 42%;
  border-radius: inherit;
  background: var(--gold);
  box-shadow: 0 0 44px rgba(215, 167, 21, 0.72);
  content: "";
}

.home-hero__content {
  position: relative;
  z-index: 2;
  padding-bottom: clamp(92px, 11vh, 140px);
}

.home-hero__overline {
  color: #f4d772;
}

.home-hero h1 {
  max-width: 780px;
  margin-bottom: 28px;
  font-size: clamp(66px, 10vw, 136px);
  letter-spacing: -0.065em;
  line-height: 0.83;
}

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

.home-hero h1 small {
  display: block;
  margin-top: 28px;
  font-family: var(--sans);
  font-size: clamp(14px, 1.5vw, 19px);
  font-weight: 500;
  letter-spacing: 0.28em;
  line-height: 1.4;
  text-transform: uppercase;
}

.home-hero__lead {
  max-width: 690px;
  margin-bottom: 34px;
  color: rgba(255, 255, 255, 0.88);
  font-size: clamp(17px, 1.5vw, 21px);
  line-height: 1.67;
}

.home-hero__actions {
  display: flex;
  align-items: center;
  gap: 26px;
}

.home-hero__scroll,
.page-hero__scroll {
  position: absolute;
  z-index: 2;
  right: var(--gutter);
  bottom: 38px;
  display: grid;
  justify-items: center;
  gap: 10px;
  color: rgba(255, 255, 255, 0.8);
  font-size: 9px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-decoration: none;
  text-transform: uppercase;
}

.home-hero__scroll i,
.page-hero__scroll i {
  position: relative;
  width: 1px;
  height: 35px;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.32);
}

.home-hero__scroll i::after,
.page-hero__scroll i::after {
  position: absolute;
  inset: 0;
  transform: translateY(-100%);
  background: var(--white);
  content: "";
  animation: scroll-line 2.1s ease-in-out infinite;
}

.value-ribbon {
  overflow: hidden;
  background: var(--ink-deep);
  color: var(--ivory);
}

.value-ribbon__track {
  display: flex;
  width: max-content;
  min-height: 64px;
  align-items: center;
  gap: 34px;
  padding-inline: 28px;
  font-family: var(--serif);
  font-size: clamp(15px, 1.6vw, 21px);
  white-space: nowrap;
  animation: ribbon-move 30s linear infinite;
}

.value-ribbon__track i {
  color: var(--gold);
  font-family: var(--sans);
  font-size: 10px;
  font-style: normal;
}

/* Intro */
.home-intro__grid {
  display: grid;
  grid-template-columns: minmax(0, 1.02fr) minmax(0, 0.78fr);
  gap: clamp(55px, 9vw, 140px);
  align-items: start;
}

.home-intro__title h2 {
  max-width: 730px;
  margin-bottom: 0;
}

.home-intro__copy {
  padding-top: 58px;
}

.home-intro__copy p {
  color: #4e4e47;
}

.home-intro__copy .lead-paragraph {
  color: var(--ink);
}

.lead-paragraph {
  font-family: var(--serif);
  font-size: clamp(22px, 2.1vw, 30px);
  line-height: 1.55;
}

/* Landmark */
.living-landmark {
  position: relative;
  display: grid;
  min-height: min(880px, 92svh);
  align-items: end;
  overflow: hidden;
  background: var(--ink-deep);
  color: var(--white);
}

.living-landmark__media {
  position: absolute;
  inset: 0;
}

.living-landmark__media::after {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(6, 7, 4, 0.76), rgba(6, 7, 4, 0.16) 70%), linear-gradient(0deg, rgba(6, 7, 4, 0.6), transparent 56%);
  content: "";
}

.living-landmark__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.living-landmark__content {
  position: relative;
  z-index: 1;
  padding-bottom: clamp(68px, 9vw, 122px);
}

.living-landmark__content h2 {
  max-width: 760px;
  margin-bottom: 20px;
  font-size: clamp(52px, 8vw, 110px);
}

.living-landmark__content > p:not(.eyebrow) {
  max-width: 650px;
  margin-bottom: 28px;
  color: rgba(255, 255, 255, 0.82);
  font-size: clamp(17px, 1.4vw, 20px);
}

.numbers-section {
  border-bottom: 1px solid var(--line);
  background: var(--paper);
}

.numbers-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}

.number-card {
  min-height: 220px;
  padding: 48px clamp(22px, 3vw, 44px);
  border-left: 1px solid var(--line);
}

.number-card:last-child {
  border-right: 1px solid var(--line);
}

.number-card strong {
  display: block;
  margin-bottom: 15px;
  font-family: var(--serif);
  font-size: clamp(46px, 5.4vw, 76px);
  font-weight: 500;
  letter-spacing: -0.055em;
  line-height: 1;
}

.number-card strong small {
  margin-left: 5px;
  font-family: var(--sans);
  font-size: 0.28em;
  font-weight: 500;
  letter-spacing: 0;
}

.number-card span {
  display: block;
  max-width: 190px;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.6;
}

.section-heading {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 40px;
  margin-bottom: clamp(42px, 6vw, 76px);
}

.section-heading h2 {
  max-width: 820px;
  margin-bottom: 0;
}

/* Spaces */
.spaces-grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: clamp(14px, 2vw, 26px);
}

.space-card {
  position: relative;
  grid-column: span 4;
  min-height: clamp(380px, 42vw, 570px);
  overflow: hidden;
  border-radius: var(--radius-md);
  background: var(--ink);
  color: var(--white);
  isolation: isolate;
  text-decoration: none;
}

.space-card:nth-child(1),
.space-card:nth-child(5) {
  grid-column: span 7;
}

.space-card:nth-child(2),
.space-card:nth-child(6) {
  grid-column: span 5;
}

.space-card:nth-child(n + 3):nth-child(-n + 4) {
  min-height: clamp(340px, 34vw, 470px);
}

.space-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 800ms var(--ease), filter 500ms ease;
}

.space-card__veil {
  position: absolute;
  z-index: 1;
  inset: 0;
  background: linear-gradient(0deg, rgba(5, 6, 3, 0.78), transparent 58%);
}

.space-card__number,
.space-card__title,
.space-card__arrow {
  position: absolute;
  z-index: 2;
}

.space-card__number {
  top: 24px;
  left: 25px;
  color: rgba(255, 255, 255, 0.74);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.16em;
}

.space-card__title {
  right: 62px;
  bottom: 28px;
  left: 26px;
  font-family: var(--serif);
  font-size: clamp(25px, 2.8vw, 40px);
  line-height: 1.2;
}

.space-card__arrow {
  right: 26px;
  bottom: 29px;
  font-size: 21px;
  transition: transform 260ms var(--ease);
}

.space-card:hover img {
  transform: scale(1.055);
  filter: saturate(1.05);
}

.space-card:hover .space-card__arrow {
  transform: translate(4px, -4px);
}

.philosophy-quote {
  padding-block: clamp(90px, 13vw, 190px);
  background: var(--paper);
}

.philosophy-quote__inner {
  display: grid;
  grid-template-columns: 160px minmax(0, 900px);
  gap: clamp(34px, 6vw, 90px);
  align-items: start;
  justify-content: center;
}

.infinity-mark {
  display: grid;
  width: 132px;
  aspect-ratio: 1;
  place-items: center;
  border: 1px solid rgba(138, 101, 0, 0.35);
  border-radius: 50%;
  color: var(--gold-readable);
  font-family: var(--serif);
  font-size: 68px;
}

.philosophy-quote blockquote {
  margin-bottom: 0;
}

.philosophy-quote blockquote p {
  margin-bottom: 28px;
  font-family: var(--serif);
  font-size: clamp(31px, 4.2vw, 61px);
  letter-spacing: -0.035em;
  line-height: 1.32;
}

.philosophy-quote cite {
  color: var(--muted);
  font-size: 12px;
  font-style: normal;
  font-weight: 600;
  letter-spacing: 0.11em;
  text-transform: uppercase;
}

/* Programs */
.program-list {
  border-top: 1px solid var(--line);
}

.program-row {
  position: relative;
  display: grid;
  grid-template-columns: 56px 158px minmax(240px, 0.9fr) minmax(250px, 1.1fr) 28px;
  min-height: 154px;
  align-items: center;
  gap: clamp(18px, 2.6vw, 42px);
  border-bottom: 1px solid var(--line);
  color: var(--ink);
  text-decoration: none;
  transition: padding 260ms var(--ease), background-color 260ms ease;
}

.program-row:hover {
  padding-inline: 16px;
  background: rgba(237, 226, 204, 0.55);
}

.program-row__number {
  color: var(--gold-readable);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.14em;
}

.program-row__media {
  height: 108px;
  overflow: hidden;
  border-radius: var(--radius-sm);
}

.program-row__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 550ms var(--ease);
}

.program-row:hover .program-row__media img {
  transform: scale(1.06);
}

.program-row > strong {
  font-family: var(--serif);
  font-size: clamp(21px, 2.1vw, 30px);
  font-weight: 500;
  line-height: 1.3;
}

.program-row__description {
  display: -webkit-box;
  overflow: hidden;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.65;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;
}

.program-row > i {
  font-size: 20px;
  font-style: normal;
  transition: transform 240ms var(--ease);
}

.program-row:hover > i {
  transform: translate(4px, -4px);
}

/* Community */
.community-section {
  background: var(--ink-deep);
  color: var(--white);
}

.community-section__heading {
  max-width: 990px;
  margin-bottom: clamp(46px, 7vw, 82px);
}

.community-section__heading h2 {
  margin-bottom: 0;
}

.community-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(18px, 3vw, 42px);
}

.community-card {
  position: relative;
  min-height: clamp(480px, 52vw, 700px);
  overflow: hidden;
  border-radius: var(--radius-lg);
  background: #25251f;
  color: var(--white);
  isolation: isolate;
  text-decoration: none;
}

.community-card::after {
  position: absolute;
  z-index: 1;
  inset: 0;
  background: linear-gradient(0deg, rgba(4, 5, 3, 0.82), transparent 62%);
  content: "";
}

.community-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 800ms var(--ease);
}

.community-card:hover img {
  transform: scale(1.045);
}

.community-card__body {
  position: absolute;
  z-index: 2;
  right: 34px;
  bottom: 36px;
  left: 34px;
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: end;
  gap: 8px 20px;
}

.community-card__body small {
  grid-column: 1 / -1;
  color: #f4d772;
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.community-card__body strong {
  font-family: var(--serif);
  font-size: clamp(27px, 3.3vw, 46px);
  font-weight: 500;
  line-height: 1.18;
}

.community-card__body i {
  font-size: 24px;
  font-style: normal;
  transition: transform 240ms var(--ease);
}

.community-card:hover .community-card__body i {
  transform: translate(5px, -5px);
}

.build-together {
  overflow: hidden;
}

.build-together__grid {
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(0, 0.82fr);
  gap: clamp(58px, 9vw, 132px);
  align-items: center;
}

.build-together__visual {
  position: relative;
}

.build-together__image {
  overflow: hidden;
  aspect-ratio: 4 / 5;
  border-radius: 46% 46% var(--radius-lg) var(--radius-lg);
  background: var(--paper);
}

.build-together__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.blessing-orb {
  position: absolute;
  right: -30px;
  bottom: 12%;
  width: clamp(82px, 10vw, 136px);
  aspect-ratio: 1;
  border: 18px solid var(--ivory);
  border-radius: 50%;
  background: var(--gold);
  box-shadow: var(--shadow);
}

.build-together__content h2 {
  margin-bottom: 28px;
}

.build-together__content > p:not(.eyebrow) {
  margin-bottom: 32px;
  color: var(--muted);
  font-size: clamp(17px, 1.4vw, 20px);
}

/* Inner pages */
.page-hero {
  position: relative;
  display: grid;
  min-height: max(620px, 78svh);
  align-items: end;
  overflow: hidden;
  background: var(--ink-deep);
  color: var(--white);
}

.page-hero__media,
.page-hero__veil {
  position: absolute;
  inset: 0;
}

.page-hero__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.page-hero__veil {
  background: linear-gradient(90deg, rgba(5, 6, 3, 0.8), rgba(5, 6, 3, 0.2) 72%), linear-gradient(0deg, rgba(5, 6, 3, 0.66), transparent 58%);
}

.page-hero__content {
  position: relative;
  z-index: 1;
  padding-bottom: clamp(76px, 9vw, 120px);
}

.breadcrumbs {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  align-items: center;
  margin-bottom: 34px;
  color: rgba(255, 255, 255, 0.7);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.045em;
}

.breadcrumbs a {
  text-decoration: none;
}

.breadcrumbs a:hover {
  color: #f4d772;
}

.page-hero h1 {
  max-width: 1050px;
  margin-bottom: 24px;
  font-size: clamp(50px, 8.1vw, 112px);
  letter-spacing: -0.055em;
  line-height: 1.01;
}

.page-hero__lead {
  max-width: 760px;
  margin-bottom: 0;
  color: rgba(255, 255, 255, 0.84);
  font-size: clamp(17px, 1.5vw, 21px);
  line-height: 1.65;
}

.page-article {
  padding-block: var(--section);
}

.page-article__grid {
  display: grid;
  grid-template-columns: 220px minmax(0, 820px);
  gap: clamp(55px, 9vw, 140px);
  justify-content: center;
  align-items: start;
}

.page-article__aside {
  position: sticky;
  top: 132px;
  padding-top: 5px;
}

.sun-mark {
  display: block;
  width: 26px;
  aspect-ratio: 1;
  margin-bottom: 26px;
  border-radius: 50%;
  background: var(--gold);
  box-shadow: 0 0 0 9px rgba(215, 167, 21, 0.11);
}

.page-article__aside > p {
  padding-bottom: 24px;
  border-bottom: 1px solid var(--line);
  color: var(--muted);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.page-article__aside a {
  display: inline-block;
  margin-top: 8px;
  color: var(--gold-readable);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.035em;
  text-decoration: none;
}

.page-article__aside a strong {
  display: inline-block;
  margin-top: 5px;
  color: var(--ink);
  font-size: 16px;
}

.prose-content {
  min-width: 0;
  color: #3f3f39;
}

.prose-content > *:first-child {
  margin-top: 0;
}

.prose-content p,
.prose-content li {
  font-size: clamp(17px, 1.25vw, 19px);
}

.prose-content p {
  margin-bottom: 1.45em;
}

.prose-content .lead-paragraph {
  margin-bottom: 1.45em;
  color: var(--ink);
  font-size: clamp(23px, 2.25vw, 32px);
}

.prose-content h2 {
  margin: 2em 0 0.65em;
  color: var(--ink);
  font-size: clamp(35px, 4.3vw, 58px);
}

.prose-content h3 {
  margin: 1.8em 0 0.55em;
  color: var(--ink);
  font-size: clamp(24px, 2.7vw, 35px);
}

.prose-content ul,
.prose-content ol {
  margin: 0 0 1.8em;
  padding-left: 1.35em;
}

.prose-content li {
  margin-bottom: 0.75em;
}

.prose-content a {
  color: var(--gold-readable);
}

.explore-section {
  border-top: 1px solid var(--line);
  background: #f2eadb;
}

.content-card-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(18px, 2.2vw, 30px);
}

.content-card {
  overflow: hidden;
  border: 1px solid rgba(23, 23, 19, 0.1);
  border-radius: var(--radius-md);
  background: var(--ivory);
  color: var(--ink);
  text-decoration: none;
  transition: transform 320ms var(--ease), box-shadow 320ms ease;
}

.content-card:hover {
  transform: translateY(-7px);
  box-shadow: var(--shadow);
}

.content-card__media {
  display: block;
  overflow: hidden;
  aspect-ratio: 4 / 3;
  background: var(--paper);
}

.content-card__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 650ms var(--ease);
}

.content-card:hover .content-card__media img {
  transform: scale(1.05);
}

.content-card__body {
  position: relative;
  display: block;
  min-height: 268px;
  padding: 26px 27px 32px;
}

.content-card__body small {
  display: block;
  margin-bottom: 18px;
  color: var(--gold-readable);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.14em;
}

.content-card__body strong {
  display: block;
  margin: 0 34px 14px 0;
  font-family: var(--serif);
  font-size: clamp(23px, 2.3vw, 31px);
  font-weight: 500;
  line-height: 1.25;
}

.content-card__body > span {
  display: -webkit-box;
  overflow: hidden;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.65;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 4;
}

.content-card__body i {
  position: absolute;
  top: 68px;
  right: 25px;
  font-size: 19px;
  font-style: normal;
}

.sibling-navigation {
  padding-block: 50px;
  border-top: 1px solid var(--line);
  background: var(--ivory);
}

.sibling-navigation__inner {
  display: grid;
  grid-template-columns: minmax(180px, 0.25fr) 1fr;
  gap: 38px;
  align-items: start;
}

.sibling-navigation__inner > p {
  margin-bottom: 0;
  color: var(--muted);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.sibling-navigation__inner > div {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.sibling-navigation a {
  display: inline-flex;
  min-height: 42px;
  align-items: center;
  padding: 8px 15px;
  border: 1px solid var(--line);
  border-radius: 999px;
  font-size: 12px;
  font-weight: 500;
  text-decoration: none;
  transition: background 180ms ease, border-color 180ms ease;
}

.sibling-navigation a:hover,
.sibling-navigation a[aria-current="page"] {
  border-color: var(--ink);
  background: var(--ink);
  color: var(--white);
}

/* Contribution content */
.contribution-purpose,
.banking-section,
.other-contributions,
.gratitude-note {
  margin-top: clamp(70px, 9vw, 112px);
}

.contribution-purpose {
  padding-top: 4px;
  border-top: 1px solid var(--line);
}

.purpose-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
  margin-top: 34px;
}

.purpose-grid article {
  padding: 26px;
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  background: rgba(255, 255, 255, 0.35);
}

.purpose-grid article:last-child {
  grid-column: 1 / -1;
}

.purpose-grid article > span {
  display: block;
  margin-bottom: 28px;
  color: var(--gold-readable);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.14em;
}

.purpose-grid h3 {
  margin: 0 0 12px;
  font-size: clamp(21px, 2vw, 27px);
}

.purpose-grid p {
  margin-bottom: 0;
  color: var(--muted);
  font-size: 14px;
}

.banking-section {
  padding: clamp(30px, 5vw, 56px);
  border-radius: var(--radius-lg);
  background: var(--paper);
}

.banking-section > h2 {
  margin-bottom: 20px;
  font-size: clamp(36px, 4.2vw, 56px);
}

.suggested-amounts {
  display: flex;
  flex-wrap: wrap;
  gap: 9px;
  margin: 28px 0 38px;
}

.suggested-amounts span {
  display: inline-flex;
  min-height: 42px;
  align-items: center;
  padding: 8px 14px;
  border: 1px solid rgba(23, 23, 19, 0.19);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.43);
  color: var(--ink);
  font-size: 12px;
  font-weight: 600;
}

.bank-card-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

.bank-card {
  overflow: hidden;
  padding: 27px;
  border-radius: var(--radius-md);
  background: var(--ivory);
  color: var(--ink);
}

.bank-card--dark {
  background: var(--ink-deep);
  color: var(--white);
}

.bank-card__label {
  margin-bottom: 12px !important;
  color: var(--gold-readable);
  font-size: 10px !important;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.bank-card--dark .bank-card__label {
  color: #f4d772;
}

.bank-card > p:not(.bank-card__label) {
  color: rgba(255, 255, 255, 0.7);
  font-size: 12px;
}

.bank-card h3 {
  margin: 0 0 24px;
  color: inherit;
  font-size: clamp(22px, 2.2vw, 29px);
}

.bank-card--dark h3 {
  color: var(--white);
}

.bank-card dl {
  margin: 0;
}

.bank-card dl > div {
  padding-block: 14px;
  border-top: 1px solid var(--line);
}

.bank-card--dark dl > div {
  border-color: var(--line-light);
}

.bank-card dt {
  margin-bottom: 5px;
  color: var(--muted);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.07em;
  text-transform: uppercase;
}

.bank-card--dark dt {
  color: rgba(255, 255, 255, 0.58);
}

.bank-card dd {
  margin: 0;
  overflow-wrap: anywhere;
  font-size: 13px;
  line-height: 1.6;
}

.bank-card dd strong {
  display: inline-block;
  margin-right: 8px;
  color: inherit;
}

.bank-card button {
  min-height: 34px;
  padding: 5px 10px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: transparent;
  color: var(--gold-readable);
  font-size: 10px;
  font-weight: 600;
  cursor: pointer;
}

.bank-card--dark button {
  border-color: var(--line-light);
  color: #f4d772;
}

.other-contributions {
  padding: clamp(28px, 5vw, 54px);
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
}

.other-contributions h2,
.gratitude-note h2 {
  font-size: clamp(35px, 4.2vw, 56px);
}

.gratitude-note {
  position: relative;
  padding: clamp(38px, 7vw, 74px);
  overflow: hidden;
  border-radius: var(--radius-lg);
  background: var(--ink-deep);
  color: var(--white);
}

.gratitude-note::after {
  position: absolute;
  top: -100px;
  right: -80px;
  width: 260px;
  aspect-ratio: 1;
  border: 1px solid rgba(215, 167, 21, 0.25);
  border-radius: 50%;
  content: "";
}

.gratitude-note .lead-paragraph,
.gratitude-note h2 {
  color: var(--white);
}

.gratitude-note p:not(.lead-paragraph) {
  color: rgba(255, 255, 255, 0.76);
}

/* Closing and footer */
.closing-invitation {
  padding-block: clamp(66px, 9vw, 118px);
  background: var(--sage);
  color: var(--white);
}

.closing-invitation__inner {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 52px;
  align-items: end;
}

.closing-invitation h2 {
  margin-bottom: 18px;
  font-size: clamp(46px, 6.5vw, 88px);
}

.closing-invitation__inner > div > p:last-child {
  max-width: 690px;
  margin-bottom: 0;
  color: rgba(255, 255, 255, 0.79);
}

.closing-invitation .button {
  display: grid;
  min-width: 230px;
  justify-items: start;
  padding: 18px 25px;
  border-radius: var(--radius-sm);
}

.closing-invitation .button span {
  font-size: 10px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.closing-invitation .button strong {
  font-family: var(--serif);
  font-size: 22px;
  font-weight: 500;
}

.site-footer {
  padding: clamp(66px, 8vw, 105px) 0 30px;
  background: var(--ink-deep);
  color: var(--white);
}

.site-footer__grid {
  display: grid;
  grid-template-columns: minmax(280px, 1.2fr) minmax(170px, 0.55fr) minmax(220px, 0.7fr);
  gap: clamp(50px, 8vw, 118px);
}

.footer-logo {
  display: block;
  width: 116px;
  overflow: hidden;
  border-radius: 22px;
  background: var(--white);
}

.footer-logo img {
  width: 100%;
  height: auto;
}

.site-footer__brand p,
.site-footer__grid > div:last-child p {
  max-width: 450px;
  margin: 25px 0 0;
  color: rgba(255, 255, 255, 0.64);
  font-size: 13px;
}

.site-footer h2 {
  margin-bottom: 24px;
  font-family: var(--sans);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.11em;
  text-transform: uppercase;
}

.footer-links {
  display: grid;
  gap: 11px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.footer-links a {
  color: rgba(255, 255, 255, 0.72);
  font-size: 13px;
  text-decoration: none;
}

.footer-links a:hover {
  color: #f4d772;
}

.footer-phone {
  display: inline-block;
  margin-top: 24px;
  color: #f4d772;
  font-family: var(--serif);
  font-size: clamp(22px, 2.6vw, 32px);
  text-decoration: none;
}

.site-footer__bottom {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  margin-top: 78px;
  padding-top: 25px;
  border-top: 1px solid rgba(255, 255, 255, 0.13);
  color: rgba(255, 255, 255, 0.45);
  font-size: 10px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

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

.floating-booking {
  position: fixed;
  z-index: 900;
  right: 20px;
  bottom: 20px;
  display: grid;
  width: 74px;
  aspect-ratio: 1;
  place-items: center;
  align-content: center;
  border: 1px solid rgba(23, 23, 19, 0.12);
  border-radius: 50%;
  background: var(--gold);
  box-shadow: 0 14px 38px rgba(23, 23, 19, 0.2);
  color: var(--ink-deep);
  text-align: center;
  text-decoration: none;
  transition: transform 260ms var(--ease);
}

.floating-booking:hover {
  transform: translateY(-5px) rotate(3deg);
}

.floating-booking span {
  font-size: 10px;
}

.floating-booking strong {
  font-size: 9px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.page-shell,
.error-page {
  padding: clamp(150px, 18vw, 230px) 0 100px;
}

.error-page h1 {
  margin-bottom: 22px;
  font-size: clamp(52px, 8vw, 94px);
}

.error-page p:not(.eyebrow) {
  margin-inline: auto;
  max-width: 620px;
}

.error-page .button {
  margin-top: 18px;
}

/* Reveal and ambient motion */
.reveal-pending {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 720ms var(--ease), transform 720ms var(--ease);
  transition-delay: var(--reveal-delay, 0ms);
}

.reveal-pending.is-revealed {
  opacity: 1;
  transform: translateY(0);
}

@keyframes hero-breathe {
  from { transform: scale(1.025); }
  to { transform: scale(1.075); }
}

@keyframes ribbon-move {
  to { transform: translateX(-50%); }
}

@keyframes scroll-line {
  0% { transform: translateY(-100%); }
  50%, 100% { transform: translateY(100%); }
}

@media (max-width: 1099px) {
  .site-header__inner {
    min-height: 78px;
  }

  .menu-toggle {
    display: inline-flex;
  }

  .site-navigation {
    position: fixed;
    z-index: 2;
    inset: 0;
    display: grid;
    grid-template-rows: 1fr auto;
    align-content: center;
    padding: 118px var(--gutter) 42px;
    transform: translateY(-102%);
    background: var(--ivory);
    color: var(--ink);
    opacity: 0;
    visibility: hidden;
    transition: transform 480ms var(--ease), opacity 260ms ease, visibility 0s linear 480ms;
  }

  .menu-open .site-navigation {
    transform: translateY(0);
    opacity: 1;
    visibility: visible;
    transition: transform 480ms var(--ease), opacity 260ms ease, visibility 0s;
  }

  .menu-open .site-header {
    -webkit-backdrop-filter: none;
    backdrop-filter: none;
    color: var(--ink) !important;
  }

  .menu-open .site-navigation {
    min-height: 100dvh;
    overflow-y: auto;
    overscroll-behavior: contain;
  }

  .site-navigation ul {
    display: grid;
    align-content: center;
    gap: 2px;
  }

  .site-navigation ul a {
    min-height: 58px;
    font-family: var(--serif);
    font-size: clamp(25px, 5vw, 42px);
    font-weight: 500;
    letter-spacing: -0.025em;
  }

  .site-navigation ul a::after {
    bottom: 4px;
  }

  .nav-booking {
    justify-self: start;
    margin-top: 28px;
  }

  .home-intro__grid,
  .build-together__grid {
    gap: 64px;
  }

  .program-row {
    grid-template-columns: 44px 132px minmax(230px, 1fr) 25px;
  }

  .program-row__description {
    display: none;
  }

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

@media (max-width: 820px) {
  :root {
    --radius-lg: 32px;
    --radius-md: 23px;
  }

  html {
    scroll-padding-top: 78px;
  }

  .brand__mark {
    width: 42px;
    height: 42px;
  }

  .brand__wordmark strong {
    font-size: 16px;
  }

  .brand__wordmark small {
    font-size: 7px;
  }

  .home-hero {
    min-height: max(680px, 100svh);
  }

  .home-hero__media img {
    object-position: 58% 52%;
  }

  .home-hero__veil {
    background: linear-gradient(0deg, rgba(5, 6, 3, 0.84) 0%, rgba(5, 6, 3, 0.27) 75%, rgba(5, 6, 3, 0.18));
  }

  .home-hero__halo {
    top: 18%;
    right: 10%;
  }

  .home-hero__content {
    padding-bottom: 96px;
  }

  .home-hero h1 {
    margin-bottom: 22px;
    font-size: clamp(64px, 23vw, 104px);
  }

  .home-hero h1 small {
    margin-top: 22px;
    font-size: 12px;
    letter-spacing: 0.2em;
  }

  .home-hero__lead {
    font-size: 16px;
  }

  .home-hero__actions {
    flex-wrap: wrap;
    gap: 14px 22px;
  }

  .home-hero__scroll,
  .page-hero__scroll {
    display: none;
  }

  .value-ribbon__track {
    min-height: 56px;
    gap: 25px;
  }

  .home-intro__grid,
  .build-together__grid,
  .closing-invitation__inner,
  .page-article__grid,
  .sibling-navigation__inner {
    grid-template-columns: 1fr;
  }

  .home-intro__copy {
    padding-top: 0;
  }

  .living-landmark {
    min-height: 720px;
  }

  .living-landmark__media img {
    object-position: 58% center;
  }

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

  .number-card {
    min-height: 180px;
    padding: 35px 24px;
    border-bottom: 1px solid var(--line);
  }

  .number-card:nth-child(odd) {
    border-left: 1px solid var(--line);
  }

  .number-card:nth-child(even) {
    border-right: 1px solid var(--line);
  }

  .section-heading {
    display: grid;
    align-items: start;
    gap: 22px;
  }

  .section-heading .text-link {
    justify-self: start;
  }

  .space-card,
  .space-card:nth-child(1),
  .space-card:nth-child(2),
  .space-card:nth-child(5),
  .space-card:nth-child(6) {
    grid-column: span 6;
    min-height: 440px;
  }

  .space-card:nth-child(n + 3):nth-child(-n + 4) {
    min-height: 440px;
  }

  .philosophy-quote__inner {
    grid-template-columns: 1fr;
  }

  .infinity-mark {
    width: 90px;
    font-size: 48px;
  }

  .program-row {
    grid-template-columns: 34px 104px minmax(0, 1fr) 20px;
    min-height: 126px;
    gap: 13px;
  }

  .program-row__media {
    height: 86px;
  }

  .program-row > strong {
    font-size: 20px;
  }

  .community-grid {
    grid-template-columns: 1fr;
  }

  .community-card {
    min-height: 620px;
  }

  .build-together__image {
    aspect-ratio: 4 / 4.6;
  }

  .blessing-orb {
    right: -12px;
  }

  .page-hero {
    min-height: max(590px, 76svh);
  }

  .page-hero__content {
    padding-bottom: 70px;
  }

  .page-hero h1 {
    font-size: clamp(48px, 13vw, 76px);
  }

  .page-article__aside {
    position: static;
    display: grid;
    grid-template-columns: auto 1fr auto;
    gap: 18px;
    align-items: center;
    padding-bottom: 28px;
    border-bottom: 1px solid var(--line);
  }

  .page-article__aside .sun-mark,
  .page-article__aside > p,
  .page-article__aside a {
    margin: 0;
  }

  .page-article__aside > p {
    padding: 0;
    border: 0;
  }

  .page-article__aside a {
    text-align: right;
  }

  .content-card-grid {
    grid-template-columns: 1fr;
  }

  .content-card__body {
    min-height: 230px;
  }

  .purpose-grid,
  .bank-card-grid {
    grid-template-columns: 1fr;
  }

  .purpose-grid article:last-child {
    grid-column: auto;
  }

  .banking-section {
    padding: 25px;
  }

  .site-footer__grid {
    grid-template-columns: 1fr 1fr;
  }

  .site-footer__brand {
    grid-column: 1 / -1;
  }
}

@media (max-width: 560px) {
  .menu-toggle__label {
    display: none;
  }

  .menu-toggle {
    min-width: 48px;
  }

  .calligraphy-accent {
    font-size: 32px;
  }

  .space-card,
  .space-card:nth-child(1),
  .space-card:nth-child(2),
  .space-card:nth-child(5),
  .space-card:nth-child(6) {
    grid-column: 1 / -1;
    min-height: 480px;
  }

  .program-row {
    grid-template-columns: 26px 82px minmax(0, 1fr) 16px;
    gap: 10px;
  }

  .program-row__media {
    height: 74px;
    border-radius: 12px;
  }

  .program-row > strong {
    font-size: 17px;
  }

  .program-row > i {
    font-size: 16px;
  }

  .community-card {
    min-height: 520px;
  }

  .community-card__body {
    right: 24px;
    bottom: 25px;
    left: 24px;
  }

  .page-article__aside {
    grid-template-columns: auto 1fr;
  }

  .page-article__aside a {
    grid-column: 1 / -1;
    text-align: left;
  }

  .site-footer__grid {
    grid-template-columns: 1fr;
  }

  .site-footer__brand {
    grid-column: auto;
  }

  .site-footer__bottom {
    display: grid;
  }

  .floating-booking {
    right: 14px;
    bottom: 14px;
    width: 64px;
  }
}

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

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

  .reveal-pending {
    opacity: 1;
    transform: none;
  }
}

@media print {
  .site-header,
  .scroll-progress,
  .floating-booking,
  .home-hero__scroll,
  .page-hero__scroll,
  .closing-invitation {
    display: none !important;
  }

  body {
    background: #fff;
    color: #000;
    font-size: 12pt;
  }

  .page-hero {
    min-height: 0;
    padding: 40px 0;
    background: #fff;
    color: #000;
  }

  .page-hero__media,
  .page-hero__veil {
    display: none;
  }

  .page-hero__content {
    padding: 0;
  }

  .page-article__grid {
    display: block;
  }

  .page-article__aside {
    display: none;
  }
}
