@font-face {
  font-family: "Graphik";
  src: url("assets/fonts/graphik/Graphik-Light-Web.woff2") format("woff2");
  font-display: swap;
  font-style: normal;
  font-weight: 300;
}

@font-face {
  font-family: "Graphik";
  src: url("assets/fonts/graphik/Graphik-Regular-Web.woff2") format("woff2");
  font-display: swap;
  font-style: normal;
  font-weight: 400;
}

@font-face {
  font-family: "Graphik";
  src: url("assets/fonts/graphik/Graphik-RegularItalic-Web.woff2") format("woff2");
  font-display: swap;
  font-style: italic;
  font-weight: 400;
}

@font-face {
  font-family: "Graphik";
  src: url("assets/fonts/graphik/Graphik-Medium-Web.woff2") format("woff2");
  font-display: swap;
  font-style: normal;
  font-weight: 500;
}

@font-face {
  font-family: "Graphik";
  src: url("assets/fonts/graphik/Graphik-Semibold-Web.woff2") format("woff2");
  font-display: swap;
  font-style: normal;
  font-weight: 600;
}

@font-face {
  font-family: "Graphik";
  src: url("assets/fonts/graphik/Graphik-Bold-Web.woff2") format("woff2");
  font-display: swap;
  font-style: normal;
  font-weight: 700;
}

@font-face {
  font-family: "Graphik";
  src: url("assets/fonts/graphik/Graphik-Black-Web.woff2") format("woff2");
  font-display: swap;
  font-style: normal;
  font-weight: 800 900;
}

:root {
  --about-bg: #fbfaf7;
  --about-ink: #253449;
  --brand-blue: #5e82ab;
  --brand-light-blue: #ced8e7;
  --brand-ink: #395878;
  --lr-ink: #18222d;
  --lr-muted: #5f6f70;
  --cream: #f8f5ef;
  --muted: #cfe0f2;
  --muted-hover: #b9d0ea;
  --dark-hover: #152334;
  --white: #ffffff;
  --ease: cubic-bezier(0.77, 0, 0.175, 1);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  overflow-x: clip;
  background: #10100e;
  color: var(--white);
  font-family: "Graphik", Arial, sans-serif;
  font-weight: 300;
  line-height: 1.5;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

button,
a {
  font: inherit;
}

a {
  color: inherit;
  text-decoration: none;
}

button {
  border: 0;
  cursor: pointer;
}

svg {
  display: block;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: "Graphik", Arial, sans-serif;
  font-weight: 400;
}

.floating-nav {
  position: fixed;
  z-index: 50;
  top: 24px;
  left: 50%;
  width: max-content;
  transform: translateX(-50%);
  transition:
    top 320ms var(--ease),
    left 320ms var(--ease),
    right 320ms var(--ease),
    transform 320ms var(--ease),
    opacity 220ms ease-out;
}

.nav-pill {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  min-width: 122px;
  padding: 8px 10px 8px 14px;
  border-radius: 999px;
  background: var(--white);
  color: #000000;
  box-shadow: 0 18px 45px rgba(0, 0, 0, 0.18);
  border: 1px solid rgba(255, 255, 255, 0.78);
  backdrop-filter: blur(14px);
  transition:
    gap 320ms var(--ease),
    min-width 320ms var(--ease),
    padding 320ms var(--ease),
    background 320ms ease,
    box-shadow 320ms ease;
}

.brand {
  display: grid;
  width: 38px;
  height: 38px;
  place-items: center;
  transition:
    width 320ms var(--ease),
    height 320ms var(--ease);
}

.brand img {
  display: block;
  width: 30px;
  height: 30px;
  object-fit: contain;
  transition:
    width 320ms var(--ease),
    height 320ms var(--ease);
}

.menu-toggle {
  position: relative;
  width: 36px;
  height: 36px;
  border-radius: 999px;
  background: transparent;
}

.menu-toggle span {
  position: absolute;
  left: 10px;
  width: 16px;
  height: 2px;
  border-radius: 999px;
  background: #000000;
  transition:
    top 300ms var(--ease),
    transform 300ms var(--ease);
}

.menu-toggle span:first-child {
  top: 14px;
}

.menu-toggle span:last-child {
  top: 21px;
}

.floating-nav.is-open .menu-toggle span:first-child {
  top: 18px;
  transform: rotate(45deg);
}

.floating-nav.is-open .menu-toggle span:last-child {
  top: 18px;
  transform: rotate(-45deg);
}

.menu-panel {
  position: absolute;
  top: calc(100% + 12px);
  left: 50%;
  display: grid;
  min-width: 190px;
  gap: 4px;
  padding: 10px;
  border-radius: 22px;
  background: var(--white);
  color: #000000;
  box-shadow: 0 18px 45px rgba(0, 0, 0, 0.18);
  opacity: 0;
  pointer-events: none;
  transform: translate(-50%, -6px) scale(0.96);
  transform-origin: top center;
  transition:
    opacity 200ms ease-out,
    transform 200ms ease-out;
}

.floating-nav.is-open .menu-panel {
  opacity: 1;
  pointer-events: auto;
  transform: translate(-50%, 0) scale(1);
}

.menu-panel a {
  border-radius: 14px;
  padding: 11px 14px;
  color: rgba(0, 0, 0, 0.72);
  font-size: 14px;
  font-weight: 500;
}

.menu-panel a:hover,
.menu-panel a:focus-visible {
  background: rgba(0, 0, 0, 0.06);
  color: #000000;
  outline: none;
}

.floating-nav.is-docked {
  top: 18px;
  right: 22px;
  left: auto;
  transform: none;
}

.floating-nav.is-docked .nav-pill {
  min-width: 0;
  gap: 8px;
  padding: 6px 8px 6px 10px;
  background: rgba(255, 255, 255, 0.76);
  box-shadow: 0 14px 34px rgba(23, 31, 42, 0.14);
}

.floating-nav.is-docked .brand {
  width: 30px;
  height: 30px;
}

.floating-nav.is-docked .brand img {
  width: 24px;
  height: 24px;
}

.floating-nav.is-docked .menu-panel {
  right: 0;
  left: auto;
  transform: translateY(-6px) scale(0.96);
  transform-origin: top right;
}

.floating-nav.is-docked.is-open .menu-panel {
  transform: translateY(0) scale(1);
}

.floating-nav.is-hidden {
  opacity: 0;
  pointer-events: none;
}

.hero-section {
  position: relative;
  min-height: 100vh;
  min-height: 100svh;
  margin-bottom: -25px;
  overflow: hidden;
  background: #161615 url("assets/images/hero-mobile-poster.png") center / cover no-repeat;
  isolation: isolate;
}

.hero-video {
  position: absolute;
  inset: 0;
  z-index: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  background: rgba(0, 0, 0, 0.2);
}

.hero-content {
  position: relative;
  z-index: 2;
  display: flex;
  min-height: 100vh;
  min-height: 100svh;
  align-items: flex-end;
  justify-content: center;
  padding: 120px 24px 48px;
}

.hero-copy {
  display: grid;
  justify-items: center;
  gap: 22px;
  width: min(1080px, 100%);
  text-align: center;
}

.hero-copy h1 {
  display: grid;
  gap: 0;
  margin: 0;
  color: var(--white);
  font-size: clamp(48px, 9.2vw, 86px);
  font-weight: 400;
  letter-spacing: -0.03em;
  line-height: 1.1;
  text-wrap: balance;
}

.hero-copy em {
  font-family: "Graphik", Arial, sans-serif;
  font-style: italic;
}

.hero-copy p {
  max-width: 360px;
  margin: -8px 0 4px;
  color: rgba(255, 255, 255, 0.8);
  font-size: clamp(15px, 1.45vw, 18px);
  font-weight: 300;
  line-height: 1.55;
}

.hero-cta {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 18px;
  max-width: min(100%, 720px);
  padding: 4px 4px 4px 24px;
  border-radius: 14px;
  background: rgba(0, 0, 0, 0.25);
  backdrop-filter: blur(14px);
}

.hero-cta span {
  color: var(--white);
  font-size: 14px;
  font-weight: 500;
  line-height: 1.3;
}

.hero-cta a,
.feature-cta a {
  flex: 0 0 auto;
  border-radius: 12px;
  background: var(--white);
  color: #000000;
  padding: 10px 20px;
  font-size: 14px;
  font-weight: 500;
  transition: background 180ms ease-out, transform 180ms ease-out;
}

.hero-cta a:hover,
.feature-cta a:hover {
  background: rgba(255, 255, 255, 0.9);
  transform: translateY(-1px);
}

.features-section .feature-cta a {
  background: var(--brand-blue);
  color: var(--white);
}

.features-section .feature-cta a:hover {
  background: var(--brand-ink);
}

.feature-inline-link {
  width: fit-content;
  border-radius: 12px;
  background: var(--brand-blue);
  color: var(--white);
  padding: 11px 16px;
  font-size: 14px;
  font-weight: 600;
  transition: background 180ms ease-out, transform 180ms ease-out;
}

.feature-inline-link:hover {
  background: var(--brand-ink);
  transform: translateY(-1px);
}

.feature-link-group {
  display: grid;
  gap: 10px;
  margin-top: auto;
}

.feature-child-link {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  border-radius: 14px;
  border: 1px solid rgba(94, 130, 171, 0.18);
  background: rgba(255, 255, 255, 0.22);
  color: var(--brand-ink);
  padding: 13px 14px;
  transition:
    background 180ms ease-out,
    border-color 180ms ease-out,
    transform 180ms ease-out;
}

.feature-child-link:hover {
  border-color: rgba(94, 130, 171, 0.34);
  background: rgba(255, 255, 255, 0.42);
  transform: translateY(-1px);
}

.feature-child-link span {
  font-size: 14px;
  font-weight: 700;
  line-height: 1.25;
}

.feature-child-link small {
  max-width: 190px;
  color: rgba(57, 88, 120, 0.66);
  font-size: 12px;
  font-weight: 600;
  line-height: 1.35;
  text-align: right;
}

.mobile-copy {
  display: none;
}

.about-section {
  position: relative;
  z-index: 10;
  border-radius: 25px 25px 0 0;
  background: var(--about-bg);
  color: var(--about-ink);
  padding: clamp(80px, 11vw, 128px) 24px;
}

.about-section::before,
.features-section::after {
  content: "";
  position: absolute;
  top: clamp(42px, 5vw, 72px);
  right: clamp(18px, 4vw, 54px);
  left: clamp(18px, 4vw, 54px);
  height: 1px;
  background: currentColor;
  opacity: 0.16;
  pointer-events: none;
}

.about-inner {
  width: min(1120px, 100%);
  margin: 0 auto;
}

.about-inner::before,
.system-inner::before,
.features-grid::before {
  display: block;
  margin-bottom: clamp(32px, 5vw, 62px);
  color: rgba(57, 88, 120, 0.58);
  font-size: var(--type-eyebrow, 12px);
  font-weight: 400;
  letter-spacing: 0.18em;
  line-height: 1;
  text-transform: uppercase;
}

.about-inner::before {
  content: "01 / Living Notes";
}

.about-top {
  display: grid;
  justify-items: center;
  gap: 34px;
  max-width: 760px;
  margin: 0 auto;
}

.about-top p {
  max-width: 540px;
  margin: 0;
  color: var(--about-ink);
  font-size: clamp(16px, 2vw, 18px);
  line-height: 1.7;
  text-align: center;
}

.about-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 16px;
}

.pill-button {
  display: inline-flex;
  min-height: 52px;
  align-items: center;
  gap: 12px;
  border-radius: 999px;
  padding: 6px 22px 6px 7px;
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  transition:
    background 180ms ease-out,
    color 180ms ease-out,
    transform 180ms ease-out;
}

.pill-button span {
  display: grid;
  width: 40px;
  height: 40px;
  place-items: center;
  border-radius: 999px;
  background: var(--white);
  color: var(--about-ink);
}

.pill-button svg {
  width: 16px;
  height: 16px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

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

.dark-button {
  background: var(--about-ink);
  color: var(--cream);
}

.dark-button:hover {
  background: var(--dark-hover);
}

.muted-button {
  background: var(--muted);
  color: var(--about-ink);
}

.muted-button:hover {
  background: var(--muted-hover);
}

.decorative-divider {
  display: flex;
  align-items: center;
  gap: 2px;
  margin: clamp(72px, 9vw, 108px) 0;
}

.decorative-divider span {
  width: 8px;
  height: 8px;
  flex: 0 0 auto;
  border-radius: 999px;
  background: var(--muted);
}

.decorative-divider i {
  height: 2px;
  flex: 1;
  background: var(--muted);
}

.about-bottom {
  display: flex;
  align-items: flex-start;
  justify-content: center;
}

.about-statement {
  max-width: 780px;
  margin: 0;
  color: var(--about-ink);
  font-size: clamp(26px, 4.2vw, 42px);
  font-weight: 400;
  line-height: 1.3;
  letter-spacing: 0;
}

.system-section {
  position: relative;
  overflow: hidden;
  padding: clamp(92px, 11vw, 168px) clamp(20px, 5vw, 64px);
  background: #f4f7f7;
  color: var(--about-ink);
  isolation: isolate;
}

.system-inner::before {
  content: "02 / Framework";
}

.system-section::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    linear-gradient(90deg, rgba(249, 251, 250, 0.96), rgba(249, 251, 250, 0.82) 44%, rgba(249, 251, 250, 0.96)),
    linear-gradient(180deg, rgba(255, 255, 255, 0.86), rgba(235, 243, 244, 0.94)),
    url("assets/images/samples/sangha-retreat-interior.jpg") center / cover;
  transform: scale(1.02);
  filter: saturate(0.86) brightness(1.08);
  animation: systemAtmosphere 22s ease-in-out infinite alternate;
}

.system-section::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    radial-gradient(circle at 18% 16%, rgba(255, 255, 255, 0.9), transparent 30%),
    radial-gradient(circle at 82% 56%, rgba(94, 130, 171, 0.1), transparent 34%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.34), rgba(255, 255, 255, 0));
  pointer-events: none;
  animation: systemLightDrift 16s ease-in-out infinite alternate;
}

.system-inner {
  display: grid;
  position: relative;
  z-index: 1;
  gap: clamp(48px, 6vw, 86px);
  width: min(1220px, 100%);
  margin: 0 auto;
}

.system-lead {
  display: grid;
  grid-template-columns: minmax(0, 760px) minmax(280px, 420px);
  gap: clamp(28px, 5vw, 92px);
  align-items: end;
}

.system-lead span {
  grid-column: 1 / -1;
}

.system-lead h2 {
  grid-column: 1;
}

.system-lead p {
  grid-column: 2;
}

.system-lead span,
.system-node span,
.system-pathways span {
  color: rgba(57, 88, 120, 0.58);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.14em;
  line-height: 1;
  text-transform: uppercase;
}

.system-lead h2 {
  max-width: 800px;
  margin: 0;
  color: var(--about-ink);
  font-size: clamp(44px, 6vw, 76px);
  font-weight: 400;
  letter-spacing: 0;
  line-height: 0.98;
  text-wrap: balance;
}

.system-lead p {
  margin: 0 0 4px;
  color: rgba(37, 52, 73, 0.72);
  font-size: clamp(15px, 1.6vw, 18px);
  font-weight: 300;
  line-height: 1.75;
}

.system-map {
  --system-x: 0px;
  --system-y: 0px;
  position: relative;
  display: grid;
  min-height: 560px;
  place-items: center;
  overflow: visible;
  border-radius: 0;
  border: 0;
  background:
    radial-gradient(circle at calc(50% + var(--system-x)) calc(50% + var(--system-y)), rgba(255, 255, 255, 0.78) 0 19%, rgba(255, 255, 255, 0) 42%),
    radial-gradient(ellipse at center, rgba(206, 216, 231, 0.1), rgba(206, 216, 231, 0) 66%);
  box-shadow: none;
  backdrop-filter: none;
  transition: filter 220ms ease-out;
}

.system-map > * {
  position: relative;
  z-index: 1;
}

.system-line-canvas {
  position: absolute;
  inset: -4% 2%;
  z-index: 0;
  width: 96%;
  height: 108%;
  pointer-events: none;
  opacity: 0.32;
  mix-blend-mode: multiply;
}

.system-map:hover,
.system-map:focus-within {
  filter: saturate(1.04);
}

.system-map::before,
.system-map::after {
  content: "";
  position: absolute;
  border-radius: 999px;
  pointer-events: none;
}

.system-map::before {
  width: min(62%, 580px);
  aspect-ratio: 1;
  border: 1px solid rgba(57, 88, 120, 0.1);
  box-shadow:
    0 0 0 76px rgba(255, 255, 255, 0.16),
    inset 0 0 54px rgba(255, 255, 255, 0.36);
  animation: systemOrbit 18s linear infinite;
}

.system-map::after {
  width: min(39%, 360px);
  aspect-ratio: 1;
  border: 1px solid rgba(57, 88, 120, 0.08);
  border-style: dashed;
  opacity: 0.6;
  animation: none;
}

