:root {
  --paper: #f3efe4;
  --paper-deep: #e9e1d0;
  --ink: #1f211c;
  --muted: #6c6c60;
  --red: #b73326;
  --red-dark: #7f241b;
  --green: #31483a;
  --line: rgba(31, 33, 28, 0.2);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background:
    radial-gradient(circle at 10% 20%, rgba(183, 51, 38, 0.035), transparent 25%),
    radial-gradient(circle at 80% 70%, rgba(49, 72, 58, 0.04), transparent 24%),
    var(--paper);
  font-family: "Noto Serif SC", "Songti SC", "STSong", "SimSun", serif;
  font-size: 18px;
  -webkit-font-smoothing: antialiased;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: 20;
  opacity: 0.16;
  pointer-events: none;
  background-image:
    repeating-linear-gradient(17deg, rgba(52, 43, 28, .05) 0 1px, transparent 1px 5px),
    repeating-linear-gradient(103deg, rgba(255, 255, 255, .07) 0 1px, transparent 1px 7px);
  mix-blend-mode: multiply;
}

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

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

button {
  color: inherit;
  font: inherit;
}

::selection {
  color: #fff;
  background: var(--red);
}

.site-header {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: min(100% - 8vw, 1480px);
  height: 104px;
  margin: 0 auto;
  border-bottom: 1px solid rgba(255, 255, 255, 0.32);
  color: #fff;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  font-family: Arial, "PingFang SC", sans-serif;
  font-size: 14px;
  letter-spacing: 0.18em;
}

.brand-seal {
  display: grid;
  width: 38px;
  height: 38px;
  place-items: center;
  border: 1px solid currentColor;
  background: var(--red);
  color: #f9eee1;
  font-family: "Kaiti SC", "STKaiti", serif;
  font-size: 21px;
  transform: rotate(-2deg);
}

.brand-seal.small {
  width: 34px;
  height: 34px;
  font-size: 19px;
}

nav {
  display: flex;
  gap: 38px;
  font-family: Arial, "PingFang SC", sans-serif;
  font-size: 14px;
  letter-spacing: 0.08em;
}

nav a {
  position: relative;
  padding: 8px 0;
}

nav a::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  height: 1px;
  background: currentColor;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.25s ease;
}

nav a:hover::after,
nav a:focus-visible::after {
  transform: scaleX(1);
}

.hero {
  position: relative;
  display: grid;
  min-height: 860px;
  grid-template-columns: 46% 54%;
  overflow: hidden;
  background: #25362d;
  color: #f8f1e6;
}

.hero-copy {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 150px 6vw 82px 7vw;
  background:
    linear-gradient(135deg, rgba(255,255,255,.035) 0 1px, transparent 1px 46px),
    #26382e;
}

.eyebrow {
  margin: 0 0 32px;
  font-family: Arial, "PingFang SC", sans-serif;
  font-size: 14px;
  letter-spacing: 0.28em;
  text-transform: uppercase;
}

.eyebrow.light {
  color: rgba(255,255,255,.66);
}

.hero h1 {
  margin: -18px 0 8px;
  font-family: "Kaiti SC", "STKaiti", "Songti SC", serif;
  font-size: clamp(110px, 13vw, 205px);
  font-weight: 400;
  letter-spacing: -0.13em;
  line-height: 0.92;
}

.hero h1 span {
  color: #e2b445;
}

.hero-lead {
  margin: 10px 0 56px 16px;
  color: rgba(255,255,255,.84);
  font-size: clamp(19px, 1.6vw, 26px);
  line-height: 1.75;
  letter-spacing: 0.08em;
}

.hero-award {
  display: flex;
  width: min(360px, 100%);
  align-items: center;
  gap: 26px;
  padding: 20px 0;
  border-top: 1px solid rgba(255,255,255,.28);
  border-bottom: 1px solid rgba(255,255,255,.28);
}

.hero-award strong {
  color: #e2b445;
  font-family: Georgia, serif;
  font-size: 42px;
  font-weight: 400;
}

.hero-award span {
  font-size: 14px;
  line-height: 1.65;
  letter-spacing: 0.12em;
}

.scroll-cue {
  display: inline-flex;
  width: fit-content;
  align-items: center;
  gap: 22px;
  margin-top: 56px;
  font-family: Arial, "PingFang SC", sans-serif;
  font-size: 14px;
  letter-spacing: 0.14em;
}

