:root {
  --bg: #e2e2df;
  --paper: #f7f6f2;
  --ink: #070607;
  --muted: #5e5d58;
  --soft: #85827b;
  --line: rgba(7, 6, 7, 0.18);
  --line-strong: #070607;
  --blue: #fc5000;
  --green: #524ae9;
  --orange: #fc5000;
  --yellow: #f5f28e;
  --violet: #524ae9;
  --dark: #070607;
  --dark-2: #070607;
  --max: 1280px;
  --radius: 40px;
  --shadow: none;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background:
    radial-gradient(circle at 1px 1px, rgba(7, 6, 7, 0.055) 1px, transparent 0),
    var(--bg);
  background-size: 22px 22px, auto;
  color: var(--ink);
  font-family: "DM Sans", "Avenir Next", "PingFang SC", "Microsoft YaHei", sans-serif;
  font-weight: 500;
  line-height: 1.55;
  letter-spacing: 0;
}

body.menu-open {
  overflow: hidden;
}

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

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

button {
  cursor: pointer;
}

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

figure {
  margin: 0;
}

.site-header {
  position: sticky;
  top: 16px;
  z-index: 50;
  display: grid;
  grid-template-columns: minmax(210px, auto) 1fr auto;
  align-items: center;
  width: min(var(--max), calc(100% - 32px));
  min-height: 68px;
  margin: 16px auto 0;
  padding: 8px 10px 8px 18px;
  border: 1px solid rgba(7, 6, 7, 0.16);
  border-radius: 999px;
  background: rgba(247, 246, 242, 0.94);
  backdrop-filter: blur(10px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  min-width: 0;
}

.brand-mark {
  display: inline-grid;
  place-items: center;
  width: 48px;
  height: 48px;
  border: 0;
  border-radius: 999px;
  background: var(--orange);
  color: var(--ink);
  font-family: Impact, "Arial Narrow", "PingFang SC", sans-serif;
  font-size: 18px;
  font-weight: 900;
}

.brand strong {
  display: block;
  font-size: 17px;
  line-height: 1.1;
}

.brand small {
  display: block;
  margin-top: 3px;
  color: var(--muted);
  font-size: 10px;
  line-height: 1.2;
  text-transform: uppercase;
}

.nav-links {
  display: flex;
  justify-content: center;
  gap: 18px;
  color: var(--ink);
  font-size: 14px;
  font-weight: 800;
}

.nav-links a {
  transition: color 160ms ease;
}

.nav-links a:hover {
  color: var(--ink);
}

.header-actions,
.hero-actions,
.contact-actions {
  display: flex;
  align-items: center;
  gap: 10px;
}

.solid-button,
.outline-button,
.ghost-button,
.domain-card button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  padding: 0 17px;
  border: 1px solid var(--ink);
  border-radius: 999px;
  font-size: 14px;
  font-weight: 850;
  line-height: 1;
  white-space: nowrap;
  transition: transform 160ms ease, box-shadow 160ms ease, background 160ms ease;
}

.solid-button {
  border-color: var(--orange);
  background: var(--orange);
  color: var(--ink);
}

.outline-button,
.ghost-button,
.domain-card button {
  background: transparent;
  color: var(--ink);
}

.ghost-button {
  border-color: transparent;
  background: #ffffff;
  color: var(--ink);
}

.large {
  min-height: 50px;
  padding: 0 22px;
}

.solid-button:hover,
.outline-button:hover,
.ghost-button:hover,
.domain-card button:hover {
  box-shadow: none;
  transform: translateY(-1px);
}

.menu-button {
  display: none;
  width: 52px;
  height: 52px;
  border: 1px solid var(--line-strong);
  border-radius: 999px;
  background: var(--paper);
}

.menu-button span {
  display: block;
  width: 17px;
  height: 2px;
  margin: 4px auto;
  background: var(--ink);
  transition: transform 180ms ease;
}

.menu-button[aria-expanded="true"] span:first-child {
  transform: translateY(3px) rotate(45deg);
}