.system-core,
.system-node {
  display: grid;
  position: absolute;
  place-items: center;
  text-align: center;
}

.system-core {
  z-index: 2;
  width: clamp(148px, 18vw, 220px);
  aspect-ratio: 1;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.92);
  background:
    radial-gradient(circle at 34% 24%, rgba(255, 255, 255, 0.98), transparent 32%),
    radial-gradient(circle at 70% 78%, rgba(94, 130, 171, 0.22), transparent 40%),
    linear-gradient(145deg, rgba(238, 247, 245, 0.96), rgba(202, 221, 224, 0.9));
  color: var(--brand-ink);
  padding: 24px;
  box-shadow:
    0 28px 72px rgba(57, 88, 120, 0.18),
    0 0 0 16px rgba(255, 255, 255, 0.18),
    inset 0 1px 0 rgba(255, 255, 255, 0.86),
    inset 0 -22px 44px rgba(57, 88, 120, 0.08);
  animation: systemPulse 5.6s var(--ease) infinite;
}

.system-core::before,
.system-core::after {
  content: "";
  position: absolute;
  inset: -18px;
  z-index: -1;
  border-radius: inherit;
  pointer-events: none;
}

.system-core::before {
  border: 1px solid rgba(94, 130, 171, 0.22);
  background: radial-gradient(circle, rgba(255, 255, 255, 0.28), transparent 64%);
  animation: systemBreathRing 5.6s var(--ease) infinite;
}

.system-core::after {
  inset: -34px;
  background: radial-gradient(circle, rgba(145, 178, 181, 0.18), transparent 68%);
  filter: blur(2px);
  animation: systemBreathGlow 5.6s var(--ease) infinite;
}

.system-core span {
  color: rgba(57, 88, 120, 0.56);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.system-core strong {
  max-width: 120px;
  color: var(--about-ink);
  font-size: clamp(18px, 2vw, 24px);
  font-weight: 400;
  line-height: 1.12;
}

.system-node {
  width: clamp(120px, 12vw, 148px);
  min-height: 92px;
  align-content: center;
  gap: 3px;
  border-radius: 0;
  border: 0;
  background: transparent;
  color: var(--about-ink);
  padding: 10px 8px;
  box-shadow: none;
  backdrop-filter: none;
  cursor: pointer;
  transition:
    background 220ms ease-out,
    border-color 220ms ease-out,
    box-shadow 220ms ease-out,
    color 220ms ease-out,
    transform 220ms ease-out;
  animation: systemFloat 7s ease-in-out infinite;
}

.system-node strong {
  color: var(--about-ink);
  font-size: clamp(18px, 2vw, 23px);
  font-weight: 400;
  line-height: 1.1;
}

.system-node small {
  max-width: 120px;
  color: rgba(37, 52, 73, 0.62);
  font-size: 12px;
  font-weight: 300;
  line-height: 1.35;
}

.system-node:hover,
.system-node:focus-visible,
.system-node.is-active {
  border-color: transparent;
  background: rgba(255, 255, 255, 0.26);
  box-shadow: none;
  outline: none;
}

.system-node:hover,
.system-node:focus-visible,
.system-node.is-active {
  color: var(--brand-ink);
}

.system-node:hover strong,
.system-node:focus-visible strong,
.system-node.is-active strong {
  color: var(--brand-ink);
}

.system-node-one {
  top: 10%;
  left: 50%;
  transform: translateX(-50%);
}

.system-node-one:hover,
.system-node-one:focus-visible,
.system-node-one.is-active {
  transform: translateX(-50%) translateY(-6px);
}

.system-node-two {
  top: 27%;
  right: 17%;
  animation-delay: -1.1s;
}

.system-node-two:hover,
.system-node-two:focus-visible,
.system-node-two.is-active,
.system-node-three:hover,
.system-node-three:focus-visible,
.system-node-three.is-active,
.system-node-five:hover,
.system-node-five:focus-visible,
.system-node-five.is-active,
.system-node-six:hover,
.system-node-six:focus-visible,
.system-node-six.is-active {
  transform: translateY(-6px);
}

.system-node-three {
  right: 19%;
  bottom: 22%;
  animation-delay: -2.2s;
}

.system-node-four {
  left: 50%;
  bottom: 8%;
  transform: translateX(-50%);
  animation-delay: -3.3s;
}

.system-node-four:hover,
.system-node-four:focus-visible,
.system-node-four.is-active {
  transform: translateX(-50%) translateY(-6px);
}

.system-node-five {
  bottom: 22%;
  left: 19%;
  animation-delay: -4.4s;
}

.system-node-six {
  top: 27%;
  left: 17%;
  animation-delay: -5.5s;
}

.system-pathways {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 12px;
}

.system-pathways a {
  display: grid;
  position: relative;
  min-height: 126px;
  align-content: space-between;
  border-radius: 8px;
  border: 1px solid rgba(255, 255, 255, 0.86);
  background: rgba(255, 255, 255, 0.48);
  color: var(--about-ink);
  padding: 18px;
  box-shadow:
    inset 0 1px 1px rgba(255, 255, 255, 0.72),
    0 14px 38px rgba(57, 88, 120, 0.09);
  backdrop-filter: blur(7px) saturate(1.08);
  transition:
    background 180ms ease-out,
    transform 180ms ease-out,
    border-color 180ms ease-out,
    box-shadow 180ms ease-out,
    color 180ms ease-out;
}

.system-pathways a::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  padding: 1px;
  background: linear-gradient(
    180deg,
    rgba(255, 255, 255, 0.82),
    rgba(255, 255, 255, 0.16) 35%,
    rgba(255, 255, 255, 0.08) 65%,
    rgba(57, 88, 120, 0.16)
  );
  mask: linear-gradient(#ffffff 0 0) content-box, linear-gradient(#ffffff 0 0);
  mask-composite: exclude;
  -webkit-mask: linear-gradient(#ffffff 0 0) content-box, linear-gradient(#ffffff 0 0);
  -webkit-mask-composite: xor;
  pointer-events: none;
  opacity: 0.8;
  animation: systemGlassSweep 5.8s ease-in-out infinite;
}

.system-pathways a:hover,
.system-pathways a:focus-visible,
.system-pathways a.is-active {
  border-color: rgba(94, 130, 171, 0.42);
  background: rgba(255, 255, 255, 0.8);
  color: var(--brand-ink);
  box-shadow:
    inset 0 1px 1px rgba(255, 255, 255, 0.86),
    0 20px 50px rgba(57, 88, 120, 0.14);
  outline: none;
  transform: translateY(-2px);
}

.system-pathways strong {
  font-size: 15px;
  font-weight: 400;
  line-height: 1.25;
}

.features-section {
  position: relative;
  z-index: 1;
  overflow: hidden;
  padding: clamp(80px, 11vw, 192px) clamp(20px, 5vw, 64px);
  isolation: isolate;
  background: var(--brand-light-blue);
  color: var(--brand-ink);
}

.features-bg {
  display: none;
}

.features-section::before {
  content: none;
}

.features-grid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: minmax(340px, 460px) minmax(0, 1fr);
  gap: clamp(72px, 9vw, 144px);
  width: min(1240px, 100%);
  margin: 0 auto;
}

.features-grid::before {
  content: "03 / Field Guide";
  grid-column: 1 / -1;
}

.features-intro {
  position: sticky;
  top: 0;
  display: flex;
  height: 100vh;
  flex-direction: column;
  justify-content: space-between;
  padding: 128px 0;
}

.features-intro h2 {
  max-width: 520px;
  margin: 0;
  color: var(--brand-ink);
  text-shadow: 0 1px 0 rgba(255, 255, 255, 0.42);
  font-size: clamp(30px, 3.4vw, 42px);
  font-weight: 400;
  letter-spacing: 0;
  line-height: 1.16;
}

.feature-nav {
  display: grid;
  gap: 10px;
  margin-top: 40px;
  border-top: 0;
}

.feature-nav button {
  width: 100%;
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.32);
  background: rgba(255, 255, 255, 0.12);
  color: rgba(57, 88, 120, 0.7);
  padding: 14px 16px;
  text-align: left;
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0;
  text-transform: none;
  backdrop-filter: blur(10px);
  transition: color 180ms ease-out, background 180ms ease-out, border-color 180ms ease-out, transform 180ms ease-out;
}

.feature-nav button.is-active,
.feature-nav button:hover,
.feature-nav button:focus-visible {
  border-color: rgba(94, 130, 171, 0.28);
  background: rgba(206, 216, 231, 0.42);
  color: var(--brand-ink);
  outline: none;
  transform: translateX(3px);
}

.feature-cta {
  display: grid;
  justify-items: start;
  gap: 18px;
}

.feature-cta p {
  max-width: 360px;
  margin: 0;
  color: rgba(57, 88, 120, 0.74);
  font-size: 14px;
  font-weight: 500;
  line-height: 1.55;
}

.feature-cards {
  display: grid;
  gap: clamp(28px, 5vw, 56px);
}

.feature-card,
.faq-panel {
  border: 1px solid rgba(255, 255, 255, 0.42);
  border-radius: 28px;
  background: rgba(206, 216, 231, 0.24);
  color: var(--brand-ink);
  padding: clamp(24px, 4vw, 40px);
  box-shadow:
    0 30px 76px rgba(57, 88, 120, 0.18),
    inset 0 1px 0 rgba(255, 255, 255, 0.36);
  backdrop-filter: blur(8px) saturate(1.08);
}

.feature-card {
  display: grid;
  gap: 24px;
  min-height: 540px;
}

.feature-card h3,
.faq-panel h3 {
  margin: 0;
  color: var(--brand-ink);
  font-size: clamp(22px, 3vw, 28px);
  font-weight: 500;
  letter-spacing: 0;
  line-height: 1.22;
}

.feature-location {
  width: fit-content;
  margin-top: -12px;
  border-radius: 999px;
  border: 1px solid rgba(94, 130, 171, 0.22);
  background: rgba(206, 216, 231, 0.34);
  color: rgba(57, 88, 120, 0.78);
  padding: 7px 12px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.12em;
  line-height: 1;
  text-transform: uppercase;
}

.media-frame {
  aspect-ratio: 16 / 9;
  overflow: hidden;
  border-radius: 20px;
  border: 1px solid rgba(255, 255, 255, 0.3);
  background: rgba(94, 130, 171, 0.12);
  box-shadow: 0 16px 34px rgba(57, 88, 120, 0.1);
}