.scroll-cue span {
  color: #e2b445;
  font-size: 20px;
  transition: transform .2s ease;
}

.scroll-cue:hover span {
  transform: translateY(5px);
}

.hero-portrait {
  position: relative;
  min-height: 860px;
  margin: 0;
  background: #17221d;
}

.hero-portrait::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(38,56,46,.4), transparent 28%), linear-gradient(0deg, rgba(9,14,11,.38), transparent 45%);
}

.hero-portrait img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 54% center;
  filter: saturate(.74) contrast(1.05) sepia(.08);
}

.hero-portrait figcaption {
  position: absolute;
  z-index: 2;
  right: 5vw;
  bottom: 35px;
  color: rgba(255,255,255,.6);
  font-family: Arial, "PingFang SC", sans-serif;
  font-size: 14px;
  letter-spacing: .06em;
}

.hero-stroke {
  position: absolute;
  z-index: 3;
  top: 118px;
  left: calc(46% - 40px);
  width: 83px;
  height: 510px;
  border-left: 2px solid rgba(226,180,69,.8);
  transform: rotate(4deg);
  transform-origin: top;
}

.hero-stroke::before,
.hero-stroke::after {
  content: "";
  position: absolute;
  left: -9px;
  width: 24px;
  height: 2px;
  background: rgba(226,180,69,.8);
  transform: rotate(-8deg);
}

.hero-stroke::before { top: 15%; }
.hero-stroke::after { bottom: 10%; }

.opening,
.works-section,
.timeline-section {
  width: min(100% - 12vw, 1320px);
  margin: 0 auto;
  padding: 140px 0;
}

.section-mark {
  display: inline-flex;
  align-items: center;
  gap: 18px;
  margin-bottom: 44px;
  color: var(--red);
  font-family: Arial, "PingFang SC", sans-serif;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: .22em;
  text-transform: uppercase;
}

.section-mark::before {
  content: "";
  width: 42px;
  height: 1px;
  background: currentColor;
}

.opening-grid {
  display: grid;
  grid-template-columns: minmax(280px, .85fr) 1.25fr;
  gap: 10vw;
}

.opening h2,
.section-head h2,
.philosophy h2,
.award-section h2,
.closing h2 {
  margin: 0;
  font-weight: 400;
  letter-spacing: -.04em;
}

.opening h2 {
  color: var(--red-dark);
  font-family: "Kaiti SC", "STKaiti", serif;
  font-size: clamp(58px, 6.3vw, 94px);
  line-height: 1.12;
}

.opening-text {
  columns: 2;
  column-gap: 42px;
  font-size: 18px;
  line-height: 2;
}

.opening-text p {
  margin: 0 0 1.6em;
  break-inside: avoid;
}

.opening-text .dropcap::first-letter {
  float: left;
  margin: 0.05em .14em 0 0;
  color: var(--red);
  font-family: "Kaiti SC", serif;
  font-size: 4.9em;
  line-height: .8;
}

.big-quote {
  position: relative;
  width: min(820px, 76%);
  margin: 120px 0 0 auto;
  padding: 65px 15px 0 135px;
  border-top: 1px solid var(--line);
}

.big-quote > span {
  position: absolute;
  top: 12px;
  left: 0;
  color: var(--red);
  font-family: Georgia, serif;
  font-size: 140px;
  line-height: 1;
}

.big-quote p {
  margin: 0 0 12px;
  font-size: clamp(34px, 4.5vw, 68px);
  letter-spacing: .08em;
}

.big-quote cite {
  color: var(--muted);
  font-size: 14px;
  font-style: normal;
  letter-spacing: .16em;
}

.turning-point {
  display: grid;
  min-height: 680px;
  grid-template-columns: 56% 44%;
  background: #181d19;
  color: #f3eadc;
}

.turning-image {
  position: relative;
  min-height: 680px;
  overflow: hidden;
}

.turning-image::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, transparent 65%, #181d19 100%);
}

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

.turning-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 80px 7vw 80px 5vw;
}

.turning-copy h2 {
  margin: 0 0 38px;
  color: #d7ab46;
  font-size: clamp(40px, 4.2vw, 66px);
  font-weight: 400;
}

.turning-copy > p:not(.eyebrow) {
  margin: 0 0 22px;
  color: rgba(255,255,255,.7);
  font-size: 18px;
  line-height: 1.95;
}