.menu-button[aria-expanded="true"] span:last-child {
  transform: translateY(-3px) rotate(-45deg);
}

.mobile-nav {
  display: none;
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(430px, 1.1fr);
  gap: 56px;
  align-items: center;
  max-width: calc(var(--max) + 48px);
  min-height: 78vh;
  margin: 0 auto;
  padding: 92px 24px 56px;
}

.hero-copy {
  max-width: 650px;
}

.eyebrow {
  display: inline-flex;
  margin: 0 0 14px;
  color: var(--orange);
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 0.02em;
  text-transform: uppercase;
}

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

h1,
h2 {
  font-family: Impact, "Arial Narrow", "PingFang SC", "Microsoft YaHei", sans-serif;
  font-weight: 900;
  letter-spacing: 0.02em;
}

h1 {
  max-width: 690px;
  margin-bottom: 20px;
  font-size: clamp(76px, 10vw, 150px);
  line-height: 0.9;
}

h1 span {
  display: block;
  white-space: nowrap;
}

h2 {
  margin-bottom: 16px;
  font-size: clamp(48px, 6vw, 82px);
  line-height: 0.96;
}

h3 {
  margin-bottom: 10px;
  font-size: 26px;
  line-height: 1.08;
  letter-spacing: 0.01em;
}

.hero-line {
  margin-bottom: 16px;
  font-size: 30px;
  font-weight: 850;
  line-height: 1.25;
}

.hero-lede,
.section-heading p,
.contact-copy p {
  color: var(--muted);
  font-size: 18px;
}

.hero-lede {
  max-width: 590px;
  margin-bottom: 28px;
}

.hero-media {
  position: relative;
  min-width: 0;
}

.photo-hero {
  isolation: isolate;
}

.photo-hero::before {
  position: absolute;
  inset: 22px -12px -12px 22px;
  z-index: -1;
  border-radius: 40px;
  background: var(--orange);
  content: "";
}

.hero-media img {
  width: 100%;
  min-height: 390px;
  object-fit: cover;
  border: 0;
  border-radius: 40px;
  background: var(--paper);
  box-shadow: var(--shadow);
}

.photo-hero > img {
  min-height: 520px;
  border: 1px solid rgba(7, 6, 7, 0.16);
}

.hero-photo-chip {
  position: absolute;
  right: 18px;
  bottom: 18px;
  display: grid;
  grid-template-columns: 96px 1fr;
  gap: 12px;
  align-items: center;
  width: min(330px, calc(100% - 36px));
  padding: 10px;
  border: 1px solid var(--ink);
  border-radius: 28px;
  background: var(--paper);
}

.hero-photo-chip img {
  width: 96px;
  height: 112px;
  min-height: 0;
  border-radius: 20px;
  object-fit: cover;
}

.hero-photo-chip figcaption {
  display: grid;
  gap: 6px;
}

.hero-photo-chip span {
  color: var(--orange);
  font-size: 11px;
  font-weight: 900;
  text-transform: uppercase;
}

.hero-photo-chip strong {
  font-size: 18px;
  line-height: 1.15;
}

.media-caption {
  position: absolute;
  right: 18px;
  bottom: 18px;
  display: grid;
  gap: 4px;
  max-width: 260px;
  padding: 14px 16px;
  border: 0;
  border-radius: 32px;
  background: var(--ink);
  color: var(--paper);
  backdrop-filter: none;
}

.media-caption span {
  color: #b8c3c8;
  font-size: 11px;
  font-weight: 900;
  text-transform: uppercase;
}

.media-caption strong {
  font-size: 17px;
}

.stats-band {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  max-width: var(--max);
  margin: 0 auto 40px;
  border: 0;
  border-radius: 0;
  background: transparent;
  overflow: visible;
}

.stats-band article {
  min-height: 152px;
  padding: 24px;
  border: 0;
  border-radius: 40px;
  background: var(--orange);
}

.stats-band article:last-child {
  border-right: 0;
}

.stats-band strong {
  display: block;
  margin-bottom: 16px;
  color: #ffffff;
  font-family: Impact, "Arial Narrow", "PingFang SC", sans-serif;
  font-size: 52px;
  letter-spacing: 0.02em;
  line-height: 1;
}