.media-frame img,
.media-frame video {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.feature-card p,
.faq-panel p {
  margin: 0;
  max-width: 680px;
  color: rgba(57, 88, 120, 0.72);
  font-size: clamp(14px, 1.6vw, 16px);
  font-weight: 500;
  line-height: 1.7;
}

.feature-card .feature-link-group {
  margin-top: auto;
}

.faq-panel {
  display: grid;
  gap: 16px;
  margin-bottom: 4px;
}

.faq-panel span {
  color: rgba(57, 88, 120, 0.62);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.closing-section {
  position: relative;
  min-height: 88vh;
  margin-bottom: -1px;
  overflow: hidden;
  isolation: isolate;
  background: #5e7488;
}

.closing-footer-scene {
  position: relative;
  overflow: hidden;
  background: #d9e3eb url("assets/images/footer-mobile-poster.png") center / cover no-repeat;
  isolation: isolate;
}

.closing-footer-video {
  position: absolute;
  inset: 0;
  z-index: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
  filter: saturate(0.88) brightness(1.04);
}

.closing-footer-overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(180deg, rgba(15, 31, 50, 0.46) 0%, rgba(15, 31, 50, 0.28) 46%, rgba(206, 216, 231, 0.34) 72%, rgba(244, 247, 249, 0.54) 100%),
    linear-gradient(90deg, rgba(15, 31, 50, 0.26), rgba(255, 255, 255, 0.02) 50%, rgba(15, 31, 50, 0.22));
  pointer-events: none;
}

.closing-footer-scene .closing-section {
  z-index: 2;
  background: transparent;
}

.closing-footer-scene .closing-video,
.closing-footer-scene .site-footer-video {
  display: none;
}

.closing-footer-scene .closing-overlay {
  background:
    radial-gradient(circle at 50% 18%, rgba(255, 255, 255, 0.06), transparent 28%),
    linear-gradient(180deg, rgba(15, 31, 50, 0.1), rgba(15, 31, 50, 0.04) 72%, rgba(15, 31, 50, 0));
}

.closing-video {
  position: absolute;
  inset: 0;
  z-index: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.closing-overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(90deg, rgba(15, 31, 50, 0.72), rgba(15, 31, 50, 0.24) 52%, rgba(15, 31, 50, 0.68)),
    linear-gradient(180deg, rgba(15, 31, 50, 0.08), rgba(15, 31, 50, 0.34) 68%, rgba(15, 31, 50, 0.18));
}

.closing-content {
  position: relative;
  z-index: 2;
  display: grid;
  min-height: 88vh;
  width: min(980px, calc(100% - 48px));
  margin: 0 auto;
  align-content: center;
  justify-items: center;
  gap: 22px;
  padding: 96px 0;
  color: var(--white);
  text-align: center;
}

.closing-content p {
  margin: 0;
  color: rgba(255, 255, 255, 0.74);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.closing-content h2 {
  max-width: 640px;
  margin: 0;
  font-size: clamp(34px, 4.4vw, 58px);
  font-weight: 400;
  letter-spacing: 0;
  line-height: 1.12;
  text-wrap: balance;
}

.closing-content a {
  margin-top: 10px;
  border-radius: 12px;
  background: var(--white);
  color: #000000;
  padding: 12px 20px;
  font-size: 14px;
  font-weight: 500;
  transition: background 180ms ease-out, transform 180ms ease-out;
}

.closing-content a:hover {
  background: rgba(255, 255, 255, 0.9);
  transform: translateY(-1px);
}

.reveal {
  opacity: 0;
  transform: translateX(64px);
  transition:
    opacity 700ms ease-out,
    transform 700ms ease-out;
}

.about-section .reveal {
  transform: translateY(18px);
}

.lr-detail-page .reveal {
  transform: translateY(22px);
}

.reveal.is-visible {
  opacity: 1;
  transform: translate(0, 0);
}

.hero-copy h1,
.about-statement,
.system-lead h2,
.features-intro h2,
.feature-card h3,
.faq-panel h3,
.closing-content h2,
.lr-hero h1,
.lr-intro-copy h2,
.lr-principle h3,
.lr-section-head h2,
.lr-panel-copy h3,
.lr-spaces-top h2,
.lr-space-card h3,
.lr-reserve-content h2,
.lr-detail-hero h1,
.lr-detail-statement h2,
.lr-feature-list-head h2,
.lr-editorial-copy h2,
.lr-next-content h2,
.lr-feature-list h3,
  .lr-venue-card h3,
  .sangha-hero h1,
  .sangha-subpage-card h3,
  .sangha-habit-grid h3 {
  font-family: "Graphik", Arial, sans-serif;
  font-weight: 400;
}

.hero-copy p,
.about-top p,
.system-lead p,
.system-node small,
.feature-cta p,
.feature-card p,
.faq-panel p,
.closing-content p,
.lr-principle p,
.lr-panel-copy p,
.lr-panel-copy dd,
.lr-space-card div,
.lr-detail-copy p,
.lr-editorial-copy p,
.lr-feature-list p,
.lr-venue-card p,
.sangha-subpage-card p,
.sangha-habit-grid p {
  font-family: "Graphik", Arial, sans-serif;
  font-weight: 300;
}

@keyframes fade-in-down {
  0% {
    opacity: 0;
    transform: translateY(-8px);
  }

  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes systemOrbit {
  to {
    transform: rotate(360deg);
  }
}

@keyframes systemAtmosphere {
  from {
    transform: scale(1.02) translate3d(-1.2%, -0.6%, 0);
  }

  to {
    transform: scale(1.055) translate3d(1.1%, 0.7%, 0);
  }
}

@keyframes systemLightDrift {
  from {
    opacity: 0.72;
    transform: translate3d(-1.5%, 0, 0);
  }

  to {
    opacity: 1;
    transform: translate3d(1.5%, -1%, 0);
  }
}

@keyframes systemPulse {
  0%,
  100% {
    transform: scale(1);
    box-shadow:
      0 28px 72px rgba(57, 88, 120, 0.18),
      0 0 0 16px rgba(255, 255, 255, 0.18),
      inset 0 1px 0 rgba(255, 255, 255, 0.86),
      inset 0 -22px 44px rgba(57, 88, 120, 0.08);
  }

  50% {
    transform: scale(1.055);
    box-shadow:
      0 34px 90px rgba(57, 88, 120, 0.22),
      0 0 0 28px rgba(255, 255, 255, 0.24),
      inset 0 1px 0 rgba(255, 255, 255, 0.94),
      inset 0 -28px 52px rgba(57, 88, 120, 0.1);
  }
}

@keyframes systemBreathRing {
  0%,
  100% {
    opacity: 0.38;
    transform: scale(0.94);
  }

  50% {
    opacity: 0.86;
    transform: scale(1.14);
  }
}

@keyframes systemBreathGlow {
  0%,
  100% {
    opacity: 0.34;
    transform: scale(0.9);
  }

  50% {
    opacity: 0.72;
    transform: scale(1.22);
  }
}

@keyframes systemFloat {
  0%,
  100% {
    translate: 0 0;
  }

  50% {
    translate: 0 -5px;
  }
}

@keyframes systemGlassSweep {
  0%,
  100% {
    opacity: 0.62;
  }

  50% {
    opacity: 1;
  }
}

@media (min-width: 1280px) {
  .features-grid {
    grid-template-columns: 420px minmax(0, 1fr);
  }
}

@media (max-width: 1023px) {
  .system-lead {
    grid-template-columns: 1fr;
    gap: 22px;
  }

  .system-lead span,
  .system-lead h2,
  .system-lead p {
    grid-column: auto;
  }

  .system-lead p {
    max-width: 680px;
  }

  .system-map {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    min-height: 0;
    place-items: stretch;
    gap: 10px;
    padding: 14px;
  }

  .system-map::before,
  .system-map::after {
    content: none;
  }

  .system-core,
  .system-node {
    position: relative;
    inset: auto;
    transform: none;
  }

  .system-core {
    grid-column: span 2;
    width: auto;
    min-height: 160px;
    aspect-ratio: auto;
    border-radius: 8px;
  }

  .system-core strong {
    max-width: none;
  }

  .system-node {
    width: auto;
    animation: none;
  }

  .system-node:hover,
  .system-node:focus-visible,
  .system-node.is-active,
  .system-node-one:hover,
  .system-node-one:focus-visible,
  .system-node-one.is-active {
    transform: none;
  }

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

  .features-grid {
    grid-template-columns: 1fr;
    gap: 42px;
  }

  .features-intro {
    position: relative;
    height: auto;
    padding: 0;
  }

  .feature-nav,
  .feature-cta {
    display: none;
  }

  .features-intro h2 {
    max-width: 680px;
  }

  .feature-card {
    min-height: 0;
  }
}

@media (max-width: 767px) {
  .floating-nav {
    top: 18px;
  }

  .floating-nav.is-docked {
    top: 14px;
    right: 14px;
  }

  .nav-pill {
    min-width: 142px;
  }

  .floating-nav.is-docked .nav-pill {
    min-width: 0;
  }

  .hero-content {
    padding-right: 18px;
    padding-bottom: 42px;
    padding-left: 18px;
  }

  .hero-copy {
    gap: 18px;
  }

  .hero-copy h1 {
    font-size: clamp(44px, 13vw, 64px);
  }

  .hero-cta {
    width: min(100%, 420px);
    gap: 12px;
    justify-content: space-between;
    padding-left: 18px;
  }

  .desktop-copy {
    display: none;
  }

  .mobile-copy {
    display: inline;
    text-align: left;
  }

  .about-section {
    padding-right: 18px;
    padding-left: 18px;
  }

  .system-section {
    padding-right: 18px;
    padding-left: 18px;
  }

  .system-lead h2 {
    font-size: clamp(36px, 11vw, 58px);
  }

  .system-map {
    grid-template-columns: 1fr;
    border-radius: 8px;
  }

  .system-core {
    grid-column: auto;
  }

  .system-node {
    min-height: 116px;
    place-items: start;
    text-align: left;
  }

  .system-node small {
    max-width: none;
  }

  .system-pathways {
    grid-template-columns: 1fr;
  }

  .system-pathways a {
    min-height: 96px;
  }

  .about-bottom {
    flex-direction: column;
    gap: 38px;
  }

  .features-section {
    padding-right: 18px;
    padding-left: 18px;
  }

  .features-bg {
    background-position: center;
  }

  .feature-card,
  .faq-panel {
    border-radius: 22px;
  }

  .feature-child-link {
    align-items: flex-start;
    flex-direction: column;
    gap: 5px;
  }

  .feature-child-link small {
    max-width: none;
    text-align: left;
  }

  .closing-content {
    width: min(100% - 36px, 560px);
  }
}

@media (max-width: 480px) {
  .about-actions,
  .pill-button {
    width: 100%;
  }

  .pill-button {
    justify-content: flex-start;
  }

  .hero-cta {
    align-items: stretch;
    flex-direction: column;
    padding: 14px;
  }

  .hero-cta a {
    text-align: center;
  }
}

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

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

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

  .lr-detail-stats article,
  .lr-detail-stats article:hover,
  .lr-detail-stats article.is-active,
  .lr-detail-stats article:hover span,
  .lr-detail-stats article.is-active span,
  .lr-detail-stats article:hover p,
  .lr-detail-stats article.is-active p,
  .lr-editorial-section:hover .lr-editorial-media,
  .lr-editorial-media img,
  .lr-editorial-copy.reveal.is-visible,
  .lr-editorial-copy::before {
    transform: none;
  }

  .system-map::before,
  .system-map::after,
  .system-core,
  .system-core::before,
  .system-core::after,
  .system-section::before,
  .system-section::after,
  .system-node,
  .system-node::before,
  .system-pathways a::before {
    animation: none;
  }
}

.living-room-page {
  --lr-ink: #18222d;
  --lr-muted: #5f6f70;
  --lr-paper: #f7f4ee;
  --lr-mist: #ced8e7;
  --lr-sage: var(--brand-blue);
  --lr-coral: #c47254;
  --lr-night: #111819;
  background: var(--lr-paper);
  color: var(--lr-ink);
}

.lr-hero {
  position: relative;
  min-height: 100vh;
  min-height: 100svh;
  overflow: hidden;
  isolation: isolate;
  background: var(--lr-night);
}

.lr-hero-image {
  position: absolute;
  inset: 0;
  z-index: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.04);
  animation: lr-kenburns 16s ease-out forwards;
}

.lr-hero-shade {
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(90deg, rgba(13, 24, 26, 0.74), rgba(13, 24, 26, 0.2) 58%, rgba(13, 24, 26, 0.56)),
    linear-gradient(180deg, rgba(13, 24, 26, 0.1), rgba(13, 24, 26, 0.62));
}

.lr-hero-content {
  position: relative;
  z-index: 2;
  display: grid;
  min-height: 100vh;
  min-height: 100svh;
  width: min(1180px, calc(100% - 48px));
  margin: 0 auto;
  align-content: end;
  gap: 20px;
  padding: 130px 0 72px;
  color: var(--white);
}

.lr-kicker,
.lr-intro-copy span,
.lr-section-head span,
.lr-panel-copy > span,
.lr-spaces-top span,
.lr-space-card span,
.lr-reserve-content span {
  margin: 0;
  color: currentColor;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.16em;
  line-height: 1.2;
  text-transform: uppercase;
}

.lr-kicker {
  color: rgba(255, 255, 255, 0.78);
}

.lr-hero h1 {
  max-width: 900px;
  margin: 0;
  color: var(--white);
  font-size: clamp(52px, 9vw, 118px);
  font-weight: 400;
  letter-spacing: 0;
  line-height: 0.98;
  text-wrap: balance;
}

.lr-hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 12px;
}

.lr-hero-actions a,
.lr-reserve-content a {
  border-radius: 12px;
  padding: 12px 18px;
  font-size: 14px;
  font-weight: 700;
  transition: background 180ms ease-out, color 180ms ease-out, transform 180ms ease-out;
}

.lr-hero-actions a:first-child,
.lr-reserve-content a {
  background: var(--white);
  color: #111819;
}

.lr-hero-actions a:last-child {
  border: 1px solid rgba(255, 255, 255, 0.42);
  background: rgba(255, 255, 255, 0.12);
  color: var(--white);
  backdrop-filter: blur(12px);
}

.lr-hero-actions a:hover,
.lr-reserve-content a:hover {
  transform: translateY(-1px);
}

.lr-scroll-card {
  position: absolute;
  right: clamp(18px, 4vw, 54px);
  bottom: clamp(18px, 4vw, 46px);
  z-index: 3;
  display: grid;
  grid-template-columns: repeat(2, minmax(72px, 1fr));
  gap: 1px;
  overflow: hidden;
  border-radius: 18px;
  border: 1px solid rgba(255, 255, 255, 0.24);
  background: rgba(255, 255, 255, 0.14);
  color: var(--white);
  backdrop-filter: blur(16px);
}

.lr-scroll-card span {
  padding: 14px 16px;
  background: rgba(255, 255, 255, 0.08);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.lr-intro-band {
  display: grid;
  grid-template-columns: minmax(280px, 0.9fr) minmax(0, 1.4fr);
  gap: clamp(42px, 7vw, 96px);
  padding: clamp(88px, 12vw, 150px) clamp(20px, 5vw, 64px);
  background: var(--lr-paper);
  color: var(--lr-ink);
}

.lr-intro-copy {
  position: sticky;
  top: 120px;
  align-self: start;
  display: grid;
  gap: 18px;
}

.lr-intro-copy span,
.lr-section-head span,
.lr-spaces-top span {
  color: var(--lr-sage);
}

.lr-intro-copy h2,
.lr-section-head h2,
.lr-spaces-top h2,
.lr-reserve-content h2 {
  margin: 0;
  font-size: clamp(34px, 5vw, 68px);
  font-weight: 400;
  letter-spacing: 0;
  line-height: 1.05;
  text-wrap: balance;
}

.lr-intro-grid {
  display: grid;
  gap: 18px;
}

.lr-principle {
  display: grid;
  grid-template-columns: 62px minmax(0, 1fr);
  gap: 8px 24px;
  border-top: 1px solid rgba(24, 34, 45, 0.16);
  padding: 28px 0 10px;
}

.lr-principle span {
  grid-row: span 2;
  color: var(--lr-coral);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.16em;
}

.lr-principle h3 {
  margin: 0;
  font-size: clamp(22px, 3vw, 32px);
  font-weight: 500;
  line-height: 1.15;
}

.lr-principle p {
  max-width: 620px;
  margin: 0;
  color: var(--lr-muted);
  font-size: 16px;
  line-height: 1.7;
}

.lr-destinations {
  padding: clamp(86px, 12vw, 150px) clamp(20px, 5vw, 64px);
  background: #132021;
  color: var(--white);
}

.lr-section-head {
  display: grid;
  gap: 18px;
  width: min(940px, 100%);
  margin: 0 auto 34px;
}

.lr-destinations .lr-section-head span {
  color: var(--brand-light-blue);
}

.lr-tabs {
  display: flex;
  width: min(940px, 100%);
  margin: 0 auto 28px;
  gap: 8px;
}

.lr-tabs button {
  min-width: 128px;
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  background: rgba(255, 255, 255, 0.08);
  color: rgba(255, 255, 255, 0.72);
  padding: 12px 16px;
  font-size: 14px;
  font-weight: 700;
  transition: background 180ms ease-out, color 180ms ease-out, transform 180ms ease-out;
}

.lr-tabs button.is-active,
.lr-tabs button:hover,
.lr-tabs button:focus-visible {
  background: var(--white);
  color: var(--lr-night);
  outline: none;
  transform: translateY(-1px);
}

.lr-destination-panels {
  width: min(1180px, 100%);
  margin: 0 auto;
}

.lr-destination-panel {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(320px, 0.8fr);
  gap: clamp(24px, 4vw, 48px);
  align-items: stretch;
}

.lr-destination-panel[hidden] {
  display: none;
}

.lr-panel-media {
  min-height: 520px;
  overflow: hidden;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.1);
}

.lr-panel-media img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.lr-panel-copy {
  display: grid;
  align-content: center;
  gap: 20px;
  padding: clamp(10px, 2vw, 24px) 0;
}

.lr-panel-copy > span {
  color: var(--brand-light-blue);
}

.lr-panel-copy h3 {
  margin: 0;
  font-size: clamp(30px, 4.2vw, 52px);
  font-weight: 400;
  line-height: 1.08;
}

.lr-panel-copy p {
  margin: 0;
  color: rgba(255, 255, 255, 0.72);
  font-size: 16px;
  line-height: 1.72;
}

.lr-panel-copy dl {
  display: grid;
  gap: 12px;
  margin: 12px 0 0;
}

.lr-panel-copy dl div {
  display: grid;
  grid-template-columns: 88px minmax(0, 1fr);
  gap: 18px;
  border-top: 1px solid rgba(255, 255, 255, 0.16);
  padding-top: 14px;
}

.lr-panel-copy dt,
.lr-panel-copy dd {
  margin: 0;
  font-size: 14px;
  line-height: 1.5;
}

.lr-panel-copy dt {
  color: var(--brand-light-blue);
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.lr-panel-copy dd {
  color: rgba(255, 255, 255, 0.82);
}

.lr-panel-link {
  width: fit-content;
  border-radius: 12px;
  background: var(--white);
  color: var(--lr-night);
  padding: 12px 18px;
  font-size: 14px;
  font-weight: 700;
  transition: transform 180ms ease-out, background 180ms ease-out;
}

.lr-panel-link:hover {
  background: rgba(255, 255, 255, 0.9);
  transform: translateY(-1px);
}

.lr-spaces {
  overflow: hidden;
  padding: clamp(84px, 12vw, 148px) 0 clamp(94px, 12vw, 156px);
  background: linear-gradient(180deg, #f7f4ee, #eef3f8);
  color: var(--lr-ink);
}

.lr-spaces-top {
  display: flex;
  width: min(1180px, calc(100% - 40px));
  margin: 0 auto 34px;
  align-items: end;
  justify-content: space-between;
  gap: 24px;
}

.lr-spaces-top div:first-child {
  display: grid;
  max-width: 780px;
  gap: 16px;
}

.lr-rail-controls {
  display: flex;
  gap: 8px;
}

.lr-rail-controls button {
  display: grid;
  width: 44px;
  height: 44px;
  place-items: center;
  border-radius: 999px;
  background: var(--lr-night);
  color: var(--white);
  transition: background 180ms ease-out, transform 180ms ease-out;
}

.lr-rail-controls button:hover {
  background: var(--lr-coral);
  transform: translateY(-1px);
}

.lr-rail-controls svg {
  width: 20px;
  height: 20px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2.2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.lr-space-rail {
  display: grid;
  grid-auto-columns: minmax(300px, 420px);
  grid-auto-flow: column;
  gap: 18px;
  overflow-x: auto;
  overscroll-behavior-inline: contain;
  scroll-padding-inline: max(20px, calc((100vw - 1180px) / 2));
  scroll-snap-type: inline mandatory;
  padding: 0 max(20px, calc((100vw - 1180px) / 2)) 4px;
  scrollbar-width: none;
}

.lr-space-rail::-webkit-scrollbar {
  display: none;
}

.lr-rail-progress {
  position: relative;
  width: min(1180px, calc(100% - 40px));
  height: 3px;
  margin: 24px auto 0;
  overflow: hidden;
  border-radius: 999px;
  background: rgba(24, 34, 45, 0.1);
}

.lr-rail-progress span {
  position: absolute;
  inset: 0 auto 0 0;
  width: var(--rail-progress-width, 34%);
  border-radius: inherit;
  background: linear-gradient(90deg, var(--lr-sage), var(--lr-coral));
  transform: translateX(var(--rail-progress-x, 0%));
  transform-origin: left center;
  transition: transform 120ms linear, width 180ms ease-out;
}

.lr-space-card {
  position: relative;
  min-height: 520px;
  overflow: hidden;
  border-radius: 8px;
  scroll-snap-align: start;
  background: #203031;
  color: var(--white);
}

.lr-space-card img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 600ms ease-out;
}

.lr-space-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(9, 17, 18, 0.02), rgba(9, 17, 18, 0.74));
}

.lr-space-card div {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 1;
  display: grid;
  gap: 8px;
  padding: 26px;
}

.lr-space-card span {
  color: rgba(255, 255, 255, 0.74);
}

.lr-space-card h3 {
  margin: 0;
  font-size: clamp(24px, 3vw, 34px);
  font-weight: 400;
  line-height: 1.1;
}

.lr-space-card:hover img {
  transform: scale(1.05);
}