.ink-note {
  width: fit-content;
  margin-top: 24px;
  padding-bottom: 6px;
  border-bottom: 1px solid #d7ab46;
  color: #fff;
  font-family: "Kaiti SC", serif;
  font-size: 22px;
}

.section-head {
  display: grid;
  align-items: end;
  grid-template-columns: 1fr minmax(260px, 430px);
  gap: 8vw;
  margin-bottom: 72px;
}

.section-head .section-mark {
  margin-bottom: 24px;
}

.section-head h2 {
  font-size: clamp(46px, 5vw, 76px);
  line-height: 1.15;
}

.section-head > p {
  margin: 0;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.9;
}

.works-grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 30px 24px;
}

.work-card {
  display: flex;
  min-width: 0;
  flex-direction: column;
  grid-column: span 3;
  padding: 0;
  border: 0;
  background: transparent;
  cursor: pointer;
  text-align: left;
}

.work-card.card-1,
.work-card.card-6 {
  grid-column: span 6;
}

.work-card.card-4,
.work-card.card-8 {
  grid-column: span 3;
}

.work-image {
  position: relative;
  display: block;
  aspect-ratio: 4 / 5;
  overflow: hidden;
  background: #e2dccf;
  box-shadow: 0 12px 35px rgba(39,30,19,.08);
}

.card-1 .work-image,
.card-6 .work-image {
  aspect-ratio: 16 / 10;
}

.work-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .55s cubic-bezier(.2,.7,.2,1), filter .35s ease;
}

.work-card:hover .work-image img,
.work-card:focus-visible .work-image img {
  transform: scale(1.035);
  filter: saturate(1.08);
}

.work-card:focus-visible {
  outline: 2px solid var(--red);
  outline-offset: 6px;
}

.work-meta {
  display: grid;
  align-items: start;
  grid-template-columns: 36px 1fr auto;
  gap: 12px;
  padding: 17px 2px 0;
}

.work-index {
  padding-top: 4px;
  color: var(--red);
  font-family: Georgia, serif;
  font-size: 14px;
}

.work-meta strong,
.work-meta small {
  display: block;
}

.work-meta strong {
  font-size: 17px;
  font-weight: 500;
  line-height: 1.4;
}

.work-meta small {
  margin-top: 5px;
  color: var(--muted);
  font-family: Arial, "PingFang SC", sans-serif;
  font-size: 14px;
  letter-spacing: .1em;
}

.work-arrow {
  font-family: Arial, sans-serif;
  font-size: 18px;
  transition: transform .2s ease;
}

.work-card:hover .work-arrow {
  transform: translate(3px, -3px);
}

.gallery-note {
  margin: 58px 0 0;
  padding-top: 20px;
  border-top: 1px solid var(--line);
  color: var(--muted);
  font-family: Arial, "PingFang SC", sans-serif;
  font-size: 14px;
  letter-spacing: .04em;
}

.modal[hidden] { display: none; }

.modal {
  position: fixed;
  z-index: 50;
  inset: 0;
  display: grid;
  place-items: center;
  padding: 4vw;
}

.modal-backdrop {
  position: absolute;
  inset: 0;
  border: 0;
  background: rgba(19, 22, 18, .9);
  cursor: zoom-out;
  backdrop-filter: blur(8px);
}

.modal-panel {
  position: relative;
  z-index: 1;
  display: grid;
  width: min(1180px, 94vw);
  height: min(750px, 88vh);
  grid-template-columns: minmax(0, 1.65fr) minmax(300px, .75fr);
  background: #f0ebdf;
  box-shadow: 0 30px 100px rgba(0,0,0,.35);
}

.modal-image {
  position: relative;
  min-height: 0;
  background: #d8d0c2;
}

.modal-image img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.modal-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 58px 48px;
}

.modal-copy > span {
  color: var(--red);
  font-family: Georgia, serif;
  font-size: 14px;
  letter-spacing: .16em;
}

.modal-copy h3 {
  margin: 26px 0 10px;
  font-size: clamp(30px, 3vw, 46px);
  font-weight: 400;
  line-height: 1.2;
}

.modal-copy p {
  color: #595a52;
  font-size: 14px;
  line-height: 1.9;
}

.modal-copy .modal-role {
  margin: 0 0 22px;
  color: var(--red-dark);
  font-size: 14px;
}