.stats-band span {
  color: #ffffff;
  font-size: 14px;
  font-weight: 850;
}

.section {
  padding: 92px 0;
}

.shell {
  width: min(var(--max), calc(100% - 48px));
  margin: 0 auto;
}

.section-heading {
  max-width: 760px;
  margin-bottom: 42px;
}

.space-gallery {
  padding-top: 76px;
}

.space-mosaic,
.living-mosaic,
.amenity-grid {
  display: grid;
  gap: 14px;
}

.space-mosaic {
  grid-template-columns: repeat(12, 1fr);
  grid-auto-rows: 150px;
}

.space-mosaic > :nth-child(1) {
  grid-column: 1 / 8;
  grid-row: 1 / 4;
}

.space-mosaic > :nth-child(2) {
  grid-column: 8 / 13;
  grid-row: 1 / 4;
}

.space-mosaic > :nth-child(3) {
  grid-column: 1 / 5;
  grid-row: 4 / 6;
}

.space-mosaic > :nth-child(4) {
  grid-column: 5 / 9;
  grid-row: 4 / 6;
}

.space-mosaic > :nth-child(5) {
  grid-column: 9 / 13;
  grid-row: 4 / 6;
}

.space-mosaic > :nth-child(6) {
  grid-column: 1 / 13;
  grid-row: 6 / 8;
}

.photo-card {
  position: relative;
  min-height: 280px;
  border: 1px solid var(--line);
  border-radius: 40px;
  background: var(--paper);
  overflow: hidden;
  isolation: isolate;
}

.photo-card::after {
  position: absolute;
  inset: 45% 0 0;
  background: linear-gradient(180deg, transparent, rgba(7, 6, 7, 0.72));
  content: "";
}

.photo-card img {
  width: 100%;
  height: 100%;
  min-height: inherit;
  object-fit: cover;
}

.photo-card figcaption {
  position: absolute;
  right: 16px;
  bottom: 16px;
  left: 16px;
  z-index: 2;
  display: grid;
  gap: 6px;
  color: #ffffff;
}

.photo-card figcaption span {
  color: var(--yellow);
  font-size: 11px;
  font-weight: 900;
  line-height: 1;
  text-transform: uppercase;
}

.photo-card figcaption strong {
  display: block;
  width: fit-content;
  max-width: 100%;
  padding: 10px 12px;
  border-radius: 20px;
  background: rgba(7, 6, 7, 0.82);
  font-size: 16px;
  line-height: 1.18;
}

.space-note,
.living-copy-card {
  min-height: 280px;
  padding: 28px;
  border: 1px solid var(--ink);
  border-radius: 40px;
}

.space-note {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  background: var(--violet);
  color: #ffffff;
}

.space-note span,
.living-copy-card span {
  display: block;
  margin-bottom: 18px;
  color: var(--yellow);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

.space-note strong,
.living-copy-card strong {
  display: block;
  margin-bottom: 18px;
  font-size: 28px;
  line-height: 1.08;
}

.space-note p,
.living-copy-card p {
  margin-bottom: 0;
  color: rgba(255, 255, 255, 0.76);
}

.living-gallery {
  padding-top: 76px;
}

.living-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.72fr) minmax(560px, 1.28fr);
  gap: 42px;
  align-items: start;
}

.living-copy p {
  color: var(--muted);
  font-size: 18px;
}

.living-copy-card {
  margin-top: 28px;
  background: var(--dark);
  color: #ffffff;
}

.living-copy-card strong {
  font-size: 25px;
}

.living-mosaic {
  grid-template-columns: repeat(6, 1fr);
  grid-auto-rows: 190px;
}

.living-mosaic > :nth-child(1) {
  grid-column: 1 / 7;
  grid-row: 1 / 3;
}

.living-mosaic > :nth-child(2) {
  grid-column: 1 / 4;
  grid-row: 3 / 5;
}