.lr-shanghai-spaces {
  background:
    radial-gradient(circle at 78% 16%, rgba(255, 255, 255, 0.76), transparent 28%),
    linear-gradient(180deg, #eef3f8 0%, #f7f4ee 100%);
}

.lr-shanghai-spaces .lr-space-rail {
  grid-auto-columns: minmax(360px, 520px);
}

.lr-shanghai-spaces .lr-space-card {
  min-height: 560px;
  border-radius: 4px;
  box-shadow: 0 28px 76px rgba(24, 34, 45, 0.12);
}

.lr-shanghai-spaces .lr-space-card::after {
  background:
    linear-gradient(180deg, rgba(9, 17, 18, 0), rgba(9, 17, 18, 0.62)),
    linear-gradient(90deg, rgba(9, 17, 18, 0.18), rgba(9, 17, 18, 0));
}

.lr-shanghai-spaces .lr-space-card div {
  padding: 30px;
}

.lr-reserve {
  position: relative;
  min-height: 82vh;
  overflow: hidden;
  isolation: isolate;
  background: var(--lr-night);
}

.lr-reserve > img {
  position: absolute;
  inset: 0;
  z-index: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.lr-reserve::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(90deg, rgba(12, 20, 20, 0.78), rgba(12, 20, 20, 0.18) 56%, rgba(12, 20, 20, 0.58)),
    linear-gradient(180deg, rgba(12, 20, 20, 0.04), rgba(12, 20, 20, 0.62));
}

.lr-reserve-content {
  position: relative;
  z-index: 2;
  display: grid;
  min-height: 82vh;
  width: min(920px, calc(100% - 48px));
  margin: 0 auto;
  align-content: center;
  justify-items: center;
  gap: 22px;
  color: var(--white);
  text-align: center;
}

.lr-reserve-content span {
  color: rgba(255, 255, 255, 0.74);
}

.lr-reserve-content h2 {
  max-width: 820px;
}

.lr-detail-page {
  background: var(--lr-paper);
}

.lr-detail-hero {
  position: relative;
  min-height: 92vh;
  min-height: 92svh;
  overflow: hidden;
  isolation: isolate;
  background: var(--lr-night);
}

.lr-detail-hero > img {
  position: absolute;
  inset: 0;
  z-index: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.035);
  animation: lr-kenburns 14s ease-out forwards;
}

.lr-detail-hero-shade {
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(90deg, rgba(11, 20, 21, 0.78), rgba(11, 20, 21, 0.18) 62%, rgba(11, 20, 21, 0.42)),
    linear-gradient(180deg, rgba(11, 20, 21, 0.02), rgba(11, 20, 21, 0.72));
}

.lr-detail-hero-content {
  position: relative;
  z-index: 2;
  display: grid;
  min-height: 92vh;
  min-height: 92svh;
  width: min(1180px, calc(100% - 48px));
  margin: 0 auto;
  align-content: end;
  gap: 18px;
  padding: 130px 0 72px;
  color: var(--white);
}

.lr-back-link {
  width: fit-content;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.24);
  background: rgba(255, 255, 255, 0.1);
  color: rgba(255, 255, 255, 0.78);
  padding: 9px 13px;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  backdrop-filter: blur(12px);
}

.lr-detail-hero h1 {
  max-width: 980px;
  margin: 0;
  color: var(--white);
  font-size: clamp(48px, 8vw, 104px);
  font-weight: 400;
  letter-spacing: 0;
  line-height: 1;
  text-wrap: balance;
}

.lr-detail-intro {
  display: grid;
  grid-template-columns: minmax(280px, 0.9fr) minmax(0, 1.1fr);
  gap: clamp(42px, 8vw, 110px);
  padding: clamp(82px, 11vw, 142px) clamp(20px, 5vw, 64px);
  background: var(--lr-paper);
  color: var(--lr-ink);
}

.lr-detail-statement,
.lr-detail-copy {
  width: min(100%, 640px);
}

.lr-detail-statement {
  display: grid;
  gap: 18px;
}

.lr-detail-statement span,
.lr-feature-list-head span,
.lr-editorial-copy span,
.lr-venue-card span,
.lr-next-content span {
  color: var(--lr-sage);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.lr-detail-statement h2,
.lr-feature-list-head h2,
.lr-editorial-copy h2,
.lr-next-content h2 {
  margin: 0;
  font-size: clamp(34px, 5vw, 68px);
  font-weight: 400;
  letter-spacing: 0;
  line-height: 1.05;
  text-wrap: balance;
}

.lr-detail-copy {
  display: grid;
  align-content: start;
  gap: 20px;
}

.lr-detail-copy p,
.lr-editorial-copy p,
.lr-feature-list p,
.lr-venue-card p {
  margin: 0;
  color: var(--lr-muted);
  font-size: 16px;
  line-height: 1.72;
}

.lr-detail-stats {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: clamp(14px, 2.2vw, 26px);
  padding: clamp(48px, 7vw, 86px) clamp(20px, 5vw, 64px);
  background:
    linear-gradient(180deg, rgba(247, 244, 238, 0.96), rgba(206, 216, 231, 0.42)),
    #f7f4ee;
}

.lr-detail-stats article {
  display: grid;
  position: relative;
  min-height: 178px;
  align-content: space-between;
  gap: 28px;
  overflow: hidden;
  border-top: 1px solid rgba(24, 34, 45, 0.14);
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.54), rgba(255, 255, 255, 0.08)),
    rgba(206, 216, 231, 0.28);
  padding: clamp(22px, 3.2vw, 34px);
  transition:
    background 420ms ease-out,
    border-color 420ms ease-out,
    box-shadow 420ms ease-out,
    opacity 420ms ease-out,
    transform 420ms var(--ease);
}

.lr-detail-stats article::before {
  content: "";
  position: absolute;
  top: 0;
  left: clamp(22px, 3.2vw, 34px);
  width: 54px;
  height: 1px;
  background: var(--lr-coral);
  transform-origin: left center;
  transition:
    opacity 420ms ease-out,
    width 520ms var(--ease);
}

.lr-detail-stats article::after {
  content: "";
  position: absolute;
  right: -34px;
  bottom: -54px;
  width: 138px;
  aspect-ratio: 1;
  border: 1px solid rgba(94, 130, 171, 0.18);
  border-radius: 999px;
  pointer-events: none;
  opacity: 0.72;
  transform: scale(1);
  transition:
    opacity 520ms ease-out,
    transform 620ms var(--ease);
}

.lr-detail-stats span {
  color: var(--lr-coral);
  font-size: clamp(34px, 4.8vw, 62px);
  font-weight: 400;
  line-height: 1;
  transition:
    color 360ms ease-out,
    transform 420ms var(--ease);
}

.lr-detail-stats p {
  max-width: 300px;
  margin: 0;
  color: var(--lr-ink);
  font-size: 15px;
  font-weight: 600;
  line-height: 1.42;
  transition:
    color 360ms ease-out,
    transform 420ms var(--ease);
}

.lr-detail-stats article:hover,
.lr-detail-stats article.is-active {
  border-color: rgba(198, 113, 83, 0.34);
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.72), rgba(255, 255, 255, 0.16)),
    rgba(206, 216, 231, 0.48);
  box-shadow: 0 28px 70px rgba(24, 34, 45, 0.08);
  transform: translateY(-7px);
}

.lr-detail-stats article:hover::before,
.lr-detail-stats article.is-active::before {
  width: min(118px, calc(100% - 68px));
}

.lr-detail-stats article:hover::after,
.lr-detail-stats article.is-active::after {
  opacity: 1;
  transform: scale(1.16) translate(-8px, -8px);
}

.lr-detail-stats article:hover span,
.lr-detail-stats article.is-active span {
  color: #b96348;
  transform: translateY(-3px);
}

.lr-detail-stats article:hover p,
.lr-detail-stats article.is-active p {
  color: rgba(24, 34, 45, 0.82);
  transform: translateY(-2px);
}

.residence-pillars {
  position: relative;
  overflow: hidden;
  padding: clamp(86px, 12vw, 156px) clamp(20px, 5vw, 64px);
  background:
    radial-gradient(circle at 12% 18%, rgba(206, 216, 231, 0.86), transparent 30%),
    linear-gradient(180deg, #f7f4ee 0%, #edf3f8 100%);
  color: var(--lr-ink);
}

.residence-pillars::before {
  content: "";
  position: absolute;
  inset: 42px clamp(20px, 5vw, 64px) auto;
  height: 1px;
  background: linear-gradient(90deg, rgba(94, 130, 171, 0.5), rgba(94, 130, 171, 0.06));
}

.residence-pillars-head {
  display: grid;
  grid-template-columns: minmax(220px, 0.58fr) minmax(0, 1fr);
  gap: clamp(28px, 6vw, 88px);
  align-items: start;
  width: min(1180px, 100%);
  margin: 0 auto clamp(48px, 7vw, 88px);
}

.residence-pillars-head span,
.residence-services-copy span {
  color: var(--brand-blue);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.residence-pillars-head h2,
.residence-services-copy h2 {
  margin: 0;
  font-size: clamp(34px, 5vw, 64px);
  font-weight: 400;
  letter-spacing: 0;
  line-height: 1.06;
  text-wrap: balance;
}

.residence-pillar-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  width: min(1280px, 100%);
  margin: 0 auto;
  border-top: 1px solid rgba(57, 88, 120, 0.18);
  border-bottom: 1px solid rgba(57, 88, 120, 0.18);
}

.residence-pillar-grid article {
  display: grid;
  min-height: 360px;
  align-content: space-between;
  gap: 42px;
  padding: clamp(24px, 3vw, 38px) clamp(18px, 2.6vw, 30px);
  border-right: 1px solid rgba(57, 88, 120, 0.14);
  background: rgba(255, 255, 255, 0.18);
  transition:
    background 420ms ease-out,
    transform 520ms var(--ease);
}

.residence-pillar-grid article:last-child {
  border-right: 0;
}

.residence-pillar-grid article > span {
  color: rgba(94, 130, 171, 0.52);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.12em;
}

.residence-pillar-grid h3 {
  margin: 0 0 18px;
  color: var(--lr-ink);
  font-size: clamp(24px, 2.6vw, 34px);
  font-weight: 400;
  letter-spacing: 0;
  line-height: 1.08;
}

.residence-pillar-grid p {
  margin: 0;
  color: var(--lr-muted);
  font-size: 15px;
  line-height: 1.7;
}

.residence-pillar-grid article:hover {
  background: rgba(255, 255, 255, 0.48);
  transform: translateY(-8px);
}

.residence-design {
  background:
    radial-gradient(circle at 86% 12%, rgba(206, 216, 231, 0.58), transparent 28%),
    linear-gradient(180deg, #edf3f8 0%, #f7f4ee 100%);
}

.residence-services {
  display: grid;
  grid-template-columns: minmax(280px, 0.82fr) minmax(0, 1.18fr);
  gap: clamp(34px, 7vw, 104px);
  align-items: start;
  padding: clamp(86px, 12vw, 150px) clamp(20px, 5vw, 64px);
  background:
    linear-gradient(115deg, rgba(206, 216, 231, 0.58), rgba(255, 255, 255, 0) 44%),
    #f7f4ee;
  color: var(--lr-ink);
}

.residence-services-copy {
  display: grid;
  position: sticky;
  top: 110px;
  gap: 22px;
}

.residence-services-copy p {
  max-width: 560px;
  margin: 0;
  color: var(--lr-muted);
  font-size: 16px;
  line-height: 1.72;
}

.residence-service-list {
  display: grid;
  border-top: 1px solid rgba(57, 88, 120, 0.2);
}

.residence-service-list a {
  display: grid;
  grid-template-columns: minmax(160px, 0.42fr) minmax(0, 1fr);
  gap: clamp(18px, 4vw, 56px);
  align-items: start;
  min-height: 136px;
  padding: clamp(24px, 3.4vw, 38px) 0;
  border-bottom: 1px solid rgba(57, 88, 120, 0.18);
  transition:
    color 320ms ease-out,
    transform 420ms var(--ease);
}

.residence-service-list a::after {
  content: "Explore";
  justify-self: end;
  grid-column: 2;
  width: fit-content;
  margin-top: -12px;
  color: var(--brand-blue);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  opacity: 0;
  transform: translateX(-10px);
  transition:
    opacity 320ms ease-out,
    transform 420ms var(--ease);
}

.residence-service-list span {
  color: var(--brand-blue);
  font-size: clamp(22px, 2.4vw, 32px);
  font-weight: 400;
  line-height: 1.12;
}

.residence-service-list p {
  max-width: 560px;
  margin: 0;
  color: var(--lr-muted);
  font-size: 16px;
  line-height: 1.64;
}

.residence-service-list a:hover {
  color: var(--brand-ink);
  transform: translateX(10px);
}

.residence-service-list a:hover::after {
  opacity: 1;
  transform: translateX(0);
}

.at-one-core-services {
  position: relative;
  overflow: hidden;
  padding: clamp(86px, 12vw, 154px) clamp(20px, 5vw, 64px);
  background:
    radial-gradient(circle at 86% 12%, rgba(206, 216, 231, 0.76), transparent 30%),
    linear-gradient(180deg, #f7f4ee 0%, #edf3f8 100%);
  color: var(--lr-ink);
}

.at-one-core-services::before {
  content: "";
  position: absolute;
  inset: 42px clamp(20px, 5vw, 64px) auto;
  height: 1px;
  background: linear-gradient(90deg, rgba(94, 130, 171, 0.48), rgba(94, 130, 171, 0.06));
}

.at-one-core-head {
  display: grid;
  grid-template-columns: minmax(240px, 0.58fr) minmax(0, 1fr);
  gap: clamp(28px, 6vw, 88px);
  align-items: start;
  width: min(1180px, 100%);
  margin: 0 auto clamp(46px, 7vw, 82px);
}

.at-one-core-head span,
.at-one-core-card span {
  color: var(--brand-blue);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.at-one-core-head h2 {
  margin: 0;
  font-size: clamp(34px, 5vw, 64px);
  font-weight: 400;
  letter-spacing: 0;
  line-height: 1.06;
  text-wrap: balance;
}

.at-one-core-head p {
  grid-column: 2;
  max-width: 720px;
  margin: -22px 0 0;
  color: var(--lr-muted);
  font-size: 16px;
  line-height: 1.72;
}

.at-one-core-grid {
  display: grid;
  gap: clamp(26px, 4vw, 42px);
  width: min(1180px, 100%);
  margin: 0 auto;
}

.at-one-core-card {
  display: grid;
  grid-template-columns: minmax(0, 0.84fr) minmax(430px, 0.76fr);
  min-height: clamp(460px, 52vw, 620px);
  overflow: hidden;
  border-top: 1px solid rgba(94, 130, 171, 0.28);
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.18), rgba(255, 255, 255, 0.72));
  box-shadow: 0 28px 74px rgba(24, 34, 45, 0.07);
  transition:
    box-shadow 520ms ease-out,
    transform 520ms var(--ease);
}

.at-one-core-card:nth-child(even) {
  grid-template-columns: minmax(430px, 0.76fr) minmax(0, 0.84fr);
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.72), rgba(255, 255, 255, 0.18));
}

.at-one-core-card:nth-child(even) figure {
  order: 2;
}

.at-one-core-card figure {
  position: relative;
  min-height: 100%;
  margin: 0;
  overflow: hidden;
  background: var(--brand-light-blue);
}

.at-one-core-card figure::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(24, 34, 45, 0.04), rgba(24, 34, 45, 0.24));
}

.at-one-core-card img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.04);
  transition: transform 700ms var(--ease);
}

.at-one-core-card div {
  display: grid;
  align-content: center;
  gap: 18px;
  max-width: 600px;
  padding: clamp(34px, 5vw, 64px);
}

.at-one-core-card h3 {
  margin: 0;
  color: var(--lr-ink);
  font-size: clamp(28px, 3vw, 46px);
  font-weight: 400;
  letter-spacing: 0;
  line-height: 1.08;
  text-wrap: balance;
}

.at-one-core-card p {
  margin: 0;
  color: var(--lr-muted);
  font-size: 15px;
  line-height: 1.7;
}

.at-one-core-card:hover {
  box-shadow: 0 38px 96px rgba(24, 34, 45, 0.13);
  transform: translateY(-4px);
}

.at-one-core-card:hover img {
  transform: scale(1.085);
}

.at-one-page .lr-editorial-media {
  background: transparent;
  box-shadow: 0 30px 72px rgba(24, 34, 45, 0.08);
}

.at-one-page .lr-editorial-media::before,
.at-one-page .lr-editorial-media::after {
  content: none;
}

.contact-hero {
  position: relative;
  min-height: 86vh;
  min-height: 86svh;
  overflow: hidden;
  isolation: isolate;
  background: var(--lr-night);
}

.contact-hero > img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.03);
  animation: lr-kenburns 14s ease-out forwards;
}

.contact-hero-shade {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(11, 20, 21, 0.74), rgba(11, 20, 21, 0.12) 62%, rgba(11, 20, 21, 0.38)),
    linear-gradient(180deg, rgba(11, 20, 21, 0.02), rgba(11, 20, 21, 0.7));
}

.contact-hero-content {
  position: relative;
  z-index: 1;
  display: grid;
  min-height: 86vh;
  min-height: 86svh;
  width: min(1180px, calc(100% - 48px));
  margin: 0 auto;
  align-content: end;
  gap: 18px;
  padding: 130px 0 70px;
  color: var(--white);
}

.contact-hero h1 {
  max-width: 920px;
  margin: 0;
  color: var(--white);
  font-size: var(--type-hero-title);
  font-weight: 400;
  line-height: 1;
  text-wrap: balance;
}

