:root {
  --ink: #17201d;
  --paper: #f0ede4;
  --paper-deep: #ded9cd;
  --blue: #244fd6;
  --lime: #d7ff43;
  --line: rgba(23, 32, 29, 0.22);
  --font-display: "Iowan Old Style", "Palatino Linotype", "Book Antiqua", Georgia, serif;
  --font-sans: Inter, Avenir, "Helvetica Neue", Arial, sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: var(--font-sans), sans-serif;
}

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

[hidden] {
  display: none !important;
}

.topbar {
  align-items: center;
  border-bottom: 1px solid var(--line);
  display: flex;
  height: 86px;
  justify-content: space-between;
  padding: 0 4.5vw;
}

.wordmark {
  align-items: center;
  display: inline-flex;
  gap: 14px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.wordmark span:first-child {
  align-items: center;
  border: 1px solid currentColor;
  border-radius: 50%;
  display: flex;
  font-family: var(--font-display), serif;
  font-size: 15px;
  font-style: italic;
  height: 43px;
  justify-content: center;
  letter-spacing: -0.08em;
  width: 43px;
}

nav {
  align-items: center;
  display: flex;
  font-size: 11px;
  font-weight: 600;
  gap: 34px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.nav-cta {
  border: 1px solid var(--ink);
  border-radius: 100px;
  padding: 12px 18px;
  transition: background 180ms ease, color 180ms ease;
}

.nav-cta:hover {
  background: var(--ink);
  color: var(--paper);
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, 1.35fr) minmax(320px, 0.65fr);
  min-height: calc(100vh - 86px);
}

.hero-copy {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  min-height: 760px;
  padding: 8vh 4.5vw 5vh;
}

.eyebrow,
.section-index {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.16em;
  margin: 0;
  text-transform: uppercase;
}

.hero h1 {
  font-family: var(--font-display), serif;
  font-size: clamp(70px, 7.6vw, 146px);
  font-weight: 400;
  letter-spacing: -0.065em;
  line-height: 0.76;
  margin: 5vh 0;
}

.hero h1 em,
.contact h2 em {
  color: var(--blue);
  font-weight: 400;
}

.hero-lower {
  align-items: flex-end;
  display: flex;
  justify-content: space-between;
}

.hero-lower > p {
  font-size: 15px;
  line-height: 1.7;
  margin: 0;
  max-width: 470px;
}

.text-link {
  border-bottom: 1px solid var(--ink);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.08em;
  padding-bottom: 8px;
  text-transform: uppercase;
}

.text-link span {
  font-size: 16px;
  margin-left: 28px;
}

.hero-art {
  background: var(--blue);
  color: white;
  min-height: 760px;
  overflow: hidden;
  position: relative;
}

.paint-plane {
  background: var(--lime);
  color: var(--ink);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 22px;
  position: absolute;
}

.paint-plane span,
.paint-plane strong {
  font-size: 9px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.paint-plane-large {
  height: 45%;
  right: -5%;
  top: 14%;
  transform: rotate(-7deg);
  width: 77%;
}

.paint-plane-small {
  background: #ff5b35;
  bottom: 3%;
  height: 30%;
  left: -9%;
  transform: rotate(8deg);
  width: 55%;
}

.brush-line {
  background: var(--paper);
  height: 3px;
  left: 12%;
  position: absolute;
  top: 63%;
  transform: rotate(-19deg);
  width: 88%;
}

.hero-art > p {
  bottom: 30px;
  font-size: 9px;
  letter-spacing: 0.15em;
  margin: 0;
  position: absolute;
  right: 28px;
  text-transform: uppercase;
  writing-mode: vertical-rl;
}

.statement,
.works,
.contact {
  padding: 130px 4.5vw;
}

.statement {
  display: grid;
  gap: 40px;
  grid-template-columns: minmax(130px, 0.3fr) minmax(300px, 0.7fr);
}

.statement h2,
.section-heading h2,
.contact h2 {
  font-family: var(--font-display), serif;
  font-size: clamp(58px, 6.5vw, 112px);
  font-weight: 400;
  letter-spacing: -0.055em;
  line-height: 0.86;
  margin: 0;
}

.statement-lead {
  font-family: var(--font-display), serif;
  font-size: clamp(26px, 2.2vw, 42px);
  line-height: 1.12;
  margin: 48px 0 0;
  max-width: 650px;
}

.principles {
  border-top: 1px solid var(--line);
  display: grid;
  gap: 0;
  grid-column: 2;
  grid-template-columns: repeat(3, 1fr);
  margin-top: 65px;
}

.principles article {
  border-right: 1px solid var(--line);
  padding: 28px 32px 0 0;
}

.principles article + article {
  padding-left: 32px;
}

.principles article:last-child {
  border-right: 0;
}

.principles span {
  color: var(--blue);
  font-size: 10px;
  font-weight: 700;
}

.principles h3 {
  font-size: 14px;
  margin: 60px 0 18px;
}

.principles p,
.contact-copy p,
.section-heading > p,
.works-placeholder p {
  font-size: 13px;
  line-height: 1.75;
}

.experience-band {
  align-items: center;
  background: var(--ink);
  color: var(--paper);
  display: grid;
  grid-template-columns: 1fr 2fr 1fr;
  min-height: 390px;
  padding: 50px 4.5vw;
}

.experience-band p {
  font-size: 10px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.experience-band p:last-child {
  line-height: 1.7;
  text-align: right;
}

.experience-band strong {
  color: var(--lime);
  font-family: var(--font-display), serif;
  font-size: clamp(120px, 18vw, 290px);
  font-weight: 400;
  letter-spacing: -0.08em;
  line-height: 0.7;
  text-align: center;
}

.works {
  background: #d8d2c4;
}

.section-heading {
  align-items: end;
  display: flex;
  justify-content: space-between;
  margin-bottom: 75px;
}

.section-heading .section-index {
  margin-bottom: 35px;
}

.section-heading > p {
  margin: 0;
  max-width: 330px;
}

.works-grid {
  display: grid;
  gap: 56px 20px;
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.work-card {
  margin: 0;
}

.work-card-featured {
  grid-column: span 2;
}

.work-card img {
  aspect-ratio: 4 / 3;
  display: block;
  object-fit: cover;
  width: 100%;
}

.work-card-featured img {
  aspect-ratio: 16 / 8;
}

.work-card figcaption {
  align-items: flex-end;
  border-top: 1px solid var(--line);
  display: flex;
  justify-content: space-between;
  margin-top: 14px;
  padding-top: 14px;
}

.work-card figcaption > div {
  align-items: baseline;
  display: flex;
  gap: 20px;
}

.work-card figcaption span,
.work-card figcaption p {
  font-size: 9px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.work-card figcaption h3 {
  font-family: var(--font-display), serif;
  font-size: 28px;
  font-weight: 500;
  margin: 0;
}

.works-placeholder {
  align-items: center;
  display: grid;
  gap: 6vw;
  grid-template-columns: 1.3fr 0.7fr;
}

.placeholder-surface {
  align-items: flex-end;
  aspect-ratio: 16 / 10;
  background:
    linear-gradient(135deg, transparent 0 47%, rgba(240, 237, 228, 0.82) 47% 48%, transparent 48%),
    var(--blue);
  color: white;
  display: flex;
  padding: 30px;
}

.placeholder-surface span {
  font-size: 9px;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.works-placeholder h3 {
  font-family: var(--font-display), serif;
  font-size: clamp(38px, 4vw, 64px);
  font-weight: 400;
  letter-spacing: -0.04em;
  line-height: 0.95;
  margin: 45px 0 25px;
}

.contact {
  display: grid;
  gap: 45px;
  grid-template-columns: 0.3fr 0.7fr;
}

.contact > div:nth-child(2) {
  grid-column: 2;
}

.contact-kicker {
  font-size: 11px;
  letter-spacing: 0.12em;
  margin: 0 0 45px;
  text-transform: uppercase;
}

.contact-copy {
  align-items: end;
  border-top: 1px solid var(--line);
  display: grid;
  gap: 60px;
  grid-column: 2;
  grid-template-columns: 1fr 1fr;
  margin-top: 45px;
  padding-top: 30px;
}

.contact-copy > p:first-child {
  font-family: var(--font-display), serif;
  font-size: 25px;
  line-height: 1.25;
  margin: 0;
}

.contact-note {
  margin: 0;
}

footer {
  align-items: center;
  background: var(--blue);
  color: white;
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  min-height: 180px;
  padding: 40px 4.5vw;
}

footer p {
  font-size: 9px;
  letter-spacing: 0.12em;
  margin: 0;
  text-align: center;
  text-transform: uppercase;
}

footer p:last-child {
  text-align: right;
}

@media (max-width: 900px) {
  nav a:not(.nav-cta) {
    display: none;
  }

  .hero {
    grid-template-columns: 1fr;
  }

  .hero-copy {
    min-height: 680px;
  }

  .hero-art {
    min-height: 560px;
  }

  .statement,
  .contact {
    grid-template-columns: 1fr;
  }

  .statement > *,
  .principles,
  .contact > div:nth-child(2),
  .contact-copy {
    grid-column: 1;
  }

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

  .principles article,
  .principles article + article {
    border-bottom: 1px solid var(--line);
    border-right: 0;
    padding: 28px 0;
  }

  .principles h3 {
    margin-top: 35px;
  }

  .works-placeholder {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 620px) {
  .topbar {
    height: 72px;
    padding: 0 20px;
  }

  .wordmark span:last-child {
    display: none;
  }

  .nav-cta {
    padding: 10px 13px;
  }

  .hero-copy {
    min-height: 650px;
    padding: 60px 20px 35px;
  }

  .hero h1 {
    font-size: clamp(58px, 18vw, 86px);
    line-height: 0.8;
  }

  .hero-lower {
    align-items: flex-start;
    flex-direction: column;
    gap: 34px;
  }

  .hero-art {
    min-height: 430px;
  }

  .statement,
  .works,
  .contact {
    padding: 85px 20px;
  }

  .statement h2,
  .section-heading h2,
  .contact h2 {
    font-size: 58px;
  }

  .experience-band {
    grid-template-columns: 1fr;
    min-height: 390px;
    padding: 50px 20px;
  }

  .experience-band strong {
    text-align: left;
  }

  .experience-band p:last-child {
    text-align: left;
  }

  .section-heading {
    align-items: flex-start;
    flex-direction: column;
    gap: 34px;
  }

  .works-grid {
    grid-template-columns: 1fr;
  }

  .work-card-featured {
    grid-column: auto;
  }

  .work-card-featured img {
    aspect-ratio: 4 / 3;
  }

  .contact-copy {
    grid-template-columns: 1fr;
  }

  footer {
    align-items: start;
    gap: 28px;
    grid-template-columns: 1fr;
  }

  footer p,
  footer p:last-child {
    text-align: left;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
}