.living-mosaic > :nth-child(3) {
  grid-column: 4 / 7;
  grid-row: 3 / 5;
}

.living-mosaic > :nth-child(4) {
  grid-column: 1 / 7;
  grid-row: 5 / 7;
}

.amenity-gallery {
  padding-top: 78px;
}

.amenity-grid {
  grid-template-columns: repeat(6, 1fr);
  grid-auto-rows: 170px;
}

.amenity-grid > :nth-child(1) {
  grid-column: 1 / 4;
  grid-row: 1 / 3;
}

.amenity-grid > :nth-child(2) {
  grid-column: 4 / 7;
  grid-row: 1 / 3;
}

.amenity-grid > :nth-child(3) {
  grid-column: 1 / 3;
  grid-row: 3 / 5;
}

.amenity-grid > :nth-child(4) {
  grid-column: 3 / 5;
  grid-row: 3 / 5;
}

.amenity-grid > :nth-child(5) {
  grid-column: 5 / 7;
  grid-row: 3 / 5;
}

.section-heading.inverse {
  color: #ffffff;
}

.section-heading.inverse p {
  color: rgba(255, 255, 255, 0.72);
}

.system-grid,
.support-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
}

.support-grid {
  grid-template-columns: repeat(5, 1fr);
}

.intro-layout,
.case-grid,
.source-grid {
  display: grid;
  gap: 14px;
}

.intro-layout {
  grid-template-columns: 0.9fr 1.1fr 1fr;
}

.case-grid,
.source-grid {
  grid-template-columns: repeat(3, 1fr);
}

.system-card,
.program-card,
.intro-card,
.case-card,
.update-card,
.source-card {
  min-height: 260px;
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: 40px;
  background: var(--paper);
}

.system-card,
.intro-card,
.case-card,
.update-card,
.source-card {
  display: flex;
  flex-direction: column;
}

.system-card:nth-child(2) {
  border-color: rgba(82, 74, 233, 0.28);
}

.system-card:nth-child(3) {
  border-color: rgba(252, 80, 0, 0.42);
}

.system-card:nth-child(4) {
  border-color: rgba(7, 6, 7, 0.28);
}

.card-index {
  display: inline-flex;
  width: fit-content;
  margin-bottom: 56px;
  color: var(--orange);
  font-size: 13px;
  font-weight: 900;
}

.system-card p,
.program-card p,
.intro-card p,
.case-card p,
.update-card p,
.process-steps p,
.audience-list p,
.partner-matrix span,
.source-card small,
.contact-panel li,
.small-note {
  color: var(--muted);
}

.intro-card {
  min-height: 310px;
}

.intro-card .card-index,
.case-card span,
.update-card span,
.source-card span {
  display: inline-flex;
  width: fit-content;
  margin-bottom: 48px;
  color: var(--orange);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

.intro-card:nth-child(2) .card-index,
.case-card:nth-child(2n) span,
.update-card:nth-child(2n) span,
.source-card:nth-child(2n) span {
  color: var(--violet);
}

.intro-card:nth-child(3) .card-index,
.case-card:nth-child(3n) span,
.update-card:nth-child(3n) span,
.source-card:nth-child(3n) span {
  color: var(--orange);
}

.case-card,
.update-card,
.source-card {
  min-height: 330px;
}

.case-card strong {
  display: block;
  margin-bottom: 14px;
  font-size: 16px;
}

.case-card p,
.update-card p {
  margin-bottom: 22px;
}

.case-card a,
.update-card a,
.source-card {
  margin-top: auto;
}

.case-card a,
.update-card a {
  color: var(--orange);
  font-size: 13px;
  font-weight: 850;
}

.update-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.7fr) minmax(520px, 1.3fr);
  gap: 42px;
  align-items: start;
}

.update-list {
  display: grid;
  gap: 12px;
}

.update-card {
  min-height: 210px;
  border-color: rgba(18, 20, 22, 0.12);
}

.update-card span {
  margin-bottom: 28px;
}

.source-card {
  min-height: 245px;
  transition: border-color 160ms ease, box-shadow 160ms ease, transform 160ms ease;
}