.contact-locations,
.contact-follow {
  position: relative;
  overflow: hidden;
  padding: clamp(86px, 12vw, 152px) clamp(20px, 5vw, 64px);
  background:
    radial-gradient(circle at 88% 12%, rgba(206, 216, 231, 0.68), transparent 30%),
    linear-gradient(180deg, #f7f4ee 0%, #eef3f8 100%);
  color: var(--lr-ink);
}

.contact-locations-head,
.contact-follow-copy {
  display: grid;
  grid-template-columns: minmax(220px, 0.56fr) minmax(0, 1fr);
  gap: clamp(28px, 6vw, 88px);
  align-items: start;
  width: min(1180px, 100%);
  margin: 0 auto clamp(42px, 7vw, 80px);
}

.contact-locations-head span,
.contact-location-card > span,
.contact-follow-copy span,
.contact-follow-grid span,
.site-footer span {
  color: var(--brand-blue);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.contact-locations-head h2,
.contact-follow-copy h2 {
  margin: 0;
  font-size: clamp(34px, 5vw, 64px);
  font-weight: 400;
  line-height: 1.06;
  text-wrap: balance;
}

.contact-locations-head p {
  grid-column: 2;
  max-width: 740px;
  margin: -20px 0 0;
  color: var(--lr-muted);
  font-size: 16px;
  line-height: 1.72;
}

.contact-location-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(18px, 3vw, 34px);
  width: min(1180px, 100%);
  margin: 0 auto;
}

.contact-location-card {
  display: grid;
  gap: 28px;
  align-content: start;
  min-height: 580px;
  border-top: 1px solid rgba(94, 130, 171, 0.28);
  background: rgba(255, 255, 255, 0.46);
  padding: clamp(28px, 4.8vw, 54px);
  box-shadow: 0 30px 80px rgba(24, 34, 45, 0.08);
}

.contact-location-card h3,
.contact-follow-grid h3 {
  margin: 0;
  color: var(--lr-ink);
  font-size: clamp(30px, 4vw, 54px);
  font-weight: 400;
  line-height: 1.06;
  text-wrap: balance;
}

.contact-location-card dl {
  display: grid;
  gap: 18px;
  margin: 0;
}

.contact-location-card dl div {
  display: grid;
  grid-template-columns: 110px minmax(0, 1fr);
  gap: 18px;
  border-top: 1px solid rgba(57, 88, 120, 0.14);
  padding-top: 18px;
}

.contact-location-card dt {
  color: var(--brand-blue);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.contact-location-card dd {
  margin: 0;
  color: var(--lr-muted);
  font-size: 15px;
  line-height: 1.66;
}

.contact-location-card a {
  transition: color 260ms ease-out;
}

.contact-location-card a:hover {
  color: var(--brand-blue);
}

.contact-card-action {
  align-self: end;
  width: fit-content;
  border-radius: 999px;
  background: var(--brand-blue);
  color: var(--white);
  padding: 12px 18px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.contact-card-action:hover {
  background: #456f9b;
  color: var(--white);
}

.contact-follow {
  background:
    linear-gradient(90deg, rgba(94, 130, 171, 0.08) 1px, transparent 1px) 0 0 / 25% 100%,
    #f7f4ee;
}

.contact-follow-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  width: min(1180px, 100%);
  margin: 0 auto;
  border-top: 1px solid rgba(57, 88, 120, 0.18);
  border-bottom: 1px solid rgba(57, 88, 120, 0.18);
}

.contact-follow-grid article,
.contact-follow-grid a {
  display: grid;
  min-height: 300px;
  align-content: space-between;
  gap: 34px;
  border-right: 1px solid rgba(57, 88, 120, 0.14);
  padding: clamp(24px, 3vw, 38px);
  background: rgba(255, 255, 255, 0.2);
}

.contact-follow-grid article:last-child,
.contact-follow-grid a:last-child {
  border-right: 0;
}

.contact-follow-grid p {
  margin: 0;
  color: var(--lr-muted);
  font-size: 15px;
  line-height: 1.7;
}

.contact-follow-grid a {
  color: inherit;
}

.contact-follow-icon {
  width: 32px;
  height: 32px;
  object-fit: contain;
}

.contact-qr {
  width: 118px;
  height: 118px;
  border: 1px solid rgba(57, 88, 120, 0.12);
  background: var(--white);
  padding: 8px;
}

.site-footer {
  position: relative;
  display: grid;
  gap: 0;
  width: 100%;
  margin: 0;
  padding: clamp(24px, 4vw, 48px) clamp(16px, 5vw, 64px) clamp(36px, 5vw, 64px);
  color: var(--lr-ink);
  background: #d9e3eb;
  overflow: hidden;
  isolation: isolate;
}

.closing-footer-scene .site-footer {
  position: relative;
  z-index: 3;
  margin: clamp(-124px, -8vw, -72px) 0 0;
  background: transparent;
}

.closing-footer-scene .site-footer::before,
.closing-footer-scene .site-footer::after {
  content: none;
}

.site-footer::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(180deg, rgba(15, 31, 50, 0.04), rgba(206, 216, 231, 0.2) 42%, rgba(244, 247, 249, 0.48) 100%),
    linear-gradient(90deg, rgba(15, 31, 50, 0.2), rgba(255, 255, 255, 0.04) 48%, rgba(15, 31, 50, 0.2));
  pointer-events: none;
}

.site-footer::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 2;
  background:
    radial-gradient(circle at 50% 0%, rgba(255, 255, 255, 0.18), transparent 34%),
    linear-gradient(180deg, rgba(255, 255, 255, 0), rgba(206, 216, 231, 0.16) 100%);
  pointer-events: none;
}

.site-footer-video {
  position: absolute;
  inset: 0;
  z-index: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
  opacity: 1;
  filter: saturate(0.86) brightness(1.08);
}

.site-footer-top {
  position: relative;
  z-index: 3;
  display: grid;
  grid-template-columns: minmax(280px, 0.86fr) minmax(0, 1fr);
  gap: clamp(34px, 6vw, 84px);
  width: min(1160px, 100%);
  margin: 0 auto;
  border-radius: 28px 28px 0 0;
  border: 1px solid rgba(255, 255, 255, 0.72);
  border-bottom: 0;
  background:
    linear-gradient(135deg, rgba(253, 251, 243, 0.9), rgba(232, 239, 245, 0.72)),
    rgba(255, 255, 255, 0.22);
  box-shadow:
    inset 0 1px 1px rgba(255, 255, 255, 0.82),
    0 20px 54px rgba(38, 58, 78, 0.13);
  -webkit-backdrop-filter: blur(20px) saturate(1.06);
  backdrop-filter: blur(20px) saturate(1.06);
  padding: clamp(30px, 4vw, 48px);
}

.site-footer-brand,
.site-footer-links,
.site-footer-links div {
  display: grid;
  align-content: start;
}

.site-footer-brand {
  gap: 18px;
}

.site-footer-brand h2 {
  max-width: 430px;
  margin: 0;
  color: var(--lr-ink);
  font-size: clamp(28px, 3.4vw, 46px);
  font-weight: 400;
  letter-spacing: 0;
  line-height: 1.02;
  text-wrap: balance;
}

.site-footer-brand p {
  max-width: 390px;
  margin: 0;
  color: rgba(28, 41, 50, 0.62);
  font-size: 14px;
  line-height: 1.62;
}

.site-footer-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 2px;
}

.site-footer-actions a {
  display: inline-flex;
  min-height: 38px;
  align-items: center;
  border-radius: 10px;
  padding: 9px 14px;
  background: rgba(255, 255, 255, 0.68);
  color: rgba(28, 41, 50, 0.82);
  font-size: 12px;
  font-weight: 500;
  line-height: 1;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.82);
  transition: background 180ms ease-out, color 180ms ease-out, transform 180ms ease-out;
}

.site-footer-actions a:first-child {
  background: rgba(14, 20, 26, 0.92);
  color: var(--white);
}

.site-footer-actions a:hover {
  background: var(--brand-blue);
  color: var(--white);
  transform: translateY(-1px);
}

.site-footer-links {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(24px, 4vw, 52px);
}

.site-footer-links div {
  gap: 10px;
}

.site-footer-links a,
.site-footer-bottom a {
  width: fit-content;
  color: rgba(28, 41, 50, 0.66);
  font-size: 14px;
  line-height: 1.48;
  transition: color 220ms ease-out, transform 220ms ease-out;
}

.site-footer-links a:hover,
.site-footer-bottom a:hover {
  color: var(--brand-blue);
  transform: translateX(3px);
}

.site-social-links {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.site-social-links a {
  display: grid;
  width: 34px;
  height: 34px;
  align-items: center;
  justify-items: center;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.58);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.78);
  transition: background 180ms ease-out, transform 180ms ease-out;
}

.site-social-links a:hover {
  background: var(--brand-blue);
  transform: translateY(-1px);
}

.site-social-links img {
  width: 18px;
  height: 18px;
  object-fit: contain;
  filter: saturate(0.86);
}

.site-social-links a:hover img {
  filter: brightness(0) invert(1);
}

.site-footer-bottom {
  position: relative;
  z-index: 3;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  width: min(1160px, 100%);
  margin: 0 auto;
  padding: 18px clamp(30px, 4vw, 48px) 22px;
  border-top: 1px solid rgba(94, 130, 171, 0.12);
  border-right: 1px solid rgba(255, 255, 255, 0.72);
  border-bottom: 1px solid rgba(255, 255, 255, 0.72);
  border-left: 1px solid rgba(255, 255, 255, 0.72);
  border-radius: 0 0 28px 28px;
  background: rgba(245, 248, 250, 0.64);
  -webkit-backdrop-filter: blur(20px) saturate(1.06);
  backdrop-filter: blur(20px) saturate(1.06);
}

.site-footer-bottom p {
  margin: 0;
  color: rgba(28, 41, 50, 0.46);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.site-footer-bottom div {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 12px 22px;
}

.site-footer-bottom a {
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.celebration-principles {
  position: relative;
  overflow: hidden;
  padding: clamp(86px, 12vw, 152px) clamp(20px, 5vw, 64px);
  background:
    radial-gradient(circle at 88% 16%, rgba(206, 216, 231, 0.72), transparent 30%),
    linear-gradient(180deg, #f7f4ee 0%, #eef3f8 100%);
  color: var(--lr-ink);
}

.celebration-principles::before {
  content: "";
  position: absolute;
  inset: 12% clamp(20px, 5vw, 64px) auto;
  height: 1px;
  background: linear-gradient(90deg, rgba(94, 130, 171, 0.52), rgba(94, 130, 171, 0.06));
}

.celebration-principles-head {
  display: grid;
  grid-template-columns: minmax(0, 0.88fr) minmax(320px, 0.72fr);
  gap: clamp(28px, 6vw, 86px);
  align-items: end;
  width: min(1180px, 100%);
  margin: 0 auto clamp(46px, 7vw, 82px);
}

.celebration-principles-head span,
.celebration-program-card span {
  color: var(--brand-blue);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.celebration-principles-head h2 {
  grid-column: 1;
  margin: 0;
  font-size: clamp(32px, 4.7vw, 62px);
  font-weight: 400;
  line-height: 1.06;
  text-wrap: balance;
}

.celebration-principles-head p {
  grid-column: 2;
  margin: 0;
  color: var(--lr-muted);
  font-size: 17px;
  line-height: 1.72;
}

.celebration-principle-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  width: min(1180px, 100%);
  margin: 0 auto;
  border-top: 1px solid rgba(57, 88, 120, 0.18);
}

.celebration-principle-grid article {
  position: relative;
  display: grid;
  align-content: start;
  gap: 16px;
  min-height: 330px;
  padding: clamp(24px, 3.2vw, 38px) clamp(18px, 2.4vw, 28px);
  border-right: 1px solid rgba(57, 88, 120, 0.16);
  transition:
    background 420ms ease-out,
    transform 420ms var(--ease);
}

.celebration-principle-grid article:last-child {
  border-right: 0;
}

.celebration-principle-grid article::after {
  content: "";
  position: absolute;
  right: 18px;
  bottom: 20px;
  width: 54px;
  height: 54px;
  border: 1px solid rgba(94, 130, 171, 0.2);
  border-radius: 999px;
  opacity: 0;
  transform: scale(0.72);
  transition:
    opacity 420ms ease-out,
    transform 520ms var(--ease);
}

.celebration-principle-grid article:hover,
.celebration-principle-grid article.is-active {
  background: rgba(255, 255, 255, 0.34);
  transform: translateY(-6px);
}

.celebration-principle-grid article:hover::after,
.celebration-principle-grid article.is-active::after {
  opacity: 1;
  transform: scale(1);
}

.celebration-principle-grid span {
  color: rgba(94, 130, 171, 0.72);
  font-size: 13px;
  letter-spacing: 0.18em;
}

.celebration-principle-grid h3 {
  margin: 0;
  color: var(--lr-ink);
  font-size: clamp(22px, 2.4vw, 31px);
  font-weight: 400;
  line-height: 1.12;
}

.celebration-principle-grid p {
  margin: 0;
  color: var(--lr-muted);
  font-size: 15px;
  line-height: 1.64;
}

.celebration-programs {
  padding: clamp(86px, 12vw, 150px) clamp(20px, 5vw, 64px);
  background:
    linear-gradient(180deg, #eef3f8 0%, #f7f4ee 100%);
  color: var(--lr-ink);
}

.celebration-programs .lr-feature-list-head {
  grid-template-columns: minmax(0, 1fr);
  margin-bottom: clamp(34px, 5vw, 58px);
}

.celebration-programs .lr-feature-list-head span {
  color: var(--brand-blue);
}

.celebration-programs .lr-feature-list-head h2 {
  max-width: 940px;
  color: var(--lr-ink);
  font-size: clamp(30px, 4.4vw, 58px);
}

.celebration-program-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.18fr) minmax(280px, 0.82fr);
  gap: clamp(18px, 2.4vw, 28px);
  width: min(1180px, 100%);
  margin: 0 auto;
}

.celebration-program-card {
  position: relative;
  overflow: hidden;
  min-height: 420px;
  background: rgba(255, 255, 255, 0.48);
  color: var(--lr-ink);
  isolation: isolate;
}

.celebration-program-feature {
  grid-row: span 2;
  min-height: 680px;
}

.celebration-program-card img {
  position: absolute;
  inset: 0;
  z-index: -2;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.04);
  transition:
    filter 520ms ease-out,
    transform 720ms var(--ease);
}

.celebration-program-card::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    linear-gradient(180deg, rgba(12, 22, 31, 0.08) 0%, rgba(12, 22, 31, 0.22) 46%, rgba(12, 22, 31, 0.76) 100%);
  transition: background 520ms ease-out;
}

.celebration-program-card div {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  display: grid;
  gap: 13px;
  padding: clamp(24px, 4vw, 42px);
  color: var(--white);
}

.celebration-program-card h3 {
  margin: 0;
  color: var(--white);
  font-size: clamp(28px, 4vw, 54px);
  font-weight: 400;
  line-height: 1.04;
}

.celebration-program-card:not(.celebration-program-feature) h3 {
  font-size: clamp(24px, 3vw, 38px);
}

.celebration-program-card p {
  max-width: 620px;
  margin: 0;
  color: rgba(255, 255, 255, 0.78);
  font-size: 15px;
  line-height: 1.64;
}

.celebration-program-card:hover img {
  filter: saturate(1.08) contrast(1.03);
  transform: scale(1.09);
}

.celebration-program-card:hover::before {
  background:
    linear-gradient(180deg, rgba(12, 22, 31, 0.02) 0%, rgba(12, 22, 31, 0.18) 42%, rgba(12, 22, 31, 0.82) 100%);
}

.celebration-impact-week {
  display: grid;
  grid-template-columns: 1fr;
  gap: clamp(28px, 4vw, 46px);
  width: min(1180px, 100%);
  margin: clamp(32px, 5vw, 58px) auto 0;
  border-top: 1px solid rgba(94, 130, 171, 0.2);
  padding-top: clamp(34px, 5vw, 58px);
}

.celebration-impact-head {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(320px, 0.56fr);
  align-content: start;
  gap: clamp(22px, 5vw, 72px);
  align-items: end;
}

.celebration-impact-head span,
.celebration-impact-card span {
  color: var(--brand-blue);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.celebration-impact-head h3 {
  grid-column: 1;
  margin: 0;
  color: var(--lr-ink);
  font-size: clamp(30px, 4vw, 54px);
  font-weight: 400;
  line-height: 1.06;
  text-wrap: balance;
}

.celebration-impact-head p {
  grid-column: 2;
  margin: 0;
  color: var(--lr-muted);
  font-size: 16px;
  line-height: 1.72;
}

.celebration-impact-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(16px, 2vw, 22px);
}

.celebration-impact-card {
  display: grid;
  grid-template-columns: 1fr;
  overflow: hidden;
  border: 1px solid rgba(94, 130, 171, 0.18);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.74);
  box-shadow: 0 24px 62px rgba(24, 34, 45, 0.08);
  transition:
    border-color 260ms ease-out,
    box-shadow 260ms ease-out,
    transform 260ms ease-out;
}