.modal-close {
  position: absolute;
  z-index: 2;
  top: 18px;
  right: 20px;
  width: 42px;
  height: 42px;
  border: 0;
  background: transparent;
  cursor: pointer;
  font-family: Arial, sans-serif;
  font-size: 28px;
}

.modal-nav {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  margin-top: auto;
  padding-top: 32px;
  border-top: 1px solid var(--line);
}

.modal-nav button {
  padding: 0;
  border: 0;
  background: transparent;
  cursor: pointer;
  font-size: 14px;
}

.philosophy {
  display: grid;
  grid-template-columns: 42% 58%;
  background: var(--red-dark);
  color: #f3eadb;
}

.philosophy-title {
  display: flex;
  min-height: 740px;
  flex-direction: column;
  justify-content: center;
  padding: 100px 7vw;
  border-right: 1px solid rgba(255,255,255,.18);
}

.light-mark {
  color: #e7bd66;
}

.philosophy-title h2 {
  font-size: clamp(46px, 5vw, 74px);
  line-height: 1.18;
}

.philosophy-title > p {
  width: min(390px, 100%);
  margin: 50px 0 0;
  padding-left: 30px;
  border-left: 1px solid #e7bd66;
  color: rgba(255,255,255,.72);
  font-size: 18px;
  line-height: 1.8;
}

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

.principles article {
  position: relative;
  min-height: 370px;
  padding: 66px 5vw 56px;
  border-right: 1px solid rgba(255,255,255,.16);
  border-bottom: 1px solid rgba(255,255,255,.16);
}

.principles article:nth-child(even) {
  border-right: 0;
}

.principles article:nth-child(n+3) {
  border-bottom: 0;
}

.principles article > span {
  color: #e7bd66;
  font-family: Georgia, serif;
  font-size: 14px;
}

.principles h3 {
  margin: 38px 0 20px;
  font-size: 40px;
  font-weight: 400;
}

.principles p {
  margin: 0;
  color: rgba(255,255,255,.66);
  font-size: 14px;
  line-height: 1.9;
}

.timeline-head {
  margin-bottom: 105px;
}

.timeline {
  position: relative;
  margin-left: 13vw;
}

.timeline::before {
  content: "";
  position: absolute;
  top: 6px;
  bottom: 6px;
  left: 142px;
  width: 1px;
  background: var(--line);
}

.timeline article {
  position: relative;
  display: grid;
  grid-template-columns: 142px 1fr;
  padding-bottom: 72px;
}

.timeline article::before {
  content: "";
  position: absolute;
  top: 6px;
  left: 137px;
  width: 11px;
  height: 11px;
  border: 2px solid var(--paper);
  border-radius: 50%;
  background: var(--red);
  box-shadow: 0 0 0 1px var(--red);
}

.timeline time {
  color: var(--red);
  font-family: Georgia, serif;
  font-size: 14px;
}

.timeline article > div {
  padding-left: 70px;
}

.timeline h3 {
  margin: -6px 0 15px;
  font-size: 28px;
  font-weight: 400;
}

.timeline p {
  width: min(600px, 100%);
  margin: 0;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.9;
}

.award-section {
  position: relative;
  display: grid;
  min-height: 760px;
  grid-template-columns: 46% 54%;
  align-items: center;
  overflow: hidden;
  background: #213229;
  color: #f5ecdd;
}

.award-section::before {
  content: "";
  position: absolute;
  inset: 0;
  opacity: .1;
  background: repeating-radial-gradient(ellipse at 10% 20%, transparent 0 24px, #fff 25px 26px, transparent 27px 52px);
}

.award-number {
  position: relative;
  z-index: 1;
  color: #d4a93f;
  font-family: Georgia, serif;
  font-size: clamp(190px, 29vw, 440px);
  line-height: .8;
  letter-spacing: -.12em;
  transform: translateX(-5vw);
}

.award-copy {
  position: relative;
  z-index: 1;
  width: min(560px, calc(100% - 11vw));
  padding: 90px 0;
}

.award-copy h2 {
  margin-bottom: 36px;
  font-size: clamp(52px, 6vw, 92px);
  line-height: 1.08;
}

.award-copy > p:not(.eyebrow) {
  color: rgba(255,255,255,.68);
  font-size: 18px;
  line-height: 1.95;
}

.award-copy a {
  display: inline-flex;
  gap: 16px;
  margin-top: 34px;
  padding-bottom: 8px;
  border-bottom: 1px solid #d4a93f;
  font-size: 14px;
  letter-spacing: .06em;
}

.vertical-copy {
  position: absolute;
  z-index: 1;
  top: 62px;
  right: 3vw;
  margin: 0;
  color: rgba(255,255,255,.45);
  font-family: "Kaiti SC", serif;
  font-size: 18px;
  letter-spacing: .25em;
  writing-mode: vertical-rl;
}

.closing {
  position: relative;
  min-height: 850px;
  overflow: hidden;
}

.closing-art {
  position: absolute;
  inset: 0;
}

.closing-art::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(243,239,228,.96) 0%, rgba(243,239,228,.9) 35%, rgba(243,239,228,.2) 77%, rgba(243,239,228,.04));
}

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