.source-card:hover {
  border-color: var(--ink);
  box-shadow: none;
  transform: translateY(-2px);
}

.source-card strong {
  display: block;
  margin-bottom: 14px;
  font-size: 20px;
  line-height: 1.25;
}

.source-card small {
  display: block;
  font-size: 14px;
  line-height: 1.5;
}

.dark-band {
  background:
    radial-gradient(circle at 1px 1px, rgba(255, 255, 255, 0.12) 1px, transparent 0),
    var(--dark);
  background-size: 24px 24px, auto;
  color: #ffffff;
}

.split-section {
  display: grid;
  grid-template-columns: minmax(0, 0.8fr) minmax(420px, 1.2fr);
  gap: 48px;
  align-items: start;
}

.residency-panel {
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 40px;
  background:
    linear-gradient(135deg, rgba(252, 80, 0, 0.18), rgba(82, 74, 233, 0.18)),
    rgba(255, 255, 255, 0.05);
  overflow: hidden;
}

.audience-list {
  display: grid;
  grid-template-columns: 1fr 1fr;
}

.audience-list article {
  min-height: 210px;
  padding: 24px;
  border-right: 1px solid rgba(255, 255, 255, 0.1);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.audience-list article:nth-child(2n) {
  border-right: 0;
}

.audience-list article:nth-last-child(-n + 2) {
  border-bottom: 0;
}

.audience-list span {
  display: inline-flex;
  margin-bottom: 46px;
  color: var(--yellow);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

.audience-list h3 {
  color: #ffffff;
}

.audience-list p {
  margin-bottom: 0;
  color: rgba(255, 255, 255, 0.72);
}

.process-board {
  display: grid;
  grid-template-columns: minmax(280px, 0.6fr) minmax(0, 1.4fr);
  gap: 28px;
  padding: 28px;
  border: 1px solid var(--ink);
  border-radius: 40px;
  background: var(--paper);
  box-shadow: none;
}

.process-copy {
  padding: 10px 8px;
}

.process-copy p {
  color: var(--muted);
}

.process-steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  margin: 0;
  padding: 0;
  list-style: none;
}

.process-steps li {
  min-height: 300px;
  padding: 20px;
  border-left: 1px solid var(--line);
}

.process-steps span {
  display: inline-flex;
  margin-bottom: 86px;
  color: var(--orange);
  font-size: 13px;
  font-weight: 900;
}

.process-steps strong {
  display: block;
  margin-bottom: 10px;
  font-size: 20px;
}

.schedule-band {
  background: rgba(247, 246, 242, 0.52);
}

.program-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
}

.program-card {
  position: relative;
  overflow: hidden;
}

.program-card::before {
  position: absolute;
  inset: 0 0 auto;
  height: 5px;
  content: "";
  background: var(--orange);
}

.program-card:nth-child(2)::before {
  background: var(--violet);
}

.program-card:nth-child(3)::before {
  background: var(--orange);
}

.program-card:nth-child(4)::before {
  background: var(--yellow);
}

.program-card span {
  display: inline-flex;
  margin-bottom: 58px;
  color: var(--muted);
  font-size: 13px;
  font-weight: 900;
}

.partner-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.75fr) minmax(520px, 1.25fr);
  gap: 44px;
  align-items: start;
}

.partner-matrix {
  display: grid;
  grid-template-columns: 1fr 1fr;
  border: 1px solid var(--ink);
  border-radius: 40px;
  background: var(--paper);
  overflow: hidden;
}

.partner-matrix article {
  min-height: 185px;
  padding: 24px;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.partner-matrix article:nth-child(2n) {
  border-right: 0;
}

.partner-matrix article:nth-last-child(-n + 2) {
  border-bottom: 0;
}

.partner-matrix strong {
  display: block;
  margin-bottom: 44px;
  font-size: 21px;
}

.partner-matrix span {
  display: block;
}

.apply-section {
  padding-top: 76px;
}

.apply-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.86fr) minmax(430px, 1.14fr);
  gap: 42px;
  align-items: start;
  margin-bottom: 18px;
}