.celebration-impact-card img {
  width: 100%;
  height: clamp(280px, 28vw, 390px);
  object-fit: cover;
  object-position: center;
  filter: saturate(0.96);
  transition: transform 620ms var(--ease);
}

.celebration-impact-card div {
  display: grid;
  align-content: start;
  gap: 16px;
  padding: clamp(24px, 3.2vw, 36px);
}

.celebration-impact-card h4 {
  margin: 0;
  color: var(--lr-ink);
  font-size: clamp(22px, 2.2vw, 30px);
  font-weight: 400;
  line-height: 1.08;
}

.celebration-impact-card p {
  max-width: 520px;
  margin: 0;
  color: var(--lr-muted);
  font-size: 15px;
  line-height: 1.66;
}

.celebration-impact-card strong {
  width: fit-content;
  margin-top: 4px;
  border-bottom: 1px solid rgba(94, 130, 171, 0.46);
  color: var(--brand-blue);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.08em;
  line-height: 1.3;
  text-transform: uppercase;
}

.celebration-impact-card:hover {
  border-color: rgba(94, 130, 171, 0.34);
  box-shadow: 0 32px 78px rgba(24, 34, 45, 0.12);
  transform: translateY(-4px);
}

.celebration-impact-card:hover img {
  transform: scale(1.055);
}

.food-gallery-section {
  position: relative;
  overflow: hidden;
  padding: clamp(86px, 12vw, 150px) clamp(20px, 5vw, 64px);
  background:
    radial-gradient(circle at 84% 14%, rgba(206, 216, 231, 0.72), transparent 28%),
    linear-gradient(180deg, #f7f4ee 0%, #eef3f8 100%);
  color: var(--lr-ink);
}

.food-gallery-head {
  display: grid;
  grid-template-columns: minmax(0, 0.86fr) minmax(300px, 0.54fr);
  gap: clamp(26px, 6vw, 86px);
  align-items: end;
  width: min(1180px, 100%);
  margin: 0 auto clamp(38px, 6vw, 70px);
}

.food-gallery-head span,
.food-gallery-card span {
  color: var(--brand-blue);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.food-gallery-head h2 {
  grid-column: 1;
  margin: 0;
  color: var(--lr-ink);
  font-size: clamp(32px, 4.6vw, 60px);
  font-weight: 400;
  line-height: 1.06;
  text-wrap: balance;
}

.food-gallery-head p {
  grid-column: 2;
  margin: 0;
  color: var(--lr-muted);
  font-size: 16px;
  line-height: 1.72;
}

.food-gallery-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(280px, 0.85fr);
  grid-auto-rows: minmax(260px, auto);
  gap: clamp(14px, 2vw, 22px);
  width: min(1180px, 100%);
  margin: 0 auto;
}

.food-gallery-card {
  position: relative;
  min-height: 360px;
  margin: 0;
  overflow: hidden;
  border-radius: 8px;
  background: #dce6ef;
  box-shadow: 0 24px 60px rgba(24, 34, 45, 0.1);
  isolation: isolate;
}

.food-gallery-card-large {
  grid-row: span 2;
}

.food-gallery-card-wide {
  grid-column: span 2;
}

.food-gallery-card img {
  position: absolute;
  inset: 0;
  z-index: -2;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.03);
  transition:
    filter 520ms ease-out,
    transform 720ms var(--ease);
}

.food-gallery-card::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    linear-gradient(180deg, rgba(12, 22, 31, 0) 30%, rgba(12, 22, 31, 0.72) 100%);
}

.food-gallery-card figcaption {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  display: grid;
  gap: 10px;
  padding: clamp(20px, 3vw, 32px);
}

.food-gallery-card strong {
  max-width: 420px;
  color: var(--white);
  font-size: clamp(22px, 2.4vw, 34px);
  font-weight: 400;
  line-height: 1.08;
}

.food-gallery-card:hover img {
  filter: saturate(1.08) contrast(1.02);
  transform: scale(1.08);
}

.lr-editorial-section {
  --media-x: 0px;
  --media-y: 0px;
  --copy-x: 0px;
  display: grid;
  grid-template-columns: minmax(0, 1.02fr) minmax(320px, 0.82fr);
  gap: clamp(38px, 7vw, 112px);
  align-items: center;
  padding: clamp(92px, 12vw, 156px) clamp(20px, 5vw, 64px);
  background:
    radial-gradient(circle at 12% 24%, rgba(255, 255, 255, 0.88), transparent 34%),
    linear-gradient(180deg, #f7f4ee 0%, #eef3f8 100%);
  color: var(--lr-ink);
}

.lr-editorial-section-flipped .lr-editorial-media {
  order: 2;
}

.lr-editorial-media {
  position: relative;
  min-height: 500px;
  overflow: hidden;
  border-radius: 4px;
  background: var(--brand-light-blue);
  box-shadow: 0 34px 80px rgba(24, 34, 45, 0.12);
  transition:
    box-shadow 520ms ease-out,
    transform 520ms var(--ease);
}

.lr-editorial-media::before {
  content: "";
  position: absolute;
  inset: auto 22px -22px 22px;
  z-index: 2;
  height: 44px;
  border-top: 1px solid rgba(255, 255, 255, 0.54);
  background: linear-gradient(180deg, rgba(24, 34, 45, 0), rgba(24, 34, 45, 0.16));
  pointer-events: none;
  opacity: 0.76;
  transition: opacity 420ms ease-out;
}

.lr-editorial-media::after {
  content: "";
  position: absolute;
  right: -18px;
  bottom: 24px;
  z-index: -1;
  width: 42%;
  height: 46%;
  border: 1px solid rgba(198, 113, 83, 0.34);
  pointer-events: none;
}

.lr-editorial-media img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.045) translate3d(var(--media-x), var(--media-y), 0);
  transition: transform 620ms var(--ease);
  will-change: transform;
}

.lr-editorial-copy {
  display: grid;
  position: relative;
  gap: 22px;
  max-width: 620px;
  padding: clamp(18px, 2vw, 28px) 0 clamp(18px, 2vw, 28px) clamp(24px, 3vw, 42px);
}

.lr-editorial-copy::before {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  width: 1px;
  background: linear-gradient(180deg, rgba(198, 113, 83, 0.58), rgba(94, 130, 171, 0.18));
  transform: scaleY(0.62);
  transform-origin: top center;
  transition:
    opacity 520ms ease-out,
    transform 720ms var(--ease);
}

.lr-editorial-copy.reveal.is-visible {
  transform: translate3d(var(--copy-x), 0, 0);
  transition:
    opacity 700ms ease-out,
    transform 700ms ease-out;
}

.lr-editorial-copy.reveal.is-visible::before {
  transform: scaleY(1);
}

.lr-editorial-section:hover .lr-editorial-media {
  box-shadow: 0 42px 96px rgba(24, 34, 45, 0.16);
  transform: translateY(-4px);
}

.lr-editorial-section:hover .lr-editorial-media::before {
  opacity: 1;
}

.lr-feature-list-section,
.lr-venue-mosaic {
  padding: clamp(86px, 12vw, 150px) clamp(20px, 5vw, 64px);
  background: #132021;
  color: var(--white);
}

.lr-feature-list-head {
  display: grid;
  gap: 18px;
  width: min(940px, 100%);
  margin: 0 auto 36px;
}

.lr-feature-list-head span,
.lr-venue-card span {
  color: var(--brand-light-blue);
}

.lr-feature-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
  width: min(1180px, 100%);
  margin: 0 auto;
}

.lr-feature-list article {
  overflow: hidden;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.06);
}

.lr-feature-list img {
  display: block;
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
}

.lr-feature-list article div {
  display: grid;
  gap: 14px;
  padding: clamp(22px, 4vw, 34px);
}

.lr-feature-list h3 {
  margin: 0;
  color: var(--white);
  font-size: clamp(24px, 3vw, 36px);
  font-weight: 400;
  line-height: 1.12;
}

.lr-feature-list p,
.lr-venue-card p {
  color: rgba(255, 255, 255, 0.72);
}

.lr-venue-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  grid-auto-rows: minmax(270px, auto);
  gap: 18px;
  width: min(1180px, 100%);
  margin: 0 auto;
}

.lr-venue-card {
  position: relative;
  min-height: 320px;
  overflow: hidden;
  border-radius: 8px;
  background: #233332;
  color: var(--white);
}

.lr-venue-card.large {
  grid-column: span 2;
  grid-row: span 2;
}

.lr-venue-card img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 600ms ease-out;
}

.lr-venue-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(8, 17, 17, 0.05), rgba(8, 17, 17, 0.76));
}

.lr-venue-card div {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 1;
  display: grid;
  gap: 10px;
  padding: clamp(20px, 3vw, 30px);
}

.lr-venue-card h3 {
  margin: 0;
  color: var(--white);
  font-size: clamp(20px, 2.4vw, 34px);
  font-weight: 400;
  line-height: 1.12;
}

.lr-venue-card:hover img {
  transform: scale(1.04);
}

.lr-suzhou-directory {
  position: relative;
  overflow: hidden;
  padding: clamp(86px, 12vw, 152px) clamp(20px, 5vw, 64px);
  background:
    linear-gradient(90deg, rgba(24, 34, 45, 0.055) 1px, transparent 1px) 0 0 / 25% 100%,
    radial-gradient(circle at 92% 8%, rgba(198, 113, 83, 0.12), transparent 30%),
    linear-gradient(180deg, #f8f5ef 0%, #f4f1e9 48%, #f8f5ef 100%);
  color: var(--lr-ink);
  counter-reset: suzhou-space;
}

.lr-suzhou-directory .lr-feature-list-head {
  display: grid;
  grid-template-columns: minmax(260px, 0.56fr) minmax(360px, 0.9fr);
  gap: clamp(28px, 6vw, 92px);
  width: min(1180px, 100%);
  margin-bottom: clamp(44px, 6vw, 76px);
  margin-right: auto;
  margin-left: auto;
  padding-top: 1px;
}

.lr-suzhou-directory .lr-feature-list-head span {
  color: var(--lr-coral);
}

.lr-suzhou-space {
  counter-increment: suzhou-space;
  position: relative;
  display: grid;
  grid-template-columns: minmax(340px, 0.86fr) minmax(280px, 0.64fr);
  gap: clamp(28px, 5vw, 76px);
  width: min(1180px, 100%);
  margin: 0 auto;
  align-items: center;
  border-top: 1px solid rgba(24, 34, 45, 0.12);
  padding: clamp(34px, 5.4vw, 70px) 0;
}

.lr-suzhou-space:last-child {
  border-bottom: 1px solid rgba(24, 34, 45, 0.12);
}

.lr-suzhou-space::before {
  content: counter(suzhou-space, decimal-leading-zero);
  position: absolute;
  top: clamp(34px, 5.4vw, 70px);
  left: 0;
  color: rgba(24, 34, 45, 0.18);
  font-size: clamp(42px, 7vw, 96px);
  font-weight: 300;
  line-height: 0.82;
  pointer-events: none;
}

.lr-suzhou-space:nth-of-type(even) figure {
  order: 2;
}

.lr-suzhou-space:nth-of-type(even) div {
  justify-self: start;
}

.lr-suzhou-space:nth-of-type(3n) {
  grid-template-columns: minmax(280px, 0.66fr) minmax(360px, 0.84fr);
}

.lr-suzhou-space:nth-of-type(3n) figure {
  aspect-ratio: 16 / 10;
}

.lr-suzhou-space figure {
  position: relative;
  aspect-ratio: 4 / 3;
  height: auto;
  margin: 0;
  overflow: hidden;
  border-radius: 4px;
  background: transparent;
}

.lr-suzhou-space figure::after {
  content: "";
  position: absolute;
  inset: 0;
  border: 1px solid rgba(255, 255, 255, 0.34);
  pointer-events: none;
  opacity: 0;
  transform: scale(0.98);
  transition:
    opacity 420ms ease-out,
    transform 520ms var(--ease);
}

.lr-suzhou-space img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition:
    filter 520ms ease-out,
    transform 700ms ease-out;
}

.lr-suzhou-space figure > img {
  position: absolute;
  inset: 0;
  min-height: 100%;
}

.lr-suzhou-space div {
  display: grid;
  max-width: 500px;
  gap: 15px;
  padding-top: clamp(38px, 6vw, 86px);
}

.lr-suzhou-space span {
  color: var(--lr-coral);
  font-size: var(--type-eyebrow);
  font-weight: 400;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.lr-suzhou-space h2 {
  margin: 0;
  color: var(--lr-ink);
  font-size: clamp(28px, 3.2vw, 46px);
  font-weight: 400;
  line-height: 1.06;
  text-wrap: balance;
}

.lr-suzhou-space p {
  margin: 0;
  color: var(--lr-muted);
  font-size: var(--type-body);
  font-weight: 300;
  line-height: 1.72;
}

.lr-suzhou-space:hover figure::after,
.lr-suzhou-space:focus-within figure::after {
  opacity: 1;
  transform: scale(1);
}

.lr-suzhou-space:hover img {
  filter: saturate(1.04) contrast(1.02);
  transform: scale(1.035);
}

.lr-suzhou-spaces {
  background:
    radial-gradient(circle at 14% 18%, rgba(255, 255, 255, 0.82), transparent 26%),
    linear-gradient(180deg, #eef3f8 0%, #f7f4ee 100%);
}

.lr-suzhou-spaces .lr-space-rail {
  grid-auto-columns: minmax(360px, 520px);
}

.lr-suzhou-spaces .lr-space-card {
  min-height: 500px;
}

.lr-next-destination {
  position: relative;
  min-height: 76vh;
  overflow: hidden;
  isolation: isolate;
  background: var(--lr-night);
}

.lr-next-destination > img {
  position: absolute;
  inset: 0;
  z-index: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.lr-next-destination::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(90deg, rgba(11, 20, 21, 0.76), rgba(11, 20, 21, 0.12) 56%, rgba(11, 20, 21, 0.52)),
    linear-gradient(180deg, rgba(11, 20, 21, 0.05), rgba(11, 20, 21, 0.62));
}

.lr-next-content {
  position: relative;
  z-index: 2;
  display: grid;
  min-height: 76vh;
  width: min(920px, calc(100% - 48px));
  margin: 0 auto;
  align-content: center;
  justify-items: center;
  gap: 20px;
  color: var(--white);
  text-align: center;
}

.lr-next-content span {
  color: rgba(255, 255, 255, 0.74);
}

.lr-next-content a {
  border-radius: 12px;
  background: var(--white);
  color: var(--lr-night);
  padding: 12px 18px;
  font-size: 14px;
  font-weight: 800;
  transition: transform 180ms ease-out, background 180ms ease-out;
}

.lr-next-content a:hover {
  background: rgba(255, 255, 255, 0.9);
  transform: translateY(-1px);
}

.sangha-page {
  --lr-sage: var(--brand-blue);
  --lr-coral: #a96f50;
  --lr-night: #121b1b;
}

.sangha-hero {
  position: relative;
  min-height: 100vh;
  min-height: 100svh;
  overflow: hidden;
  isolation: isolate;
  background: var(--lr-night);
}

.sangha-hero > img {
  position: absolute;
  inset: 0;
  z-index: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.04);
  animation: lr-kenburns 16s ease-out forwards;
}

.sangha-hero-shade {
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(90deg, rgba(12, 21, 21, 0.78), rgba(12, 21, 21, 0.2) 58%, rgba(12, 21, 21, 0.52)),
    linear-gradient(180deg, rgba(12, 21, 21, 0.04), rgba(12, 21, 21, 0.68));
}

.sangha-hero-content {
  position: relative;
  z-index: 2;
  display: grid;
  min-height: 100vh;
  min-height: 100svh;
  width: min(1180px, calc(100% - 48px));
  margin: 0 auto;
  align-content: end;
  gap: 20px;
  padding: 130px 0 72px;
  color: var(--white);
}

.sangha-hero h1 {
  max-width: 1080px;
  margin: 0;
  color: var(--white);
  font-size: clamp(48px, 8vw, 106px);
  font-weight: 400;
  letter-spacing: 0;
  line-height: 1;
  text-wrap: balance;
}

.sangha-subpages,
.sangha-habits,
.sangha-packages {
  padding: clamp(86px, 12vw, 150px) clamp(20px, 5vw, 64px);
  background: #132021;
  color: var(--white);
}

.sangha-subpage-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
  width: min(1180px, 100%);
  margin: 0 auto;
}

.sangha-subpage-card {
  position: relative;
  min-height: 640px;
  overflow: hidden;
  border-radius: 8px;
  background: #203031;
  color: var(--white);
}

.sangha-subpage-card img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 700ms ease-out;
}

.sangha-subpage-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(8, 17, 17, 0.03), rgba(8, 17, 17, 0.82));
}

.sangha-subpage-card div {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 1;
  display: grid;
  gap: 14px;
  padding: clamp(24px, 4vw, 38px);
}

