:root {
  --black: #090b0b;
  --paper: #e8e8e3;
  --muted: #8c8f8a;
  --copper: #b97042;
  color-scheme: dark;
}

* { box-sizing: border-box; }

html,
body {
  min-height: 100%;
  margin: 0;
}

body {
  display: grid;
  grid-template-rows: 1fr auto;
  background: var(--black);
  color: var(--paper);
  font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
  -webkit-font-smoothing: antialiased;
}

a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; height: auto; }

.skip-link {
  position: fixed;
  z-index: 20;
  top: 12px;
  left: 12px;
  padding: 10px 14px;
  background: var(--paper);
  color: var(--black);
  transform: translateY(-180%);
}
.skip-link:focus { transform: none; }

.landing {
  min-height: calc(100svh - 76px);
  display: grid;
  grid-template-columns: minmax(390px, 43%) minmax(0, 57%);
}

.identity {
  position: relative;
  z-index: 2;
  min-width: 0;
  padding: clamp(30px, 3.6vw, 68px);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  border-right: 1px solid rgba(255, 255, 255, .13);
  background: var(--black);
}

.mark {
  align-self: flex-start;
  width: clamp(225px, 24vw, 365px);
}
.mark img { width: 100%; mix-blend-mode: screen; }

.statement { margin: auto 0; padding: 8vh 0 7vh; }
.parent-link,
.image-panel figcaption,
footer {
  font-size: .75rem;
  font-weight: 600;
  letter-spacing: .16em;
  text-transform: uppercase;
}
.statement h1 {
  max-width: 720px;
  margin: 0;
  font: italic 400 clamp(3rem, 4.7vw, 5.8rem)/.97 Georgia, "Times New Roman", serif;
  letter-spacing: -.05em;
}
.lede {
  max-width: 35rem;
  margin: clamp(30px, 4vh, 48px) 0 0;
  color: #b7bab6;
  font-size: clamp(1rem, 1.15vw, 1.18rem);
  line-height: 1.62;
}
.disciplines {
  max-width: 35rem;
  margin: clamp(30px, 4vh, 48px) 0 0;
  padding: 19px 0 0;
  display: flex;
  flex-wrap: wrap;
  gap: 10px 22px;
  border-top: 1px solid rgba(255, 255, 255, .2);
  list-style: none;
  color: var(--copper);
  font-size: .72rem;
  font-weight: 600;
  letter-spacing: .14em;
  text-transform: uppercase;
}
.disciplines li:not(:last-child)::after {
  content: "/";
  margin-left: 22px;
  color: rgba(255, 255, 255, .35);
}

.parent-link { align-self: flex-start; color: #a6aaa5; }
.parent-link span,
footer a span { margin-left: 9px; color: var(--copper); }

.image-panel {
  position: relative;
  min-width: 0;
  min-height: inherit;
  margin: 0;
  overflow: hidden;
  background: #222524;
}
.image-panel::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(9, 11, 11, .26), transparent 34%), linear-gradient(0deg, rgba(9, 11, 11, .48), transparent 42%);
  pointer-events: none;
}
.image-panel > img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  max-width: none;
  object-fit: cover;
  object-position: center;
  filter: grayscale(1) contrast(1.13) brightness(.7);
  transform: scale(1.015);
  transition: filter 800ms ease, transform 1200ms cubic-bezier(.2, .7, .2, 1);
}
.image-panel:hover > img { filter: grayscale(.78) contrast(1.1) brightness(.76); transform: scale(1.025); }
.image-panel figcaption {
  position: absolute;
  z-index: 2;
  left: 34px;
  right: 34px;
  bottom: 28px;
  display: flex;
  justify-content: space-between;
  padding-top: 16px;
  border-top: 1px solid rgba(255, 255, 255, .34);
  color: rgba(255, 255, 255, .68);
}

footer {
  min-height: 76px;
  padding: 20px clamp(30px, 3.6vw, 68px);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
  border-top: 1px solid rgba(255, 255, 255, .13);
  color: var(--muted);
}
footer p { margin: 0; text-transform: none; letter-spacing: .045em; }
footer div { display: flex; align-items: center; gap: 30px; white-space: nowrap; }
footer a { color: var(--paper); }

@media (max-width: 820px) {
  body { display: block; }
  .landing { min-height: auto; grid-template-columns: 1fr; grid-template-rows: auto minmax(410px, 52svh); }
  .identity { min-height: 580px; padding: 28px 24px 32px; border-right: 0; border-bottom: 1px solid rgba(255, 255, 255, .13); }
  .mark { width: min(280px, 74vw); }
  .statement { padding: 64px 0 56px; }
  .statement h1 { max-width: 620px; font-size: clamp(3.15rem, 12vw, 5.2rem); }
  .lede { max-width: 620px; }
  .image-panel { min-height: 410px; }
  .image-panel figcaption { left: 24px; right: 24px; bottom: 22px; }
  footer { min-height: 180px; padding: 44px 24px; align-items: flex-start; flex-direction: column; justify-content: flex-end; line-height: 1.55; }
  footer div { align-items: flex-start; flex-direction: column; gap: 12px; }
}

@media (max-width: 430px) {
  .landing { grid-template-rows: auto minmax(360px, 52svh); }
  .identity { min-height: 600px; }
  .statement { padding: 54px 0 44px; }
  .statement h1 { font-size: clamp(2.9rem, 13.4vw, 4rem); }
  .lede { margin-top: 28px; line-height: 1.55; }
  .disciplines { margin-top: 28px; display: grid; gap: 10px; }
  .disciplines li:not(:last-child)::after { content: none; }
  .image-panel { min-height: 360px; }
}

@media (prefers-reduced-motion: reduce) {
  .image-panel > img { transition: none; }
}
