@font-face {
  font-family: JiujiangSerif;
  src: url("/assets/serif-v3.woff2") format("woff2");
  font-weight: 400;
  font-display: swap;
}
:root {
  --paper: #f3f1eb;
  --ink: #30372f;
  --muted: #626b5e;
  --line: #cdd0c5;
  --dark: #303b32;
  --accent: #9b7651;
  --serif:
    JiujiangSerif, "Songti SC", "Noto Serif CJK SC", "STSong", "SimSun", serif;
  --gutter: clamp(24px, 5vw, 88px);
  --header: 92px;
  color-scheme: light;
}
* {
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
  scroll-padding-top: var(--header);
}
body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: "Helvetica Neue", "PingFang SC", "Microsoft YaHei", sans-serif;
  font-size: 16px;
  line-height: 1.9;
  -webkit-font-smoothing: antialiased;
}
body.menu-open,
body.dialog-open {
  overflow: hidden;
}
a {
  color: inherit;
  text-decoration: none;
}
button {
  font: inherit;
  color: inherit;
  border: 0;
  cursor: pointer;
  background: none;
}
button,
a,
summary {
  -webkit-tap-highlight-color: transparent;
}
button:focus-visible,
a:focus-visible,
summary:focus-visible,
[tabindex]:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 6px;
}
button:disabled {
  cursor: default;
}
img {
  display: block;
  max-width: 100%;
  object-fit: cover;
}
h1,
h2,
h3,
p,
figure {
  margin: 0;
}
h1,
h2,
h3 {
  font-weight: 400;
}
p + p {
  margin-top: 20px;
}
::selection {
  color: var(--paper);
  background: var(--dark);
}
.serif {
  font-family: var(--serif);
  font-weight: 400;
}
.section {
  padding: 96px var(--gutter);
  max-width: 1800px;
  margin: auto;
}
.section-label {
  display: flex;
  justify-content: space-between;
  gap: 24px;
  font-size: 13px;
  letter-spacing: 0.1em;
  padding-bottom: 24px;
  border-bottom: 1px solid var(--line);
  margin-bottom: 62px;
}
.section-label h2 {
  font: inherit;
}
.section-label > span:last-child {
  font-size: 12px;
  letter-spacing: 0.14em;
}
.eyebrow {
  font-size: 12px;
  letter-spacing: 0.22em;
  line-height: 1.6;
}
.section-heading {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 48px;
}
.section-heading h2 {
  font-size: clamp(36px, 3.5vw, 56px);
  line-height: 1.65;
  letter-spacing: 0.06em;
}
.section-heading > p {
  color: var(--muted);
  font-size: 15px;
}
.text-link {
  display: inline-flex;
  gap: 38px;
  border-bottom: 1px solid currentColor;
  padding: 8px 0;
  font-size: 14px;
}
.text-link span,
.hero-link span,
.light-link span {
  transition: transform 0.25s;
}
.text-link:hover span,
.hero-link:hover span,
.light-link:hover span {
  transform: translate(3px, -3px);
}
.skip-link {
  position: fixed;
  top: -100px;
  left: 24px;
  padding: 12px 24px;
  background: var(--paper);
  z-index: 1000;
}
.skip-link:focus {
  top: 12px;
}
.site-header {
  position: absolute;
  inset: 0 0 auto;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: var(--header);
  padding: 0 var(--gutter);
  color: #fff;
  border-bottom: 1px solid #ffffff38;
  transition:
    background 0.25s,
    color 0.25s;
  gap: 28px;
}
.site-header.is-fixed {
  position: fixed;
  background: var(--paper);
  color: var(--ink);
  border-color: var(--line);
  height: 78px;
  box-shadow: 0 1px 0 #30372f06;
}
.brand {
  display: flex;
  align-items: center;
  gap: 15px;
  flex-shrink: 0;
}
.brand-seal {
  display: grid;
  place-items: center;
  border: 1px solid currentColor;
  font-family: var(--serif);
  font-size: 25px;
  width: 36px;
  height: 44px;
  line-height: 1;
}
.brand-name {
  font-family: var(--serif);
  font-size: 22px;
  letter-spacing: 0.24em;
  line-height: 1.5;
}
.brand-name small {
  display: block;
  font:
    9px/1.8 "Helvetica Neue",
    sans-serif;
  letter-spacing: 0.2em;
}
.desktop-nav {
  display: flex;
  gap: 36px;
  font-size: 14px;
  letter-spacing: 0.08em;
}
.desktop-nav a {
  position: relative;
  padding: 12px 0;
}
.desktop-nav a:after {
  content: "";
  position: absolute;
  bottom: 5px;
  height: 1px;
  background: currentColor;
  left: 0;
  right: 0;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.25s;
}
.desktop-nav a:hover:after {
  transform: scaleX(1);
}
.desktop-nav a:last-child {
  margin-left: 20px;
}
.desktop-nav a span {
  margin-left: 12px;
}
.menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 7px;
}
.menu-toggle span {
  width: 23px;
  height: 1px;
  background: currentColor;
  transition: transform 0.25s;
}
.mobile-menu {
  display: none;
}
.hero {
  height: 100svh;
  min-height: 660px;
  max-height: 1300px;
  position: relative;
  background: #424c41;
  color: #fff;
  isolation: isolate;
}
.hero-image,
.hero-shade {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
}
.hero-image {
  object-position: 50% 52%;
}
.hero-shade {
  background:
    linear-gradient(90deg, #13221b70 0%, #14231b22 65%),
    linear-gradient(0deg, #101e1880, transparent 45%, #111c154d);
}
.hero-content {
  position: absolute;
  left: var(--gutter);
  bottom: 21%;
  max-width: 800px;
}
.hero-content .eyebrow {
  margin-bottom: 29px;
  color: #ffffffc9;
}
.hero h1 {
  font-family: var(--serif);
  font-size: clamp(58px, 6.1vw, 104px);
  line-height: 1.38;
  letter-spacing: 0.09em;
  text-shadow: 0 2px 25px #0002;
}
.hero-subtitle {
  font-size: 16px;
  letter-spacing: 0.12em;
  margin-top: 26px;
  color: #fffffff0;
}
.hero-link {
  display: inline-flex;
  align-items: center;
  gap: 45px;
  font-size: 14px;
  margin-top: 34px;
  padding-bottom: 8px;
  border-bottom: 1px solid #ffffff8c;
}
.hero-location {
  position: absolute;
  right: var(--gutter);
  top: 44%;
  font-size: 11px;
  letter-spacing: 0.16em;
  writing-mode: vertical-rl;
  line-height: 2.4;
}
.hero-bottom {
  position: absolute;
  bottom: 31px;
  left: var(--gutter);
  right: var(--gutter);
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 12px;
  letter-spacing: 0.1em;
  padding-top: 22px;
  border-top: 1px solid #ffffff40;
}
.hero-bottom a {
  display: flex;
  align-items: center;
  gap: 26px;
}
.hero-bottom > span {
  display: flex;
  align-items: center;
  gap: 14px;
  color: #ffffffbd;
}
.hero-bottom i {
  height: 10px;
  width: 1px;
  background: #ffffff60;
}
.down-arrow {
  font-size: 24px;
  line-height: 1;
}
.vision {
  padding-top: 92px;
  padding-bottom: 70px;
}
.vision-grid {
  display: grid;
  grid-template-columns: 1.35fr 1fr;
  gap: 12%;
}
.vision h2 {
  font-size: clamp(34px, 3.6vw, 58px);
  line-height: 1.8;
  letter-spacing: 0.03em;
}
.vision-copy {
  max-width: 480px;
}
.vision-copy p {
  color: #626b5e;
  line-height: 2.1;
}
.vision-copy p:first-child {
  color: var(--ink);
}
.vision-copy .text-link {
  margin-top: 22px;
}
.vision-foot {
  margin-top: 72px;
  display: flex;
  gap: 0;
  border-top: 1px solid var(--line);
  padding-top: 28px;
  font-family: var(--serif);
  font-size: 17px;
  letter-spacing: 0.22em;
}
.vision-foot span {
  flex: 1;
}
.vision-foot span:not(:first-child) {
  border-left: 1px solid var(--line);
  padding-left: 36px;
}
.heritage {
  padding-top: 56px;
}
.heritage-grid {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 9%;
  align-items: center;
}
.since {
  display: flex;
  align-items: baseline;
  gap: 14px;
  margin-bottom: 38px;
  flex-wrap: wrap;
}
.since span {
  font-size: 12px;
  color: var(--muted);
}
.since strong {
  font-family: Georgia, serif;
  font-size: clamp(72px, 7vw, 110px);
  font-weight: 400;
  letter-spacing: -0.055em;
  line-height: 1;
}
.since span:last-child {
  flex-basis: 100%;
  letter-spacing: 0.12em;
  margin-top: -5px;
}
.heritage h2 {
  font-size: clamp(34px, 3.1vw, 49px);
  line-height: 1.7;
  letter-spacing: 0.04em;
  margin-bottom: 26px;
}
.heritage-story p {
  font-size: 15px;
  color: var(--muted);
  max-width: 470px;
}
.heritage-story .text-link {
  margin-top: 25px;
}
.heritage-figure img {
  width: 100%;
  aspect-ratio: auto;
  height: auto;
}
.image-button {
  display: block;
  width: 100%;
  padding: 0;
  position: relative;
  overflow: hidden;
}
.image-button img {
  transition: transform 0.7s;
}
.image-button:hover img {
  transform: scale(1.025);
}
.image-expand {
  position: absolute;
  right: 18px;
  bottom: 18px;
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  background: #f3f1ebeb;
  border-radius: 50%;
  font-size: 21px;
  line-height: 1;
}
figcaption {
  display: flex;
  justify-content: space-between;
  gap: 15px;
  font-size: 12px;
  color: var(--muted);
  margin-top: 15px;
  line-height: 1.8;
}
figcaption span:last-child {
  text-align: right;
  flex-shrink: 0;
}
.heritage-note {
  margin-top: 44px;
  display: flex;
  justify-content: space-between;
  gap: 24px;
  border-top: 1px solid var(--line);
  padding-top: 22px;
}
.heritage-note a {
  font-family: var(--serif);
  letter-spacing: 0.12em;
  font-size: 18px;
}
.heritage-note a span {
  font-family: sans-serif;
  font-size: 14px;
  margin-left: 16px;
}
.heritage-note p {
  font-size: 12px;
  color: var(--muted);
}
.plan {
  background: #e7e9e0;
  max-width: none;
}
.plan > .section-label,
.plan > .spatial-model,
.plan > .plan-grid,
.plan > .plan-details {
  max-width: 1624px;
  margin-left: auto;
  margin-right: auto;
}
.aerial-vision {
  scroll-margin-top: 20px;
}
.spatial-model {
  margin-bottom: 88px;
  scroll-margin-top: 20px;
}
.model-heading {
  display: flex;
  justify-content: space-between;
  align-items: end;
  gap: 32px;
  margin-bottom: 28px;
}
.model-heading h3 {
  font-size: clamp(26px, 3vw, 44px);
  line-height: 1.6;
  margin-top: 14px;
}
.model-heading > p {
  max-width: 330px;
  color: var(--muted);
  font-size: 14px;
}
.model-stage {
  position: relative;
  height: clamp(420px, 52vw, 760px);
  background: #eeece5;
  border: 1px solid var(--line);
  overflow: hidden;
}
.model-stage model-viewer,
.model-poster {
  width: 100%;
  height: 100%;
}
.model-stage model-viewer {
  display: block;
  --progress-bar-color: #9b7651;
}
.model-poster {
  position: absolute;
  inset: 0;
}
.model-poster img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.model-start {
  position: absolute;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  align-items: center;
  gap: 38px;
  padding: 15px 23px;
  background: var(--dark);
  color: var(--paper);
  font-size: 14px;
  white-space: nowrap;
}
.model-start span {
  font-size: 21px;
}
.model-start:disabled {
  opacity: 0.85;
}
.model-toolbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 16px 32px;
  margin-top: 20px;
}
.model-presets {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
.model-presets button {
  border: 1px solid #adb5a4;
  padding: 8px 16px;
  font-size: 13px;
}
.model-presets button[aria-pressed="true"] {
  color: var(--paper);
  background: var(--dark);
  border-color: var(--dark);
}
.model-status,
.model-instructions,
.model-note {
  font-size: 12px;
  color: var(--muted);
}
.model-instructions {
  margin-top: 12px;
}
.model-caption {
  max-width: 760px;
  margin-top: 24px;
  font-size: 14px;
  color: var(--muted);
}
.model-materials {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  list-style: none;
  margin-top: 20px;
  padding: 0;
  font-size: 12px;
  color: var(--muted);
}
.model-materials img {
  width: 80px;
  height: 56px;
  object-fit: cover;
  margin-bottom: 8px;
}
.model-note {
  padding-top: 16px;
  margin-top: 18px;
  border-top: 1px solid var(--line);
}
.spatial-model [hidden] {
  display: none;
}
@media (max-width: 720px) {
  .spatial-model {
    margin-bottom: 56px;
  }
  .model-heading {
    display: block;
  }
  .model-heading > p {
    margin-top: 16px;
    max-width: none;
  }
  .model-start {
    bottom: 24px;
  }
  .model-presets button {
    padding: 8px 13px;
  }
}
.plan-grid {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 10%;
  align-items: center;
}
.plan h2 {
  font-size: clamp(36px, 3.5vw, 56px);
  line-height: 1.7;
  letter-spacing: 0.06em;
}
.plan-intro > p {
  max-width: 420px;
  font-size: 15px;
  color: #626b5e;
  margin-top: 24px;
}
.plan-principles {
  margin: 32px 0 0;
  max-width: 430px;
}
.plan-principles div {
  display: flex;
  align-items: center;
  gap: 28px;
  padding: 13px 0;
  border-top: 1px solid #bec6b5;
}
.plan-principles dt {
  font-family: var(--serif);
  font-size: 20px;
}
.plan-principles dd {
  margin: 0;
  color: #626b5e;
  font-size: 14px;
}
.relationship-heading {
  display: flex;
  justify-content: space-between;
  font-size: 13px;
  letter-spacing: 0.08em;
  padding-bottom: 22px;
}
.site-map {
  display: block;
  width: 100%;
  height: auto;
  overflow: visible;
}
.map-context {
  fill: #d6dbce;
}
.map-road {
  fill: none;
  stroke: #f3f1eb;
  stroke-width: 43;
}
.map-road-edge {
  fill: none;
  stroke: #bdc6b5;
  stroke-width: 1;
}
.map-site {
  fill: #f2f1e8;
  stroke: #aab49f;
}
.map-discussion {
  fill: none;
  stroke: #9b7651;
  stroke-width: 2;
  stroke-dasharray: 7 5;
}
.map-building {
  fill: #5d6a56;
  stroke: #45533e;
  stroke-width: 1.5;
}
.map-existing {
  fill: #cdd3c4;
  stroke: #a6b19c;
}
.map-proposal {
  fill: #ddc6a7;
  stroke: #a88961;
  stroke-dasharray: 4 3;
}
.map-step {
  fill: none;
  stroke: #a88961;
  stroke-width: 1;
}
.map-street {
  fill: #d6dfd1;
}
.map-court {
  fill: #f7f4ea;
  stroke: #c8cbb9;
}
.map-walk {
  fill: none;
  stroke: #ae8d65;
  stroke-width: 3;
  stroke-dasharray: 4 5;
}
.map-garden {
  fill: #dce3cf;
}
.map-tree {
  fill: #b3c29e;
  stroke: #93a77b;
}
.site-map text {
  font-family: "PingFang SC", "Microsoft YaHei", sans-serif;
}
.map-road-label {
  fill: #4c5b42;
  font-size: 22px;
  letter-spacing: 4px;
  text-anchor: middle;
}
.map-building-label {
  fill: #fff;
  font-size: 17px;
  letter-spacing: 2px;
}
.map-label {
  fill: #4c5b42;
  font-size: 19px;
  letter-spacing: 2px;
}
.map-small {
  fill: #68755d;
  font-size: 15px;
}
.map-entry circle {
  fill: var(--accent);
  stroke: var(--paper);
  stroke-width: 2;
}
.map-entry path {
  fill: none;
  stroke: var(--accent);
  stroke-width: 1.5;
}
.map-entry text {
  fill: #735635;
  font-size: 19px;
}
.map-marker circle {
  fill: #f3f1eb;
  stroke: #9b7651;
}
.map-marker text {
  fill: #735635;
  font-size: 14px;
  text-anchor: middle;
}
.map-key {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 24px;
  font-size: 12px;
  margin: 12px 0 20px;
}
.diagram-note {
  font-size: 12px;
  color: #5f6c56;
  text-align: center;
}
.plan-details {
  margin-top: 58px;
  border-top: 1px solid #bbc3b2;
  border-bottom: 1px solid #bbc3b2;
}
.plan-details summary {
  padding: 18px 0;
  font-size: 14px;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
}
.plan-details summary > span {
  font-size: 20px;
  line-height: 1.4;
}
.plan-details > div {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
  padding-bottom: 24px;
  font-size: 14px;
  color: #626b5e;
}
.plan-details p + p {
  margin: 0;
}
summary {
  list-style: none;
}
summary::-webkit-details-marker {
  display: none;
}
details[open] summary > b,
details[open] summary > span[aria-hidden] {
  transform: rotate(45deg);
}
.photo-note {
  color: var(--muted);
  font-size: 12px;
  margin-top: 18px;
}
.heritage-figure figcaption a {
  text-decoration: underline;
  text-underline-offset: 4px;
}
.scene-index {
  display: flex;
  flex-wrap: wrap;
  gap: 14px 32px;
  padding: 30px 0 22px;
  margin-top: 24px;
  border-bottom: 1px solid var(--line);
  font-size: 13px;
}
.scene-index a {
  padding: 6px 0;
}
.scene-index a:hover {
  color: var(--accent);
}
.scene-feature {
  margin-top: 72px;
  scroll-margin-top: 20px;
}
.scene-heading {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  align-items: end;
  gap: 12%;
  margin-bottom: 30px;
}
.scene-heading .eyebrow {
  color: var(--muted);
  font-size: 12px;
  letter-spacing: 0.15em;
}
.scene-heading h3 {
  font-size: clamp(30px, 3vw, 46px);
  line-height: 1.7;
  letter-spacing: 0.04em;
  margin-top: 16px;
}
.scene-heading > p {
  color: var(--muted);
  font-size: 15px;
  line-height: 2.1;
  max-width: 460px;
}
.scene-feature img {
  width: 100%;
  height: auto;
}
#scene-museum {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 6%;
  align-items: center;
  padding: 48px 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
#scene-museum .scene-heading {
  display: block;
  margin-bottom: 0;
}
#scene-museum .scene-heading > p {
  margin-top: 22px;
}
.scene-program {
  display: flex;
  flex-wrap: wrap;
  gap: 12px 36px;
  font-size: 13px;
  color: var(--muted);
  border-top: 1px solid var(--line);
  padding-top: 20px;
  margin-top: 24px;
}
.culture {
  padding-top: 72px;
  background: #eaede4;
}
.culture-source {
  font-size: 12px;
  color: var(--muted);
  margin-top: 36px;
}
.culture-source a {
  text-decoration: underline;
  text-underline-offset: 4px;
}
.value {
  padding-top: 50px;
  padding-bottom: 110px;
}
.value .section-heading h2 {
  font-size: clamp(34px, 3.3vw, 52px);
}
.value-columns {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 7%;
  margin-top: 64px;
}
.value-columns article {
  border-top: 1px solid var(--line);
  padding-top: 20px;
}
.value-number {
  font-family: Georgia, serif;
  font-size: 38px;
  color: #748168;
}
.value h3 {
  font-family: var(--serif);
  font-size: 24px;
  margin-top: 24px;
}
.value-columns p {
  color: var(--muted);
  font-size: 15px;
  margin-top: 17px;
  max-width: 350px;
}
.together {
  min-height: 490px;
  position: relative;
  isolation: isolate;
  color: white;
  text-align: center;
  background: #354033;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 80px var(--gutter);
}
.together-content h2 {
  font-size: clamp(43px, 4.5vw, 72px);
  line-height: 1.6;
  letter-spacing: 0.08em;
  margin-top: 25px;
}
.together-content > p:not(.eyebrow) {
  font-size: 16px;
  margin-top: 26px;
  line-height: 2.1;
  letter-spacing: 0.06em;
}
.light-link {
  display: inline-flex;
  align-items: center;
  gap: 45px;
  padding: 12px 0;
  border-bottom: 1px solid #ffffff9c;
  margin-top: 29px;
  font-size: 14px;
}
.collaboration {
  padding-top: 75px;
  padding-bottom: 70px;
}
.collaboration .section-label {
  margin-bottom: 10px;
}
.collaboration-rows details {
  border-bottom: 1px solid var(--line);
}
.collaboration-rows summary {
  display: grid;
  grid-template-columns: 1fr 1fr 24px;
  gap: 25px;
  align-items: center;
  padding: 25px 0;
  cursor: pointer;
}
.collaboration-rows summary span:first-child {
  font-family: var(--serif);
  font-size: 24px;
}
.collaboration-rows summary span:nth-child(2) {
  color: var(--muted);
  font-size: 13px;
  letter-spacing: 0.12em;
}
.collaboration-rows summary b {
  font-size: 24px;
  font-weight: 300;
  line-height: 1;
  text-align: right;
  transition: transform 0.2s;
}
.collaboration-rows details > p {
  font-size: 15px;
  color: var(--muted);
  padding-bottom: 28px;
  max-width: 740px;
}
.contact-line {
  display: flex;
  gap: 50px;
  align-items: center;
  flex-wrap: wrap;
  font-size: 14px;
  margin-top: 40px;
}
.contact-line > span {
  color: var(--muted);
  font-size: 13px;
}
.contact-line a {
  text-decoration: underline;
  text-underline-offset: 4px;
}
.contact-line p + p {
  margin: 0;
}
.site-footer {
  background: var(--dark);
  color: #f0f0e5;
  padding: 64px var(--gutter) 28px;
}
.footer-top {
  display: flex;
  align-items: center;
  gap: 70px;
  padding-bottom: 48px;
}
.footer-brand {
  font-size: 31px;
  letter-spacing: 0.24em;
  line-height: 1.5;
}
.footer-brand small {
  display: block;
  font:
    10px/2.4 "Helvetica Neue",
    sans-serif;
  letter-spacing: 0.17em;
}
.footer-top > p {
  font-family: var(--serif);
  font-size: 20px;
  color: #c0c8b6;
  letter-spacing: 0.15em;
}
.back-top {
  margin-left: auto;
  border: 1px solid #c4ccb475;
  border-radius: 50%;
  width: 45px;
  height: 45px;
  display: grid;
  place-items: center;
  font-size: 22px;
}
.footer-bottom {
  display: flex;
  gap: 24px;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  border-top: 1px solid #c4ccb438;
  padding-top: 23px;
  font-size: 12px;
  color: #bac3b2;
}
.footer-bottom > span {
  font-size: 10px;
  letter-spacing: 0.16em;
}
.plain-button {
  padding: 0;
  font-size: 12px;
  border-bottom: 1px solid #c4ccb460;
}
dialog {
  border: 0;
  padding: 0;
  color: var(--ink);
  max-height: 90svh;
  overscroll-behavior: contain;
}
dialog::backdrop {
  background: #111b17c9;
  backdrop-filter: blur(5px);
}
.notes-dialog {
  width: min(680px, calc(100% - 32px));
  background: var(--paper);
  padding: 60px 48px 46px;
}
.dialog-close {
  position: absolute;
  right: 13px;
  top: 8px;
  width: 44px;
  height: 44px;
  font-size: 32px;
  line-height: 1;
  z-index: 2;
  font-weight: 300;
}
.notes-dialog h2 {
  font-size: 34px;
  margin: 14px 0 25px;
}
.notes-dialog > p:not(.eyebrow) {
  font-size: 14px;
  line-height: 2.1;
  color: #666f60;
}
.notes-sources {
  border-top: 1px solid var(--line);
  margin-top: 28px;
  padding-top: 20px;
}
.notes-sources h3 {
  font-size: 14px;
  margin-bottom: 12px;
}
.notes-sources a {
  display: block;
  font-size: 13px;
  padding: 5px 0;
  text-decoration: underline;
  text-underline-offset: 4px;
}
.lightbox {
  background: #202b23;
  color: white;
  width: min(1400px, calc(100% - 32px));
  padding: 45px 16px 15px;
}
.lightbox > img {
  max-height: 76svh;
  object-fit: contain;
  width: 100%;
}
.lightbox > p {
  text-align: center;
  font-size: 12px;
  padding-top: 13px;
  color: #d2d9ca;
}
@media (min-width: 1800px) {
  .hero-content {
    left: max(var(--gutter), calc((100vw - 1624px) / 2));
  }
}
@media (max-width: 1000px) {
  :root {
    --header: 82px;
  }
  .desktop-nav {
    gap: 24px;
    font-size: 13px;
  }
  .desktop-nav a:last-child {
    margin-left: 0;
  }
  .section {
    padding-top: 72px;
    padding-bottom: 72px;
  }
  .section-label {
    margin-bottom: 45px;
  }
  .vision-grid {
    gap: 8%;
    grid-template-columns: 1.1fr 1fr;
  }
  .vision h2 {
    font-size: 36px;
  }
  .heritage-grid {
    gap: 6%;
    grid-template-columns: 1fr 1fr;
  }
  .heritage-figure img {
    aspect-ratio: auto;
  }
  .heritage-story p {
    font-size: 14px;
  }
  .plan-grid {
    gap: 6%;
    grid-template-columns: 1fr 1.1fr;
  }

  .value-columns {
    gap: 4%;
  }
  .value h3 {
    font-size: 22px;
  }
  .value-columns p {
    font-size: 14px;
  }
  .footer-top {
    gap: 40px;
  }
}
@media (max-width: 720px) {
  :root {
    --gutter: 24px;
    --header: 78px;
  }
  .site-header.is-fixed {
    height: 70px;
  }
  .brand-seal {
    width: 29px;
    height: 37px;
    font-size: 22px;
  }
  .brand {
    gap: 11px;
  }
  .brand-name {
    font-size: 20px;
  }
  .brand-name small {
    font-size: 8px;
  }
  .desktop-nav {
    display: none;
  }
  .menu-toggle {
    display: flex;
  }
  .mobile-menu {
    display: flex;
    position: fixed;
    inset: 0;
    background: var(--paper);
    color: var(--ink);
    z-index: 19;
    flex-direction: column;
    justify-content: flex-start;
    overflow-y: auto;
    padding: 100px 32px 40px;
    visibility: hidden;
    opacity: 0;
    transition:
      opacity 0.2s,
      visibility 0.2s;
  }
  .mobile-menu a {
    font-family: var(--serif);
    font-size: 29px;
    padding: 10px 0;
    border-bottom: 1px solid var(--line);
    line-height: 1.8;
  }
  .mobile-menu a small {
    font-family: Arial, sans-serif;
    font-size: 11px;
    color: var(--muted);
    margin-right: 26px;
  }
  .mobile-menu > p {
    font-size: 12px;
    color: var(--muted);
    margin-top: 30px;
  }
  .menu-open .site-header {
    position: fixed;
    background: var(--paper);
    color: var(--ink);
    border-color: var(--line);
  }
  .menu-open .mobile-menu {
    opacity: 1;
    visibility: visible;
  }
  .menu-open .menu-toggle span:first-child {
    transform: translateY(4px) rotate(45deg);
  }
  .menu-open .menu-toggle span:last-child {
    transform: translateY(-4px) rotate(-45deg);
  }
  .hero {
    min-height: 680px;
    max-height: 1000px;
  }
  .hero-image {
    object-position: 80% center;
  }
  .hero-shade {
    background:
      linear-gradient(90deg, #14231b6e, #14231b19),
      linear-gradient(0deg, #12221990, transparent 80%);
  }
  .hero-content {
    bottom: 23%;
    right: 24px;
  }
  .hero-content .eyebrow {
    font-size: 10px;
    letter-spacing: 0.18em;
    margin-bottom: 25px;
  }
  .hero h1 {
    font-size: clamp(44px, 11.2vw, 74px);
    line-height: 1.5;
    letter-spacing: 0.07em;
  }
  .hero-subtitle {
    font-size: 13px;
    letter-spacing: 0.04em;
    margin-top: 24px;
  }
  .hero-link {
    margin-top: 26px;
    font-size: 13px;
  }
  .hero-location {
    display: none;
  }
  .hero-bottom {
    bottom: 25px;
    align-items: flex-end;
  }
  .hero-bottom > span {
    display: block;
    font-size: 10px;
    text-align: right;
    max-width: 140px;
    line-height: 1.9;
  }
  .hero-bottom i {
    display: none;
  }
  .hero-bottom > span > span {
    display: block;
  }
  .hero-bottom > span:after {
    content: "";
  }
  .hero-bottom > a {
    font-size: 11px;
    gap: 16px;
  }
  .hero-bottom > span {
    max-width: 130px;
  }
  .section {
    padding-top: 58px;
    padding-bottom: 58px;
  }
  .section-label {
    margin-bottom: 34px;
    font-size: 12px;
    padding-bottom: 18px;
  }
  .section-label > span:last-child {
    font-size: 10px;
    letter-spacing: 0.08em;
    align-self: center;
  }
  .vision-grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }
  .vision h2 {
    font-size: clamp(28px, 6.5vw, 42px);
    line-height: 1.8;
  }
  .vision-copy p {
    font-size: 15px;
  }
  .vision-copy {
    max-width: none;
  }
  .vision-copy .text-link {
    margin-top: 17px;
  }
  .vision-foot {
    margin-top: 38px;
    padding-top: 23px;
    gap: 15px;
    font-size: 13px;
    letter-spacing: 0.1em;
    justify-content: space-between;
  }
  .vision-foot span {
    flex: none;
  }
  .vision-foot span:not(:first-child) {
    padding-left: 0;
    border: 0;
  }
  .heritage {
    padding-top: 15px;
  }
  .heritage-grid {
    grid-template-columns: 1fr;
    gap: 38px;
  }
  .heritage-story {
    display: grid;
    grid-template-columns: 1fr;
  }
  .since {
    margin-bottom: 29px;
  }
  .since strong {
    font-size: 85px;
  }
  .heritage h2 {
    font-size: 34px;
  }
  .heritage-story p {
    font-size: 15px;
    max-width: none;
  }
  .heritage-story .text-link {
    justify-self: start;
  }
  .heritage-figure img {
    aspect-ratio: auto;
  }
  .heritage-note {
    display: block;
    margin-top: 30px;
  }
  .heritage-note p {
    margin-top: 13px;
    line-height: 1.8;
  }
  .plan-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .plan h2 {
    font-size: 36px;
  }
  .plan-principles {
    max-width: none;
  }
  .plan-intro > p {
    max-width: none;
  }

  .relationship-heading {
    font-size: 12px;
  }
  .plan-details {
    margin-top: 30px;
  }
  .plan-details > div {
    display: block;
    font-size: 13px;
  }
  .plan-details p + p {
    margin-top: 15px;
  }
  .section-heading {
    display: block;
  }
  .section-heading h2 {
    font-size: 32px;
    line-height: 1.7;
  }
  .section-heading > p {
    font-size: 14px;
    margin-top: 18px;
  }

  .value {
    padding-top: 12px;
    padding-bottom: 62px;
  }
  .value .section-heading h2 {
    font-size: 30px;
  }
  .value-columns {
    grid-template-columns: 1fr;
    gap: 30px;
    margin-top: 35px;
  }
  .value-columns article {
    display: grid;
    grid-template-columns: 42px 1fr;
    column-gap: 22px;
    padding-top: 18px;
  }
  .value-number {
    grid-row: 1/3;
    font-size: 31px;
    line-height: 1.8;
  }
  .value h3 {
    font-size: 22px;
    margin: 0;
  }
  .value-columns p {
    font-size: 14px;
    max-width: none;
    margin-top: 10px;
  }
  .together {
    min-height: 440px;
    padding: 70px 24px;
  }
  .together-content .eyebrow {
    font-size: 10px;
  }
  .together-content h2 {
    font-size: 40px;
    margin-top: 27px;
    line-height: 1.8;
  }
  .together-content > p:not(.eyebrow) {
    font-size: 13px;
    letter-spacing: 0.04em;
    margin-top: 25px;
  }
  .collaboration-rows summary {
    grid-template-columns: 1fr 20px;
    gap: 0 15px;
    padding: 22px 0;
  }
  .collaboration-rows summary span:first-child {
    font-size: 22px;
  }
  .collaboration-rows summary span:nth-child(2) {
    grid-row: 2;
    font-size: 11px;
    margin-top: 5px;
  }
  .collaboration-rows summary b {
    grid-column: 2;
    grid-row: 1/3;
  }
  .collaboration-rows details > p {
    font-size: 14px;
  }
  .contact-line {
    gap: 9px 24px;
    margin-top: 28px;
    font-size: 13px;
  }
  .contact-line > p {
    flex-basis: 100%;
  }
  .site-footer {
    padding-top: 44px;
    padding-bottom: 26px;
  }
  .footer-top {
    gap: 20px;
    flex-wrap: wrap;
    padding-bottom: 32px;
  }
  .footer-brand {
    font-size: 26px;
    order: 1;
  }
  .footer-brand small {
    font-size: 9px;
  }
  .footer-top > p {
    font-size: 17px;
    order: 3;
    flex-basis: 100%;
    margin-top: 4px;
  }
  .back-top {
    order: 2;
  }
  .footer-bottom {
    gap: 12px 24px;
    font-size: 11px;
    align-items: flex-start;
  }
  .footer-bottom > p {
    flex-basis: 100%;
  }
  .footer-bottom > span {
    margin-left: auto;
    align-self: center;
  }
  .notes-dialog {
    padding: 52px 26px 32px;
  }
  .notes-dialog h2 {
    font-size: 28px;
  }
  .notes-dialog > p:not(.eyebrow) {
    font-size: 13px;
  }
  .notes-sources a {
    font-size: 12px;
  }
  figcaption {
    font-size: 11px;
    display: block;
  }
  figcaption span:last-child {
    display: block;
    text-align: left;
    font-size: 10px;
    margin-top: 3px;
  }
}
@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
  *,
  *:before,
  *:after {
    transition: none !important;
    animation: none !important;
  }
}
@media print {
  .site-header,
  .mobile-menu,
  .hero-link,
  .hero-bottom,
  .back-top,
  .dialog-close,
  dialog,
  .plain-button {
    display: none !important;
  }
  .hero {
    height: 650px;
  }
  .section {
    padding: 35px 25px;
  }

  body {
    background: #fff;
  }
  a[href^="http"]:after {
    content: " (" attr(href) ")";
    font-size: 9px;
    word-break: break-all;
  }

  .hero-image,
  .together {
    print-color-adjust: exact;
  }
  .site-footer {
    print-color-adjust: exact;
  }
}