.sangha-subpage-card span,
.sangha-habit-grid span {
  color: var(--brand-light-blue);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.sangha-subpage-card h3 {
  max-width: 560px;
  margin: 0;
  color: var(--white);
  font-size: clamp(28px, 4vw, 48px);
  font-weight: 400;
  line-height: 1.08;
}

.sangha-subpage-card p {
  max-width: 560px;
  margin: 0;
  color: rgba(255, 255, 255, 0.72);
  font-size: 15px;
  line-height: 1.7;
}

.sangha-subpage-card a {
  width: fit-content;
  border-radius: 12px;
  background: var(--white);
  color: var(--lr-night);
  padding: 12px 18px;
  font-size: 14px;
  font-weight: 800;
}

.sangha-subpage-card:hover img {
  transform: scale(1.05);
}

.sangha-habits {
  background: linear-gradient(180deg, #f7f4ee, #eef3f8);
  color: var(--lr-ink);
}

.sangha-habits .lr-feature-list-head span {
  color: var(--lr-sage);
}

.sangha-habit-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1px;
  width: min(1180px, 100%);
  margin: 0 auto;
  background: rgba(24, 34, 45, 0.13);
}

.sangha-habit-grid article {
  position: relative;
  display: grid;
  min-height: 300px;
  align-content: start;
  gap: 12px;
  overflow: hidden;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.78), rgba(255, 255, 255, 0.45));
  padding: clamp(22px, 3vw, 32px);
  transition:
    background 260ms ease-out,
    transform 260ms ease-out;
}

.sangha-habit-grid article::after {
  content: "";
  position: absolute;
  inset: auto 22px 20px auto;
  width: 76px;
  height: 76px;
  border-radius: 999px;
  background: rgba(94, 130, 171, 0.1);
  pointer-events: none;
}

.sangha-habit-grid span {
  color: var(--lr-coral);
}

.sangha-habit-grid img {
  width: clamp(42px, 5vw, 66px);
  height: clamp(42px, 5vw, 66px);
  object-fit: contain;
  margin: 8px 0 10px;
  opacity: 0.9;
  transition:
    opacity 260ms ease-out,
    transform 320ms var(--ease);
}

.sangha-habit-grid h3 {
  margin: 0;
  color: var(--lr-ink);
  font-size: clamp(22px, 2.4vw, 32px);
  font-weight: 400;
  line-height: 1.12;
}

.sangha-habit-grid p {
  margin: 0;
  color: var(--lr-muted);
  font-size: 15px;
  line-height: 1.65;
}

.sangha-habit-grid article:hover {
  background: rgba(255, 255, 255, 0.86);
  transform: translateY(-3px);
}

.sangha-habit-grid article:hover img {
  opacity: 1;
  transform: translateY(-2px) scale(1.04);
}

.sangha-packages {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at 10% 8%, rgba(206, 216, 231, 0.76), transparent 30%),
    linear-gradient(135deg, #f8fafc 0%, #eef3f8 48%, #f7f4ee 100%);
  color: var(--lr-ink);
}

.sangha-packages::before {
  content: "";
  position: absolute;
  inset: 42px 4vw auto;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(94, 130, 171, 0.42), transparent);
}

.sangha-package-head {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(280px, 0.52fr);
  gap: clamp(24px, 5vw, 72px);
  align-items: end;
  width: min(1180px, 100%);
  margin: 0 auto clamp(32px, 5vw, 58px);
}

.sangha-package-head span,
.sangha-package-meta span,
.sangha-package-note span {
  color: var(--brand-blue);
  font-size: var(--type-eyebrow);
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.sangha-package-head h2 {
  grid-column: 1;
  max-width: 760px;
  margin: 0;
  color: var(--lr-ink);
  font-size: var(--type-section-title);
  font-weight: 400;
  line-height: 1.04;
}

.sangha-package-head p {
  grid-column: 2;
  grid-row: 1 / span 2;
  margin: 0;
  color: var(--lr-muted);
  font-size: var(--type-body);
  font-weight: 300;
  line-height: 1.72;
}

.sangha-package-layout {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
  width: min(1180px, 100%);
  margin: 0 auto;
}

.sangha-package-stack {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 20px;
}

.sangha-package-stack .sangha-package-card {
  min-height: 100%;
}

.sangha-package-card {
  position: relative;
  display: grid;
  align-content: space-between;
  min-height: 318px;
  overflow: hidden;
  border: 1px solid rgba(94, 130, 171, 0.18);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.62);
  box-shadow: 0 28px 70px rgba(24, 34, 45, 0.08);
  padding: clamp(24px, 4vw, 40px);
  transition:
    border-color 260ms ease-out,
    box-shadow 260ms ease-out,
    transform 260ms ease-out;
}

.sangha-package-card::before {
  content: "";
  position: absolute;
  inset: 0 0 auto;
  height: 4px;
  background: linear-gradient(90deg, var(--brand-blue), var(--brand-light-blue));
  opacity: 0.9;
}

.sangha-package-card::after {
  content: "";
  position: absolute;
  right: -72px;
  bottom: -86px;
  width: 230px;
  height: 230px;
  border: 1px solid rgba(94, 130, 171, 0.18);
  border-radius: 50%;
  pointer-events: none;
}

.sangha-package-card.featured {
  grid-template-columns: minmax(360px, 0.86fr) minmax(0, 1fr);
  min-height: 0;
  padding: 0;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.78), rgba(255, 255, 255, 0.58)),
    linear-gradient(135deg, rgba(206, 216, 231, 0.64), transparent);
}

.sangha-package-image {
  position: relative;
  z-index: 1;
  width: 100%;
  height: clamp(260px, 31vw, 400px);
  margin: 0;
  overflow: hidden;
  border-radius: 8px 8px 0 0;
}

.sangha-package-card.featured .sangha-package-image {
  grid-row: 1 / span 2;
  height: 100%;
  min-height: 620px;
  border-radius: 8px 0 0 8px;
}

.sangha-package-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 700ms ease-out;
}

.sangha-package-image.compact {
  height: clamp(210px, 20vw, 270px);
  margin: calc(clamp(24px, 4vw, 40px) * -1) calc(clamp(24px, 4vw, 40px) * -1) 0;
  width: calc(100% + (clamp(24px, 4vw, 40px) * 2));
}

.sangha-package-content {
  position: relative;
  z-index: 1;
  padding: clamp(24px, 4vw, 40px);
}

.sangha-package-content.compact {
  padding: 0;
}

.sangha-package-meta,
.sangha-package-foot {
  position: relative;
  z-index: 1;
  display: flex;
  justify-content: space-between;
  gap: 18px;
  align-items: center;
}

.sangha-package-meta strong {
  color: rgba(24, 34, 45, 0.62);
  font-size: var(--type-ui);
  font-weight: 300;
}

.sangha-package-card h3 {
  position: relative;
  z-index: 1;
  max-width: 620px;
  margin: clamp(24px, 4vw, 46px) 0 16px;
  color: var(--lr-ink);
  font-size: clamp(28px, 4vw, 52px);
  font-weight: 400;
  letter-spacing: 0;
  line-height: 1.02;
}

.sangha-package-stack .sangha-package-card h3 {
  margin-top: 28px;
  font-size: clamp(24px, 2.6vw, 34px);
}

.sangha-package-card p {
  position: relative;
  z-index: 1;
  max-width: 620px;
  margin: 0;
  color: var(--lr-muted);
  font-size: var(--type-body);
  font-weight: 300;
  line-height: 1.68;
}

.sangha-package-card dl {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1px;
  margin: clamp(28px, 5vw, 62px) 0 0;
  background: rgba(94, 130, 171, 0.16);
}

.sangha-package-card dl div {
  background: rgba(255, 255, 255, 0.56);
  padding: 20px;
}

.sangha-package-stack .sangha-package-card dl {
  grid-template-columns: 1fr;
  margin-top: 24px;
}

.sangha-package-stack .sangha-package-card dl div {
  padding: 16px 18px;
}

