:root {
  --cream: #f2eddf;
  --paper: #fbf8ef;
  --forest: #15382f;
  --forest-deep: #0d2923;
  --ink: #18211e;
  --coral: #e8694f;
  --line: rgba(24, 33, 30, 0.22);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
#selected-title, #archive-title, #about-title { scroll-margin-top: 1.5rem; }
body { margin: 0; background: var(--cream); color: var(--ink); font-family: Arial, Helvetica, sans-serif; }
a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; }

.site-header {
  min-height: 82px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  padding: 1rem clamp(1.25rem, 4vw, 4.5rem);
  border-bottom: 1px solid var(--line);
  background: var(--cream);
  position: relative;
  z-index: 10;
}
.wordmark { font-size: 1rem; font-weight: 900; letter-spacing: .04em; }
.wordmark span { color: var(--coral); }
.site-header nav { display: flex; gap: clamp(1.2rem, 3vw, 3rem); font-size: .9rem; font-weight: 700; }
.site-header nav a, .back-link { border-bottom: 1px solid transparent; padding: .3rem 0; }
.site-header nav a:hover, .back-link:hover { border-color: currentColor; }

.hero { min-height: calc(100svh - 82px); display: grid; grid-template-columns: .9fr 1.1fr; }
.hero-copy {
  background: var(--forest);
  color: var(--paper);
  padding: clamp(4rem, 8vw, 8.5rem) clamp(1.5rem, 6vw, 6.5rem);
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.eyebrow { margin: 0 0 1.5rem; text-transform: uppercase; letter-spacing: .16em; font-size: .78rem; font-weight: 800; }
.hero h1, .section-heading h2, .archive h2, .about h2, .project-intro h1 {
  font-family: Georgia, "Times New Roman", serif;
  font-weight: 400;
  letter-spacing: -.045em;
}
.hero h1 { margin: 0; max-width: 8ch; font-size: clamp(4rem, 8vw, 8.7rem); line-height: .88; }
.hero-intro { max-width: 37rem; margin: 2.5rem 0; font-size: clamp(1.1rem, 1.5vw, 1.35rem); line-height: 1.55; color: #e5e4d7; }
.text-link { width: fit-content; font-weight: 800; border-bottom: 2px solid var(--coral); padding-bottom: .45rem; }
.text-link span { color: var(--coral); margin-left: .4rem; }

.hero-art { min-height: 660px; background: #c8d0b7; position: relative; overflow: hidden; }
.hero-art img { position: absolute; object-fit: cover; box-shadow: 0 20px 60px rgba(13, 41, 35, .24); }
.hero-art-main { width: 62%; height: 70%; left: 8%; top: 12%; z-index: 2; }
.hero-art-top { width: 43%; height: 32%; right: -4%; top: 6%; z-index: 3; }
.hero-art-bottom { width: 33%; height: 46%; right: 6%; bottom: -4%; z-index: 4; }
.hero-index { position: absolute; right: 2rem; bottom: 1.4rem; font-weight: 900; letter-spacing: .08em; color: var(--forest-deep); z-index: 5; }

.section-shell { padding: clamp(5rem, 10vw, 10rem) clamp(1.25rem, 6vw, 7rem); }
.section-heading { display: grid; grid-template-columns: .35fr 1fr; gap: 2rem; margin-bottom: clamp(4rem, 7vw, 7rem); }
.section-heading h2, .archive h2 { max-width: 12ch; margin: 0; font-size: clamp(3rem, 6vw, 6.2rem); line-height: .95; }
.featured-list { display: grid; grid-template-columns: repeat(12, 1fr); gap: clamp(2rem, 5vw, 5rem) 2rem; }
.featured-card-1 { grid-column: 1 / span 7; }
.featured-card-2 { grid-column: 8 / span 5; margin-top: 10rem; }
.featured-card-3 { grid-column: 3 / span 5; }
.image-link { display: block; overflow: hidden; background: #d8d5ca; }
.image-link img { width: 100%; height: auto; transition: transform .6s cubic-bezier(.2, .7, .2, 1); }
.image-link:hover img { transform: scale(1.025); }
.project-caption { display: flex; justify-content: space-between; gap: 1rem; align-items: flex-start; padding-top: 1rem; border-top: 1px solid var(--ink); margin-top: 1rem; }
.project-caption p, .archive-card p { margin: 0 0 .4rem; text-transform: uppercase; letter-spacing: .12em; font-size: .74rem; font-weight: 800; }
.project-caption h3, .archive-card h3 { margin: 0; font-family: Georgia, "Times New Roman", serif; font-size: clamp(1.6rem, 3vw, 2.6rem); font-weight: 400; }
.project-number { color: var(--coral); font-weight: 900; }

.archive { background: var(--forest-deep); color: var(--paper); padding: clamp(5rem, 9vw, 9rem) clamp(1.25rem, 6vw, 7rem); }
.archive-inner { max-width: 1550px; margin: 0 auto; }
.archive-heading { display: grid; grid-template-columns: 1.2fr .55fr; gap: 4rem; align-items: end; margin-bottom: 4rem; }
.archive-heading > p { max-width: 33rem; font-size: 1.05rem; line-height: 1.65; color: #cdd5ce; }
.archive-grid { display: grid; grid-template-columns: repeat(12, 1fr); gap: 1.2rem; align-items: start; }
.archive-card { display: block; }
.archive-card img { width: 100%; aspect-ratio: 1 / 1; object-fit: cover; filter: saturate(.88); transition: filter .25s ease, transform .4s ease; }
.archive-card:hover img { filter: saturate(1.08); transform: translateY(-5px); }
.archive-card > div { padding: 1rem .1rem 1.5rem; border-top: 1px solid rgba(251, 248, 239, .35); margin-top: .7rem; }
.archive-card h3 { font-size: clamp(1.3rem, 2vw, 2rem); }
.archive-card-1 { grid-column: 1 / span 4; }
.archive-card-2 { grid-column: 5 / span 3; margin-top: 5rem; }
.archive-card-3 { grid-column: 8 / span 5; }
.archive-card-4 { grid-column: 2 / span 5; }
.archive-card-5 { grid-column: 8 / span 4; margin-top: 3rem; }

.about { display: grid; grid-template-columns: .3fr 1fr; gap: 3rem; }
.about h2 { margin: 0; max-width: 18ch; font-size: clamp(2.8rem, 5.5vw, 5.6rem); line-height: .98; }
.about div > p { max-width: 46rem; margin: 2rem 0 0; font-size: 1.15rem; line-height: 1.7; }
footer { background: var(--coral); min-height: 240px; display: flex; justify-content: space-between; align-items: flex-end; gap: 2rem; padding: 3rem clamp(1.25rem, 6vw, 7rem); }
footer p { margin: .35rem 0; }
.footer-mark { font-weight: 900; font-size: clamp(1.7rem, 4vw, 4rem); letter-spacing: -.04em; }
footer a { font-weight: 800; border-bottom: 1px solid currentColor; }

.project-page { min-height: 100svh; }
.project-header { position: static; }
.project-intro { padding: clamp(4rem, 8vw, 8rem) clamp(1.25rem, 10vw, 11rem) 3rem; display: grid; grid-template-columns: .3fr 1fr; gap: 1rem 4rem; }
.project-intro .eyebrow { grid-row: 1 / span 2; }
.project-intro h1 { margin: 0; font-size: clamp(4rem, 8vw, 8rem); line-height: .9; }
.project-intro > p:last-child { max-width: 42rem; font-size: 1.1rem; line-height: 1.7; }
.project-image { margin: 0; padding: 0 clamp(1.25rem, 6vw, 7rem) clamp(4rem, 8vw, 8rem); }
.project-image img { width: 100%; max-height: 1100px; object-fit: contain; background: var(--paper); }
.project-next { display: flex; justify-content: space-between; padding: 2rem clamp(1.25rem, 6vw, 7rem); border-top: 1px solid var(--line); font-weight: 800; }

@media (max-width: 850px) {
  .site-header { align-items: flex-start; }
  .site-header nav { gap: .8rem; flex-wrap: wrap; justify-content: flex-end; font-size: .78rem; }
  .hero { grid-template-columns: 1fr; }
  .hero-copy { min-height: 610px; }
  .hero-art { min-height: 620px; }
  .section-heading, .archive-heading, .about, .project-intro { grid-template-columns: 1fr; }
  .section-heading { gap: .8rem; }
  .featured-card-1 { grid-column: 1 / span 8; }
  .featured-card-2 { grid-column: 7 / span 6; margin-top: 4rem; }
  .featured-card-3 { grid-column: 2 / span 7; }
  .archive-heading { gap: 1rem; }
  .project-intro .eyebrow { grid-row: auto; }
}

@media (max-width: 620px) {
  .site-header { min-height: 72px; }
  .site-header nav a:nth-child(2) { display: none; }
  .hero { min-height: auto; }
  .hero-copy { min-height: 560px; }
  .hero h1 { font-size: clamp(3.6rem, 17vw, 5.8rem); }
  .hero-art { min-height: 470px; }
  .hero-art-main { width: 72%; height: 68%; left: 5%; }
  .hero-art-top { width: 45%; height: 29%; }
  .hero-art-bottom { width: 37%; height: 41%; right: 3%; }
  .section-heading h2, .archive h2 { font-size: clamp(2.8rem, 14vw, 4.5rem); }
  .featured-list { display: block; }
  .featured-card { margin: 0 0 4rem; }
  .archive-grid { grid-template-columns: 1fr 1fr; gap: 1rem; }
  .archive-card, .archive-card-1, .archive-card-2, .archive-card-3, .archive-card-4, .archive-card-5 { grid-column: auto; margin-top: 0; }
  .archive-card-3 { grid-column: 1 / span 2; }
  .about { gap: 1rem; }
  footer { min-height: 210px; align-items: flex-start; flex-direction: column; }
  .project-intro { padding-top: 4rem; }
}

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