.closing-copy {
  position: relative;
  z-index: 1;
  display: flex;
  min-height: 850px;
  width: min(100% - 12vw, 1320px);
  flex-direction: column;
  justify-content: center;
  margin: 0 auto;
}

.closing-copy > p {
  margin: 0 0 30px;
  color: var(--red);
  font-size: 14px;
  letter-spacing: .22em;
}

.closing-copy h2 {
  width: 60%;
  font-family: "Kaiti SC", serif;
  font-size: clamp(56px, 7vw, 100px);
  line-height: 1.1;
}

.closing-copy > div {
  display: grid;
  width: min(660px, 58%);
  grid-template-columns: 1fr 1fr;
  gap: 35px;
  margin-top: 66px;
  color: #52544c;
  font-size: 14px;
  line-height: 1.9;
}

.closing-copy > div p {
  margin: 0;
}

footer {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
  padding: 72px 6vw 38px;
  background: #191c19;
  color: rgba(255,255,255,.72);
}

footer > div:first-child {
  display: flex;
  align-items: center;
  gap: 18px;
}

footer p {
  margin: 0;
  font-size: 14px;
  line-height: 1.8;
}

.sources {
  display: flex;
  justify-content: flex-end;
  gap: 24px;
  font-family: Arial, "PingFang SC", sans-serif;
  font-size: 14px;
}

.sources span {
  color: #d4a93f;
}

.sources a:hover {
  color: #fff;
}

.copyright {
  grid-column: 1 / -1;
  margin-top: 48px;
  padding-top: 20px;
  border-top: 1px solid rgba(255,255,255,.12);
  color: rgba(255,255,255,.36);
  font-family: Arial, "PingFang SC", sans-serif;
  font-size: 14px;
  text-align: right;
  letter-spacing: .05em;
}

@media (max-width: 1100px) {
  .hero { grid-template-columns: 48% 52%; }
  .hero-copy { padding-left: 6vw; }
  .opening-grid { gap: 6vw; }
  .opening-text { columns: 1; }
  .work-card { grid-column: span 4; }
  .work-card.card-1,
  .work-card.card-6 { grid-column: span 8; }
  .work-card.card-4,
  .work-card.card-8 { grid-column: span 4; }
  .timeline { margin-left: 4vw; }
  .award-section { grid-template-columns: 38% 62%; }
}