.sangha-package-card dt {
  margin: 0 0 8px;
  color: var(--brand-blue);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.sangha-package-card dd {
  margin: 0;
  color: var(--lr-muted);
  font-size: var(--type-ui);
  font-weight: 300;
  line-height: 1.56;
}

.sangha-package-foot {
  margin-top: clamp(28px, 4vw, 46px);
  padding-top: 22px;
  border-top: 1px solid rgba(94, 130, 171, 0.18);
}

.sangha-package-card.featured .sangha-package-foot {
  align-self: end;
  margin: 0 clamp(24px, 4vw, 40px) clamp(24px, 4vw, 40px);
}

.sangha-package-foot > span {
  color: var(--lr-ink);
  font-size: var(--type-ui);
  font-weight: 300;
}

.sangha-package-foot a {
  flex: 0 0 auto;
  border-radius: 999px;
  background: var(--brand-blue);
  color: var(--white);
  padding: 12px 20px;
  font-size: var(--type-ui);
  font-weight: 800;
  transition:
    background 220ms ease-out,
    transform 220ms ease-out;
}

.sangha-package-card:hover {
  border-color: rgba(94, 130, 171, 0.34);
  box-shadow: 0 34px 86px rgba(24, 34, 45, 0.12);
  transform: translateY(-3px);
}

.sangha-package-card.featured:hover .sangha-package-image img {
  transform: scale(1.035);
}

.sangha-package-foot a:hover {
  background: #456f9b;
  transform: translateY(-2px);
}

.sangha-package-note {
  display: flex;
  justify-content: space-between;
  gap: 24px;
  width: min(1180px, 100%);
  margin: 18px auto 0;
  border-top: 1px solid rgba(94, 130, 171, 0.18);
  padding-top: 22px;
}

.sangha-package-note p {
  max-width: 680px;
  margin: 0;
  color: var(--lr-muted);
  font-size: var(--type-ui);
  font-weight: 300;
  line-height: 1.6;
}

@keyframes lr-kenburns {
  from {
    transform: scale(1.04);
  }

  to {
    transform: scale(1);
  }
}

@media (max-width: 1023px) {
  .lr-scroll-card {
    display: none;
  }

  .lr-intro-band,
  .lr-destination-panel,
  .lr-detail-intro,
  .lr-editorial-section {
    grid-template-columns: 1fr;
  }

  .lr-intro-copy {
    position: relative;
    top: auto;
  }

  .lr-panel-media,
  .lr-editorial-media {
    min-height: 420px;
  }

  .lr-editorial-section-flipped .lr-editorial-media {
    order: 0;
  }

  .lr-detail-stats,
  .lr-feature-list,
  .celebration-principles-head,
  .celebration-program-layout,
  .celebration-impact-week,
  .food-gallery-head,
  .residence-pillars-head,
  .residence-services,
  .at-one-core-head,
  .contact-locations-head,
  .contact-follow-copy,
  .contact-location-grid,
  .site-footer,
  .sangha-subpage-grid {
    grid-template-columns: 1fr;
  }

  .celebration-principles-head p {
    grid-column: 1;
  }

  .food-gallery-head p {
    grid-column: 1;
  }

  .at-one-core-head p {
    grid-column: 1;
    margin-top: 0;
  }

  .contact-locations-head p {
    grid-column: 1;
    margin-top: 0;
  }

  .contact-follow-grid {
    grid-template-columns: 1fr;
  }

  .contact-follow-grid article,
  .contact-follow-grid a {
    min-height: auto;
    border-right: 0;
    border-bottom: 1px solid rgba(57, 88, 120, 0.14);
  }

  .contact-follow-grid article:last-child,
  .contact-follow-grid a:last-child {
    border-bottom: 0;
  }

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

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

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

  .celebration-principle-grid article:nth-child(2n) {
    border-right: 0;
  }

  .celebration-program-feature {
    grid-row: auto;
    min-height: 520px;
  }

  .celebration-impact-grid {
    grid-template-columns: 1fr;
  }

  .food-gallery-grid {
    grid-template-columns: minmax(0, 1.1fr) minmax(260px, 0.9fr);
  }

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

  .residence-pillar-grid article:nth-child(2n) {
    border-right: 0;
  }

  .residence-pillar-grid article:last-child {
    grid-column: 1 / -1;
    min-height: 260px;
    border-top: 1px solid rgba(57, 88, 120, 0.14);
  }

  .residence-services-copy {
    position: relative;
    top: auto;
  }

  .at-one-core-grid {
    grid-template-columns: 1fr;
  }

  .at-one-core-card,
  .at-one-core-card:nth-child(even) {
    grid-template-columns: minmax(0, 0.92fr) minmax(320px, 0.74fr);
  }

  .celebration-impact-head {
    grid-template-columns: 1fr;
  }

  .celebration-impact-head p {
    grid-column: 1;
  }

  .lr-suzhou-directory .lr-feature-list-head {
    grid-template-columns: 1fr;
  }

  .lr-suzhou-space {
    grid-template-columns: 1fr;
    gap: 26px;
  }

  .lr-suzhou-space:nth-of-type(even) figure {
    order: 0;
  }

  .lr-suzhou-space:nth-of-type(3n) {
    grid-template-columns: 1fr;
  }

  .lr-suzhou-space div {
    max-width: 680px;
    padding-top: 0;
  }

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

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

@media (max-width: 767px) {
  .lr-hero-content {
    width: min(100% - 36px, 640px);
    padding-bottom: 50px;
  }

  .lr-hero h1 {
    font-size: clamp(46px, 14vw, 76px);
  }

  .lr-intro-band,
  .lr-destinations {
    padding-right: 18px;
    padding-left: 18px;
  }

  .lr-principle,
  .lr-panel-copy dl div {
    grid-template-columns: 1fr;
  }

  .lr-tabs {
    width: 100%;
  }

  .lr-tabs button {
    flex: 1;
    min-width: 0;
  }

  .lr-panel-media {
    min-height: 320px;
  }

  .lr-detail-hero-content {
    width: min(100% - 36px, 640px);
    padding-bottom: 54px;
  }

  .lr-detail-hero h1 {
    font-size: clamp(42px, 13vw, 72px);
  }

  .lr-detail-intro,
  .lr-editorial-section,
  .lr-feature-list-section,
  .lr-venue-mosaic,
  .celebration-principles,
  .celebration-programs,
  .food-gallery-section,
  .residence-pillars,
  .residence-services,
  .at-one-core-services,
  .contact-locations,
  .contact-follow,
  .lr-suzhou-directory,
  .sangha-subpages,
  .sangha-habits,
  .sangha-packages {
    padding-right: 18px;
    padding-left: 18px;
  }

  .lr-detail-stats {
    padding-right: 18px;
    padding-left: 18px;
  }

  .lr-editorial-media {
    min-height: 340px;
  }

  .celebration-principle-grid {
    grid-template-columns: 1fr;
  }

  .celebration-principle-grid article,
  .celebration-principle-grid article:nth-child(2n) {
    min-height: auto;
    border-right: 0;
    border-bottom: 1px solid rgba(57, 88, 120, 0.16);
  }

  .celebration-principle-grid article:last-child {
    border-bottom: 0;
  }

  .celebration-program-card,
  .celebration-program-feature {
    min-height: 440px;
  }

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

  .celebration-impact-card img {
    height: 240px;
  }

  .food-gallery-grid {
    grid-template-columns: 1fr;
  }

  .residence-pillar-grid {
    grid-template-columns: 1fr;
  }

  .residence-pillar-grid article,
  .residence-pillar-grid article:nth-child(2n),
  .residence-pillar-grid article:last-child {
    grid-column: auto;
    min-height: auto;
    border-right: 0;
    border-bottom: 1px solid rgba(57, 88, 120, 0.14);
  }

  .residence-pillar-grid article:last-child {
    border-bottom: 0;
  }

  .residence-service-list a {
    grid-template-columns: 1fr;
    min-height: auto;
  }

  .residence-service-list a::after {
    grid-column: 1;
    justify-self: start;
    margin-top: 0;
    opacity: 1;
    transform: none;
  }

  .at-one-core-card {
    grid-template-columns: 1fr;
    min-height: auto;
  }

  .at-one-core-card:nth-child(even) {
    grid-template-columns: 1fr;
  }

  .at-one-core-card:nth-child(even) figure {
    order: 0;
  }

  .at-one-core-card figure {
    min-height: 300px;
  }

  .at-one-core-card div {
    max-width: none;
    padding: 28px;
  }

  .contact-hero-content {
    width: min(100% - 36px, 640px);
    padding-bottom: 52px;
  }

  .contact-hero h1 {
    font-size: clamp(38px, 11vw, 58px);
  }

  .contact-location-card {
    min-height: auto;
    padding: 28px;
  }

  .contact-location-card dl div {
    grid-template-columns: 1fr;
    gap: 8px;
  }

  .contact-follow-grid article,
  .contact-follow-grid a {
    padding: 28px;
  }

  .site-footer {
    width: 100%;
    padding: 48px 16px 30px;
  }

  .closing-footer-scene .site-footer {
    padding-top: 76px;
  }

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

  .site-footer-bottom {
    align-items: flex-start;
    flex-direction: column;
  }

  .site-footer-bottom div {
    justify-content: flex-start;
  }

  .site-footer-links a:hover,
  .site-footer-bottom a:hover {
    transform: none;
  }

  .food-gallery-card,
  .food-gallery-card-large,
  .food-gallery-card-wide {
    grid-column: auto;
    grid-row: auto;
    min-height: 360px;
  }

  .lr-venue-grid {
    grid-template-columns: 1fr;
  }

  .lr-venue-card.large {
    grid-column: auto;
    grid-row: auto;
  }

  .sangha-hero-content {
    width: min(100% - 36px, 640px);
    padding-bottom: 52px;
  }

  .sangha-hero h1 {
    font-size: clamp(42px, 13vw, 74px);
  }

  .sangha-subpage-card {
    min-height: 540px;
  }

  .sangha-habit-grid {
    grid-template-columns: 1fr;
  }

  .sangha-habit-grid article {
    min-height: 260px;
  }

  .sangha-package-head,
  .sangha-package-layout {
    grid-template-columns: 1fr;
  }

  .sangha-package-head p {
    grid-column: auto;
    grid-row: auto;
  }

  .sangha-package-card.featured {
    min-height: 520px;
  }

  .sangha-package-card dl {
    grid-template-columns: 1fr;
  }

  .sangha-package-note {
    flex-direction: column;
  }

  .lr-spaces-top {
    align-items: start;
    flex-direction: column;
  }

  .lr-space-rail {
    grid-auto-columns: minmax(270px, 82vw);
  }

  .lr-rail-progress {
    width: calc(100% - 36px);
  }

  .lr-space-card {
    min-height: 440px;
  }

  .lr-shanghai-spaces .lr-space-rail {
    grid-auto-columns: minmax(270px, 82vw);
  }

  .lr-shanghai-spaces .lr-space-card {
    min-height: 460px;
  }

  .lr-suzhou-space {
    padding: 38px 0;
  }

  .lr-suzhou-space figure {
    aspect-ratio: 1.12 / 1;
  }

  .lr-suzhou-space::before {
    top: 38px;
    font-size: clamp(38px, 18vw, 70px);
  }

  .lr-suzhou-space span,
  .lr-suzhou-space h2,
  .lr-suzhou-space p {
    position: relative;
    z-index: 1;
  }

  .lr-suzhou-space h2 {
    font-size: clamp(25px, 7vw, 36px);
  }

  .lr-suzhou-spaces .lr-space-rail {
    grid-auto-columns: minmax(270px, 82vw);
  }

  .lr-suzhou-spaces .lr-space-card {
    min-height: 440px;
  }
}

@media (max-width: 980px) {
  .sangha-package-card.featured,
  .sangha-package-stack {
    grid-template-columns: 1fr;
  }

  .sangha-package-card.featured .sangha-package-image {
    grid-row: auto;
    height: clamp(260px, 42vw, 380px);
    min-height: 0;
    border-radius: 8px 8px 0 0;
  }
}

body {
  font-family: "Graphik", Arial, sans-serif;
  font-weight: 300;
}

body h1,
body h2,
body h3,
body h4,
body h5,
body h6,
.hero-copy h1,
.about-statement,
.system-lead h2,
.features-intro h2,
.feature-card h3,
.faq-panel h3,
.closing-content h2,
.lr-hero h1,
.lr-intro-copy h2,
.lr-principle h3,
.lr-section-head h2,
.lr-panel-copy h3,
.lr-spaces-top h2,
.lr-space-card h3,
.lr-reserve-content h2,
.lr-detail-hero h1,
.lr-detail-statement h2,
.lr-feature-list-head h2,
.lr-editorial-copy h2,
.lr-next-content h2,
.lr-feature-list h3,
.lr-venue-card h3,
.sangha-hero h1,
.sangha-subpage-card h3,
.sangha-habit-grid h3,
.sangha-package-head h2,
.sangha-package-card h3 {
  font-family: "Graphik", Arial, sans-serif;
  font-weight: 400;
}

body p,
body dd,
body li,
body figcaption,
.hero-copy p,
.about-top p,
.system-lead p,
.system-node small,
.feature-cta p,
.feature-card p,
.faq-panel p,
.closing-content p,
.lr-principle p,
.lr-panel-copy p,
.lr-panel-copy dd,
.lr-detail-copy p,
.lr-editorial-copy p,
.lr-feature-list p,
.lr-venue-card p,
.sangha-subpage-card p,
.sangha-habit-grid p,
.sangha-package-head p,
.sangha-package-card p,
.sangha-package-card dd,
.sangha-package-note p {
  font-family: "Graphik", Arial, sans-serif;
  font-weight: 300;
}

/* Editorial type scale inspired by no17: same Graphik style, larger reading rhythm. */
:root {
  --type-eyebrow: clamp(12px, 0.86vw, 13px);
  --type-ui: clamp(14px, 0.95vw, 15px);
  --type-body: clamp(16px, 1.12vw, 18px);
  --type-body-large: clamp(18px, 1.45vw, 22px);
  --type-card-title: clamp(22px, 2.05vw, 30px);
  --type-section-title: clamp(32px, 3.4vw, 48px);
  --type-hero-title: clamp(42px, 5.4vw, 72px);
}

body {
  font-size: var(--type-body);
  line-height: 1.58;
}

.menu-panel a,
.hero-cta span,
.hero-cta a,
.feature-cta a,
.feature-inline-link,
.feature-nav button,
.closing-content a,
.lr-hero-actions a,
.lr-reserve-content a,
.lr-tabs button,
.lr-panel-link,
.lr-next-content a,
.sangha-subpage-card a,
.sangha-package-foot a {
  font-size: var(--type-ui);
}

.system-lead span,
.system-node span,
.system-pathways span,
.feature-location,
.faq-panel span,
.closing-content p,
.lr-kicker,
.lr-intro-copy span,
.lr-section-head span,
.lr-panel-copy > span,
.lr-spaces-top span,
.lr-space-card span,
.lr-reserve-content span,
.lr-detail-statement span,
.lr-feature-list-head span,
.lr-editorial-copy span,
.lr-venue-card span,
.lr-next-content span,
.sangha-subpage-card span,
.sangha-habit-grid span,
.sangha-package-head span,
.sangha-package-meta span,
.sangha-package-note span {
  font-size: var(--type-eyebrow);
}

.hero-copy h1,
.lr-hero h1,
.lr-detail-hero h1,
.sangha-hero h1 {
  font-size: var(--type-hero-title);
  letter-spacing: 0;
  line-height: 0.98;
}

.about-statement,
.system-lead h2,
.features-intro h2,
.closing-content h2,
.lr-intro-copy h2,
.lr-section-head h2,
.lr-spaces-top h2,
.lr-reserve-content h2,
.lr-detail-statement h2,
.lr-feature-list-head h2,
.lr-editorial-copy h2,
.lr-next-content h2,
.sangha-package-head h2 {
  font-size: var(--type-section-title);
  letter-spacing: 0;
  line-height: 1.04;
}

.about-statement {
  max-width: 720px;
  font-size: clamp(24px, 2.45vw, 34px);
  line-height: 1.28;
}

.hero-copy h1 {
  max-width: 900px;
  font-size: clamp(40px, 4.7vw, 64px);
  line-height: 1.08;
}

.feature-card h3,
.faq-panel h3,
.lr-principle h3,
.lr-panel-copy h3,
.lr-space-card h3,
.lr-feature-list h3,
.lr-venue-card h3,
.sangha-subpage-card h3,
.sangha-habit-grid h3,
.sangha-package-card h3 {
  font-size: var(--type-card-title);
  font-weight: 400;
  letter-spacing: 0;
  line-height: 1.08;
}

.feature-card h3 {
  font-size: clamp(24px, 3vw, 38px);
  line-height: 1.08;
}

.hero-copy p,
.about-top p,
.system-lead p,
.feature-cta p,
.feature-card p,
.faq-panel p,
.lr-principle p,
.lr-panel-copy p,
.lr-detail-copy p,
.lr-editorial-copy p,
.lr-feature-list p,
.lr-venue-card p,
.sangha-subpage-card p,
.sangha-habit-grid p,
.sangha-package-head p,
.sangha-package-card p,
.sangha-package-card dd,
.sangha-package-note p {
  font-size: var(--type-body);
  font-weight: 300;
  line-height: 1.72;
}

.about-top p,
.hero-copy p {
  font-size: var(--type-body-large);
  line-height: 1.5;
}

.hero-copy p {
  max-width: 360px;
  margin: -8px 0 4px;
  font-size: clamp(15px, 1.35vw, 18px);
  font-weight: 300;
}

.closing-content h2 {
  max-width: 640px;
  font-size: clamp(34px, 4.4vw, 58px);
  letter-spacing: 0;
  line-height: 1.12;
}

@media (max-width: 767px) {
  html,
  body {
    overflow-x: clip;
  }

  .floating-nav {
    max-width: calc(100vw - 28px);
  }

  .menu-panel {
    max-width: calc(100vw - 28px);
  }

  .reveal {
    transform: translateY(18px);
  }

  .reveal.is-visible {
    transform: translate(0, 0);
  }

  .hero-section {
    background-position: center center;
  }

  .hero-video,
  .closing-footer-video {
    display: none;
  }

  .closing-footer-scene {
    background-color: #d9e3eb;
    background-image: none;
  }

  .closing-footer-scene .closing-section,
  .closing-footer-scene .site-footer {
    background: #d9e3eb url("assets/images/footer-mobile-poster.png") center / cover no-repeat;
  }

  .hero-copy h1 {
    font-size: clamp(40px, 12vw, 56px);
    line-height: 1.08;
  }

  .lr-hero,
  .lr-detail-hero,
  .contact-hero,
  .sangha-hero {
    min-height: 76svh;
  }

  .lr-hero-content,
  .lr-detail-hero-content,
  .contact-hero-content,
  .sangha-hero-content {
    min-height: 76svh;
    padding-top: 96px;
    padding-bottom: 42px;
  }

  .lr-hero h1,
  .lr-detail-hero h1,
  .contact-hero h1,
  .sangha-hero h1 {
    font-size: clamp(34px, 10.5vw, 50px);
    line-height: 1.04;
  }

  .site-footer {
    padding: 34px 12px 22px;
  }

  .closing-footer-scene .site-footer {
    padding-top: 58px;
  }

  .site-footer-top {
    gap: 28px;
    border-radius: 8px 8px 0 0;
    padding: 26px 22px;
  }

  .site-footer-brand {
    gap: 14px;
  }

  .site-footer-brand h2 {
    font-size: clamp(28px, 8.8vw, 38px);
    line-height: 1.08;
  }

  .site-footer-brand p {
    max-width: none;
  }

  .site-footer-actions {
    flex-direction: row;
    align-items: stretch;
  }

  .site-footer-actions a {
    flex: 1 1 0;
    width: auto;
    min-height: 42px;
    justify-content: center;
    text-align: center;
  }

  .site-footer-links {
    grid-template-columns: 1fr;
    gap: 26px;
  }

  .site-footer-links div {
    gap: 8px;
  }

  .site-footer-links .site-social-links {
    display: flex;
    flex-direction: row;
  }

  .site-footer-bottom {
    gap: 14px;
    border-radius: 0 0 8px 8px;
    padding: 16px 22px 20px;
  }

  .site-footer-bottom div {
    gap: 10px 18px;
  }
}

@media (max-width: 360px) {
  .site-footer-actions {
    flex-direction: column;
  }

  .site-footer-actions a {
    width: 100%;
  }
}

.system-core strong,
.system-node strong {
  font-size: clamp(20px, 2vw, 26px);
}

.system-node small,
.feature-child-link small,
.lr-panel-copy dt,
.lr-panel-copy dd,
.lr-scroll-card span,
.lr-detail-stats p {
  font-size: clamp(13px, 0.95vw, 15px);
}

@media (max-width: 767px) {
  :root {
    --type-body: 16px;
    --type-body-large: clamp(17px, 4.5vw, 20px);
    --type-card-title: clamp(21px, 5.8vw, 28px);
    --type-section-title: clamp(28px, 7.6vw, 40px);
    --type-hero-title: clamp(34px, 9.2vw, 50px);
  }

  .about-statement {
    font-size: clamp(23px, 6.6vw, 32px);
  }

  .hero-copy h1 {
    font-size: clamp(34px, 9vw, 46px);
  }

  .closing-content h2 {
    font-size: clamp(30px, 8vw, 40px);
  }
}

.system-map {
  border: 0;
  border-radius: 0;
  overflow: visible;
}

.system-map:hover,
.system-map:focus-within {
  box-shadow: none;
}

@media (max-width: 1023px) {
  .system-map {
    padding: 0;
  }
}

@media (max-width: 767px) {
  .system-map {
    border-radius: 0;
  }
}

/* Cleaner Living Rhythm diagram */
.system-map {
  min-height: 560px;
}

.system-node {
  gap: 3px;
  min-height: 92px;
  border: 0;
  background: transparent;
  box-shadow: none;
  backdrop-filter: none;
}

.system-node strong {
  font-size: clamp(17px, 1.55vw, 22px);
  line-height: 1.08;
}

.system-node small {
  max-width: 112px;
  font-size: clamp(11px, 0.82vw, 13px);
  line-height: 1.32;
}

.system-node:hover,
.system-node:focus-visible,
.system-node.is-active {
  background: rgba(255, 255, 255, 0.24);
  box-shadow: none;
}

@media (min-width: 1024px) {
  .system-node-one {
    top: 10%;
  }

  .system-node-two {
    top: 27%;
    right: 17%;
  }

  .system-node-three {
    right: 19%;
    bottom: 22%;
  }

  .system-node-four {
    bottom: 8%;
  }

  .system-node-five {
    bottom: 22%;
    left: 19%;
  }

  .system-node-six {
    top: 27%;
    left: 17%;
  }
}

/* SANGHA package shell final overrides */
.sangha-package-card.featured h3 {
  font-size: clamp(30px, 4vw, 52px);
  line-height: 1.02;
}

.sangha-package-stack .sangha-package-card h3 {
  font-size: clamp(24px, 2.6vw, 34px);
  line-height: 1.08;
}

.sangha-package-card dd,
.sangha-package-note p {
  font-size: var(--type-ui);
}

@media (max-width: 767px) {
  .sangha-package-meta,
  .sangha-package-foot {
    align-items: flex-start;
    flex-direction: column;
  }

  .sangha-package-card,
  .sangha-package-card.featured {
    min-height: auto;
  }

  .sangha-package-card.featured h3 {
    font-size: clamp(28px, 7.4vw, 40px);
  }
}

@media (max-width: 767px) {
  .system-section {
    padding-top: 64px;
    padding-bottom: 70px;
  }

  .system-inner {
    gap: 34px;
  }

  .system-lead {
    gap: 18px;
  }

  .system-lead h2 {
    font-size: clamp(34px, 10vw, 48px);
    line-height: 1.08;
  }

  .system-lead p {
    font-size: clamp(16px, 4.4vw, 18px);
    line-height: 1.64;
  }

  .system-map {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px;
    min-height: 0;
    padding: 0;
    overflow: visible;
    background: transparent;
  }

  .system-line-canvas,
  .system-map::before,
  .system-map::after,
  .system-core::before,
  .system-core::after {
    display: none;
  }

  .system-core,
  .system-node {
    position: relative;
    inset: auto;
    width: auto;
    min-height: 0;
    transform: none;
    animation: none;
  }

  .system-core {
    grid-column: 1 / -1;
    aspect-ratio: auto;
    border-radius: 8px;
    padding: 30px 18px;
    box-shadow:
      inset 0 1px 1px rgba(255, 255, 255, 0.82),
      0 16px 38px rgba(57, 88, 120, 0.1);
  }

  .system-core strong {
    max-width: none;
    font-size: clamp(24px, 7vw, 34px);
  }

  .system-node {
    align-content: start;
    place-items: start;
    gap: 5px;
    min-height: 118px;
    border-radius: 8px;
    border: 1px solid rgba(57, 88, 120, 0.1);
    background: rgba(255, 255, 255, 0.46);
    padding: 16px;
    text-align: left;
  }

  .system-node:hover,
  .system-node:focus-visible,
  .system-node.is-active,
  .system-node-one:hover,
  .system-node-one:focus-visible,
  .system-node-one.is-active,
  .system-node-four:hover,
  .system-node-four:focus-visible,
  .system-node-four.is-active {
    border-color: rgba(57, 88, 120, 0.16);
    background: rgba(255, 255, 255, 0.56);
    box-shadow: none;
    transform: none;
  }

  .system-node span {
    font-size: 12px;
  }

  .system-node strong {
    font-size: clamp(23px, 6vw, 30px);
  }

  .system-node small {
    max-width: none;
    font-size: 14px;
    line-height: 1.32;
  }
}

@media (max-width: 380px) {
  .system-map {
    grid-template-columns: 1fr;
  }

  .system-node {
    min-height: 96px;
  }
}