@media (max-width: 720px) and (max-height: 720px) {
  .mobile-menu a {
    font-size: 25px;
    padding: 7px 0;
  }
  .mobile-menu > p {
    margin-top: 22px;
  }
}

@media (max-width: 1000px) {
  .scene-heading {
    gap: 7%;
  }
  .scene-heading > p {
    font-size: 14px;
  }
}
@media (max-width: 720px) {
  .scene-index {
    gap: 8px 22px;
    padding-top: 16px;
    margin-top: 16px;
    font-size: 12px;
  }
  .scene-feature {
    margin-top: 48px;
  }
  #scene-museum {
    grid-template-columns: 1fr;
    gap: 24px;
    padding: 32px 0;
  }
  .scene-heading {
    grid-template-columns: 1fr;
    gap: 18px;
    margin-bottom: 24px;
  }
  .scene-heading .eyebrow {
    font-size: 11px;
  }
  .scene-heading h3 {
    font-size: clamp(25px, 6.8vw, 36px);
    margin-top: 12px;
  }
  .scene-heading > p {
    font-size: 14px;
    max-width: none;
  }
  .scene-program {
    gap: 8px 24px;
    font-size: 12px;
    padding-top: 16px;
    margin-top: 18px;
  }
  .scene-feature figcaption {
    font-size: 11px;
  }
  .culture {
    padding-top: 50px;
  }
  .map-key {
    gap: 18px;
    font-size: 11px;
  }
  .photo-note {
    font-size: 11px;
  }
}
@media print {
  .scene-index {
    display: none;
  }
  .scene-feature {
    break-inside: avoid;
    margin-top: 30px;
  }
}