.apply-actions {
  display: flex;
  gap: 10px;
  align-items: center;
  margin-top: 28px;
}

.apply-panel {
  min-height: 390px;
  padding: 30px;
  border: 1px solid var(--ink);
  border-radius: 40px;
  background: var(--orange);
  color: #ffffff;
}

.apply-panel span,
.apply-card span {
  display: inline-flex;
  margin-bottom: 36px;
  color: var(--yellow);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

.apply-panel h3 {
  color: #ffffff;
  font-size: 30px;
}

.apply-panel ul {
  display: grid;
  gap: 10px;
  margin: 20px 0 24px;
  padding-left: 20px;
}

.apply-panel li,
.apply-panel p {
  color: rgba(255, 255, 255, 0.82);
}

.apply-panel p {
  margin-bottom: 0;
  font-size: 14px;
}

.apply-card-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
}

.apply-card {
  min-height: 310px;
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: 40px;
  background: var(--paper);
}

.apply-card:nth-child(2) {
  border-color: rgba(82, 74, 233, 0.28);
}

.apply-card:nth-child(2) span,
.apply-card:nth-child(4) span {
  color: var(--violet);
}

.apply-card span {
  color: var(--orange);
}

.apply-card p {
  margin-bottom: 0;
  color: var(--muted);
}

.contact-section {
  background:
    radial-gradient(circle at 1px 1px, rgba(255, 255, 255, 0.12) 1px, transparent 0),
    var(--dark-2);
  background-size: 24px 24px, auto;
  color: #ffffff;
}

.contact-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.8fr) minmax(420px, 1fr);
  gap: 42px;
  align-items: start;
}

.contact-copy p {
  color: rgba(255, 255, 255, 0.72);
}

.domain-card {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 10px 20px;
  align-items: center;
  max-width: 500px;
  margin-top: 30px;
  padding: 20px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 40px;
  background: rgba(255, 255, 255, 0.07);
}

.domain-card span {
  color: rgba(255, 255, 255, 0.72);
  font-size: 13px;
  font-weight: 900;
  text-transform: uppercase;
}

.domain-card strong {
  display: block;
  grid-column: 1;
  font-size: 32px;
}

.domain-card button {
  grid-row: 1 / span 2;
  grid-column: 2;
  border-color: rgba(255, 255, 255, 0.28);
  color: #ffffff;
}

.contact-panel {
  padding: 30px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 40px;
  background: var(--paper);
  color: var(--ink);
}

.contact-panel ul {
  display: grid;
  gap: 12px;
  margin: 0 0 26px;
  padding-left: 20px;
}

.small-note {
  margin: 18px 0 0;
  font-size: 13px;
}

.site-footer {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  background: var(--dark-2);
  color: #ffffff;
}

.footer-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  width: min(var(--max), calc(100% - 48px));
  min-height: 110px;
  margin: 0 auto;
}

.brand.compact .brand-mark {
  border-color: transparent;
}

.footer-inner p {
  margin: 0;
  color: rgba(255, 255, 255, 0.72);
  font-size: 14px;
}

.reveal {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 620ms ease, transform 620ms ease;
}

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

