* {
  box-sizing: border-box;
}

:root {
  --bg: #0b0b0b;
  --panel: #111111;
  --text: #f2f2ef;
  --muted: #9c9c96;
  --line: #2b2b29;
  --accent: #d8d8cf;
  --max: 1180px;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--bg);
  color: var(--text);
  font-family: Arial, Helvetica, sans-serif;
  line-height: 1.5;
}

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

a:hover {
  opacity: .72;
}

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

.topbar {
  min-height: 88px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  border-bottom: 1px solid var(--line);
}

.brand {
  font-size: .95rem;
  letter-spacing: .22em;
  font-weight: 700;
}

nav {
  display: flex;
  gap: 24px;
  color: var(--muted);
  font-size: .9rem;
}

.hero {
  min-height: 76vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 90px 0;
  border-bottom: 1px solid var(--line);
}

.eyebrow {
  text-transform: uppercase;
  letter-spacing: .18em;
  font-size: .72rem;
  color: var(--muted);
  margin: 0 0 22px;
}

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

h1 {
  font-size: clamp(3.8rem, 10vw, 8.8rem);
  line-height: .89;
  letter-spacing: -.055em;
  max-width: 1000px;
  margin-bottom: 36px;
  font-weight: 600;
}

h2 {
  font-size: clamp(2rem, 5vw, 4rem);
  line-height: 1;
  letter-spacing: -.035em;
  font-weight: 500;
}

h3 {
  letter-spacing: .12em;
  font-size: 1rem;
}

.lead {
  max-width: 700px;
  color: var(--muted);
  font-size: 1.2rem;
}

.actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 28px;
}

.button {
  display: inline-block;
  padding: 13px 18px;
  border: 1px solid var(--line);
  font-size: .9rem;
}

.primary {
  background: var(--text);
  color: var(--bg);
  border-color: var(--text);
}

.secondary {
  color: var(--text);
}

.section {
  padding: 90px 0;
  border-bottom: 1px solid var(--line);
}

.grid-two,
.artist-card {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 72px;
}

.prose,
.artist-card > div:last-child {
  max-width: 620px;
  color: var(--muted);
  font-size: 1.05rem;
}

.triptych {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--line);
  padding: 1px 0;
}

.triptych article {
  background: var(--bg);
  padding: 42px 32px;
  min-height: 300px;
}

.triptych article p:last-child {
  color: var(--muted);
}

.index {
  color: var(--muted);
  font-size: .75rem;
  margin-bottom: 70px;
}

.muted {
  color: var(--muted);
}

.statement {
  font-size: clamp(2rem, 6vw, 5.5rem);
  line-height: 1.02;
  letter-spacing: -.045em;
}

footer {
  min-height: 110px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  color: var(--muted);
  font-size: .85rem;
}

.charter {
  max-width: 900px;
  padding: 100px 0;
}

.charter > h1 {
  font-size: clamp(3rem, 8vw, 7rem);
  margin-bottom: 90px;
}

.charter section {
  padding: 44px 0;
  border-top: 1px solid var(--line);
}

.charter section h2 {
  font-size: clamp(1.7rem, 4vw, 3rem);
  max-width: 720px;
}

.charter section p {
  max-width: 760px;
  color: var(--muted);
  font-size: 1.05rem;
}

blockquote {
  margin: 34px 0;
  padding: 20px 0 20px 24px;
  border-left: 2px solid var(--accent);
  font-size: 1.25rem;
  color: var(--text);
}

.charter-end {
  padding-top: 70px !important;
}

.charter-end p {
  color: var(--text) !important;
}

.final-line {
  margin-top: 60px;
  font-size: 1.3rem !important;
}

@media (max-width: 760px) {
  .shell {
    width: min(calc(100% - 28px), var(--max));
  }

  .topbar {
    align-items: flex-start;
    flex-direction: column;
    justify-content: center;
    padding: 24px 0;
  }

  nav {
    flex-wrap: wrap;
    gap: 14px 18px;
  }

  .hero {
    min-height: 68vh;
    padding: 70px 0;
  }

  .grid-two,
  .artist-card,
  .triptych {
    grid-template-columns: 1fr;
  }

  .grid-two,
  .artist-card {
    gap: 26px;
  }

  .triptych {
    gap: 1px;
  }

  .triptych article {
    min-height: auto;
  }

  .index {
    margin-bottom: 42px;
  }

  footer {
    align-items: flex-start;
    flex-direction: column;
    justify-content: center;
    padding: 30px 0;
  }
}