@media (max-width: 760px) {
  .site-header {
    width: calc(100% - 36px);
    height: 78px;
  }
  nav { gap: 15px; font-size: 14px; }
  nav a:nth-child(2) { display: none; }
  .brand { font-size: 14px; }
  .brand-seal { width: 32px; height: 32px; font-size: 18px; }
  .hero {
    display: block;
    min-height: 900px;
  }
  .hero-copy {
    position: absolute;
    inset: 0;
    justify-content: flex-end;
    padding: 130px 26px 56px;
    background: linear-gradient(0deg, #1f3128 7%, rgba(31,49,40,.92) 42%, rgba(20,28,24,.12) 78%);
  }
  .hero-copy .eyebrow { margin-bottom: 20px; }
  .hero h1 { margin: 0; font-size: 112px; }
  .hero-lead { margin: 6px 0 30px 7px; font-size: 18px; }
  .hero-award { width: 100%; }
  .hero-award strong { font-size: 34px; }
  .scroll-cue { margin-top: 28px; }
  .hero-portrait { min-height: 900px; }
  .hero-portrait img { object-position: 58% 20%; }
  .hero-portrait figcaption { right: 18px; bottom: 18px; font-size: 14px; }
  .hero-stroke { display: none; }
  .opening,
  .works-section,
  .timeline-section {
    width: calc(100% - 42px);
    padding: 92px 0;
  }
  .section-mark { margin-bottom: 30px; }
  .opening-grid { display: block; }
  .opening h2 { margin-bottom: 48px; font-size: 60px; }
  .opening-text { font-size: 18px; }
  .big-quote {
    width: 100%;
    margin-top: 70px;
    padding: 48px 0 0 64px;
  }
  .big-quote > span { top: 10px; font-size: 84px; }
  .big-quote p { font-size: 34px; }
  .turning-point { display: block; }
  .turning-image { min-height: 420px; }
  .turning-image::after { background: linear-gradient(0deg, #181d19 0, transparent 35%); }
  .turning-copy { padding: 60px 26px 80px; }
  .turning-copy h2 { font-size: 43px; }
  .section-head { display: block; margin-bottom: 52px; }
  .section-head h2 { font-size: 46px; }
  .section-head > p { margin-top: 28px; }
  .works-grid { gap: 28px 14px; }
  .work-card,
  .work-card.card-1,
  .work-card.card-4,
  .work-card.card-6,
  .work-card.card-8 { grid-column: span 6; }
  .card-1 .work-image,
  .card-6 .work-image,
  .work-image { aspect-ratio: 4 / 5; }
  .work-meta { grid-template-columns: 24px 1fr; gap: 7px; }
  .work-meta strong { font-size: 14px; }
  .work-arrow { display: none; }
  .modal { padding: 0; }
  .modal-panel {
    width: 100vw;
    height: 100dvh;
    grid-template-columns: 1fr;
    grid-template-rows: 53% 47%;
  }
  .modal-copy { padding: 30px 26px 24px; }
  .modal-copy h3 { margin: 12px 0 5px; font-size: 30px; }
  .modal-copy p { margin: 6px 0; font-size: 14px; line-height: 1.7; }
  .modal-copy .modal-role { margin-bottom: 8px; }
  .modal-close { top: 10px; right: 10px; background: rgba(243,239,228,.86); }
  .modal-nav { padding-top: 16px; }
  .philosophy { display: block; }
  .philosophy-title { min-height: auto; padding: 90px 26px; border-right: 0; border-bottom: 1px solid rgba(255,255,255,.16); }
  .philosophy-title h2 { font-size: 48px; }
  .principles { grid-template-columns: 1fr; }
  .principles article { min-height: auto; padding: 54px 26px; border-right: 0; border-bottom: 1px solid rgba(255,255,255,.16) !important; }
  .principles article:last-child { border-bottom: 0 !important; }
  .principles h3 { margin-top: 24px; }
  .timeline-head { margin-bottom: 65px; }
  .timeline { margin: 0; }
  .timeline::before { left: 0; }
  .timeline article { grid-template-columns: 1fr; padding-left: 34px; padding-bottom: 58px; }
  .timeline article::before { left: -5px; }
  .timeline article > div { padding: 12px 0 0; }
  .timeline h3 { font-size: 24px; }
  .award-section { display: block; min-height: 720px; }
  .award-number { position: absolute; top: 65px; right: -8vw; font-size: 240px; opacity: .22; transform: none; }
  .award-copy { width: auto; padding: 110px 48px 100px 26px; }
  .award-copy h2 { margin-top: 115px; font-size: 56px; }
  .vertical-copy { right: 18px; }
  .closing,
  .closing-copy { min-height: 790px; }
  .closing-art::after { background: linear-gradient(0deg, rgba(243,239,228,.97) 5%, rgba(243,239,228,.86) 56%, rgba(243,239,228,.22) 100%); }
  .closing-art img { object-position: 57% center; }
  .closing-copy { width: calc(100% - 42px); justify-content: flex-end; padding-bottom: 72px; }
  .closing-copy h2 { width: 100%; font-size: 54px; }
  .closing-copy > div { display: block; width: 100%; margin-top: 38px; }
  .closing-copy > div p + p { margin-top: 20px; }
  footer { display: block; padding: 58px 24px 30px; }
  .sources { flex-direction: column; gap: 12px; margin-top: 45px; }
  .copyright { margin-top: 36px; text-align: left; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { transition-duration: .01ms !important; }
}