@media (max-width: 1080px) {
  .site-header {
    grid-template-columns: 1fr auto;
  }

  .nav-links,
  .header-actions {
    display: none;
  }

  .menu-button {
    display: block;
  }

  .mobile-nav {
    position: fixed;
    inset: 68px 16px auto;
    z-index: 40;
    display: grid;
    gap: 4px;
    padding: 14px;
    border: 1px solid var(--ink);
    border-radius: 8px;
    background: var(--paper);
    box-shadow: var(--shadow);
    opacity: 0;
    pointer-events: none;
    transform: translateY(-8px);
    transition: opacity 160ms ease, transform 160ms ease;
  }

  .mobile-nav.is-open {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
  }

  .mobile-nav a {
    padding: 13px 12px;
    border-radius: 8px;
    color: var(--muted);
    font-weight: 800;
  }

  .mobile-nav a:hover {
    background: #eef1ed;
    color: var(--ink);
  }

  .hero,
  .split-section,
  .process-board,
  .partner-layout,
  .contact-grid,
  .update-layout,
  .living-layout,
  .apply-layout {
    grid-template-columns: 1fr;
  }

  .hero {
    gap: 34px;
  }

  .space-mosaic,
  .living-mosaic,
  .amenity-grid {
    grid-template-columns: 1fr 1fr;
    grid-auto-rows: auto;
  }

  .space-mosaic > *,
  .living-mosaic > *,
  .amenity-grid > * {
    grid-column: auto !important;
    grid-row: auto !important;
  }

  .photo-card,
  .space-note {
    min-height: 320px;
  }

  .system-grid,
  .support-grid,
  .program-grid,
  .apply-card-grid,
  .intro-layout,
  .case-grid,
  .source-grid {
    grid-template-columns: 1fr 1fr;
  }

  .process-steps {
    grid-template-columns: 1fr 1fr;
  }

  .process-steps li {
    border-top: 1px solid var(--line);
    border-left: 0;
  }
}

@media (max-width: 720px) {
  .site-header {
    padding: 0 16px;
  }

  .brand small {
    display: none;
  }

  .hero {
    min-height: auto;
    padding: 100px 18px 28px;
  }

  h1 {
    font-size: 52px;
  }

  h2 {
    font-size: 36px;
  }

  h3 {
    font-size: 20px;
  }

  .hero-line {
    font-size: 22px;
  }

  .hero-lede,
  .section-heading p,
  .contact-copy p {
    font-size: 16px;
  }

  .hero-actions,
  .contact-actions,
  .apply-actions {
    align-items: stretch;
    flex-direction: column;
  }

  .solid-button,
  .outline-button {
    width: 100%;
  }

  .hero-media img {
    min-height: 280px;
  }

  .photo-hero > img {
    min-height: 320px;
  }

  .photo-hero::before {
    inset: 12px -7px -7px 12px;
  }

  .hero-photo-chip {
    position: static;
    width: 100%;
    margin-top: 10px;
  }

  .hero-photo-chip img {
    height: 112px;
    min-height: 0;
  }

  .media-caption {
    position: static;
    max-width: none;
    margin-top: 10px;
  }

  .stats-band,
  .system-grid,
  .support-grid,
  .program-grid,
  .apply-card-grid,
  .intro-layout,
  .case-grid,
  .source-grid,
  .audience-list,
  .process-steps,
  .partner-matrix,
  .space-mosaic,
  .living-mosaic,
  .amenity-grid {
    grid-template-columns: 1fr;
  }

  .stats-band {
    width: calc(100% - 32px);
  }

  .stats-band article,
  .audience-list article,
  .partner-matrix article {
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .stats-band article:last-child,
  .audience-list article:last-child,
  .partner-matrix article:last-child {
    border-bottom: 0;
  }

  .shell {
    width: calc(100% - 32px);
  }

  .section {
    padding: 64px 0;
  }

  .system-card,
  .program-card,
  .intro-card,
  .case-card,
  .update-card,
  .source-card,
  .apply-card,
  .photo-card,
  .space-note,
  .living-copy-card {
    min-height: 220px;
  }

  .photo-card {
    min-height: 260px;
  }

  .photo-card figcaption strong {
    font-size: 15px;
  }

  .card-index,
  .intro-card .card-index,
  .case-card span,
  .update-card span,
  .source-card span,
  .apply-panel span,
  .apply-card span,
  .program-card span,
  .audience-list span,
  .process-steps span,
  .partner-matrix strong {
    margin-bottom: 28px;
  }

  .process-board {
    padding: 18px;
  }

  .process-steps li {
    min-height: 220px;
    padding: 18px 8px;
  }

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

  .domain-card strong,
  .domain-card button {
    grid-row: auto;
    grid-column: auto;
  }

  .domain-card strong {
    font-size: 25px;
  }

  .footer-inner {
    align-items: flex-start;
    flex-direction: column;
    padding: 28px 0;
  }
}

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

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