:root {
  color-scheme: dark;
  --paper: #070707;
  --paper-soft: #10100f;
  --paper-raised: #151513;
  --graphite: #d9d2c4;
  --graphite-soft: #aaa397;
  --graphite-faint: #6c675f;
  --ash: #23231f;
  --rust: #a96f4d;
  --cold: #8fa7a6;
  --line: rgba(217, 210, 196, 0.22);
  --shadow: rgba(0, 0, 0, 0.66);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  background: var(--paper);
  color: var(--graphite);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-width: 320px;
  background:
    radial-gradient(ellipse at 32% 12%, rgba(143, 167, 166, 0.08), transparent 28rem),
    linear-gradient(110deg, rgba(169, 111, 77, 0.06), transparent 34rem),
    var(--paper);
}

body::before {
  position: fixed;
  inset: 0;
  z-index: -2;
  pointer-events: none;
  content: "";
  background-image:
    repeating-linear-gradient(8deg, rgba(255, 255, 255, 0.026) 0 1px, transparent 1px 9px),
    repeating-linear-gradient(102deg, rgba(255, 255, 255, 0.018) 0 1px, transparent 1px 13px);
  opacity: 0.52;
}

body::after {
  position: fixed;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  content: "";
  background:
    linear-gradient(90deg, rgba(0, 0, 0, 0.72), rgba(0, 0, 0, 0.08) 54%, rgba(0, 0, 0, 0.62)),
    linear-gradient(180deg, rgba(0, 0, 0, 0.3), transparent 40%, rgba(0, 0, 0, 0.58));
}

img {
  display: block;
  max-width: 100%;
}

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

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1rem clamp(1rem, 4vw, 3.5rem);
  border-bottom: 1px solid rgba(217, 210, 196, 0.12);
  background: rgba(7, 7, 7, 0.78);
  backdrop-filter: blur(16px);
}

.brand,
.site-nav {
  display: flex;
  align-items: center;
}

.brand {
  gap: 0.7rem;
  min-width: max-content;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1rem;
  letter-spacing: 0;
  text-transform: uppercase;
}

.brand-logo {
  width: 2.35rem;
  height: 2.35rem;
  flex: 0 0 auto;
  filter: drop-shadow(0 0.35rem 0.7rem rgba(0, 0, 0, 0.55));
}

.site-nav {
  gap: clamp(0.65rem, 2.6vw, 2rem);
  color: var(--graphite-soft);
  font-size: 0.82rem;
  text-transform: uppercase;
}

.site-nav a {
  position: relative;
  padding-block: 0.35rem;
}

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

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

.hero {
  position: relative;
  display: grid;
  align-items: center;
  min-height: 80vh;
  padding: 7rem clamp(1.25rem, 6vw, 5.5rem) 1.5rem;
  overflow: hidden;
  border-bottom: 1px solid var(--line);
}

.hero::after {
  position: absolute;
  inset: 0;
  pointer-events: none;
  content: "";
  background:
    linear-gradient(90deg, rgba(7, 7, 7, 0.94) 0%, rgba(7, 7, 7, 0.68) 34%, rgba(7, 7, 7, 0.2) 62%, rgba(7, 7, 7, 0.78) 100%),
    linear-gradient(180deg, rgba(7, 7, 7, 0.12), rgba(7, 7, 7, 0.08) 70%, var(--paper) 100%);
}

.hero-art {
  position: absolute;
  inset: 0;
  overflow: hidden;
}

.hero-art__image {
  position: absolute;
  width: min(58rem, 82vw);
  aspect-ratio: 16 / 9;
  object-fit: cover;
  border: 1px solid rgba(217, 210, 196, 0.18);
  opacity: 0.54;
  mix-blend-mode: screen;
  filter: contrast(1.05) brightness(0.78);
}

.hero-art__image--cage {
  top: 11vh;
  right: -9vw;
  transform: rotate(-3deg);
}

.hero-art__image--civilians {
  bottom: -8vh;
  right: 20vw;
  width: min(42rem, 64vw);
  opacity: 0.31;
  transform: rotate(4deg);
}

.hero-art__image--caz {
  bottom: 2vh;
  right: -10vw;
  width: min(43rem, 66vw);
  opacity: 0.38;
  transform: rotate(2deg);
}

.hero__content {
  position: relative;
  z-index: 1;
  width: min(45rem, 100%);
  text-shadow: 0 1.2rem 3rem var(--shadow);
}

.eyebrow {
  margin: 0 0 1rem;
  color: var(--cold);
  font-size: 0.78rem;
  font-weight: 700;
  text-transform: uppercase;
}

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

h1,
h2,
h3 {
  color: #f0eadc;
  font-family: Georgia, "Times New Roman", serif;
  font-weight: 500;
  letter-spacing: 0;
}

h1 {
  max-width: 11ch;
  margin-bottom: 1rem;
  font-size: clamp(4rem, 11vw, 10.5rem);
  line-height: 0.86;
}

.tagline {
  max-width: 24rem;
  margin-bottom: 1.2rem;
  color: #f4ecdb;
  font-size: clamp(1.3rem, 2.6vw, 2.4rem);
  line-height: 1.08;
}

.hero__statement {
  max-width: 42rem;
  margin-bottom: 0;
  color: var(--graphite-soft);
  font-size: clamp(1rem, 1.6vw, 1.28rem);
  line-height: 1.7;
}

.projects,
.statement {
  padding: clamp(4rem, 9vw, 8rem) clamp(1.25rem, 5vw, 5rem);
}

.projects {
  padding-top: clamp(2.4rem, 4vw, 4.5rem);
}

.section-heading {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 2rem;
  max-width: 91rem;
  margin: 0 auto 2rem;
}

.section-heading h2,
.statement h2 {
  max-width: 12ch;
  margin-bottom: 0;
  font-size: clamp(2.2rem, 5vw, 5.5rem);
  line-height: 0.95;
}

.project-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(1rem, 2vw, 1.5rem);
  max-width: 91rem;
  margin: 0 auto;
}

.project-card {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: linear-gradient(180deg, rgba(21, 21, 19, 0.94), rgba(10, 10, 9, 0.98));
  box-shadow: 0 1.5rem 5rem rgba(0, 0, 0, 0.28);
}

.project-card img {
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
  border-bottom: 1px solid rgba(217, 210, 196, 0.16);
  filter: saturate(0) contrast(1.08);
  background: #050505;
}

.project-card__body {
  padding: clamp(1.1rem, 2vw, 1.55rem);
}

.project-card__kicker {
  margin-bottom: 0.8rem;
  color: var(--rust);
  font-size: 0.74rem;
  font-weight: 800;
  text-transform: uppercase;
}

.project-card h3 {
  margin-bottom: 0.75rem;
  font-size: clamp(1.55rem, 2.6vw, 2.35rem);
  line-height: 0.98;
}

.project-card p:last-child {
  margin-bottom: 0;
  color: var(--graphite-soft);
  font-size: 0.98rem;
  line-height: 1.65;
}

.statement {
  display: grid;
  grid-template-columns: minmax(18rem, 38rem) minmax(16rem, 26rem);
  gap: clamp(2rem, 5vw, 5rem);
  align-items: start;
  justify-content: center;
  border-top: 1px solid var(--line);
  background: rgba(10, 10, 9, 0.58);
}

.statement__copy p:last-child {
  margin-top: 1.4rem;
  margin-bottom: 0;
  color: var(--graphite-soft);
  font-size: clamp(1rem, 1.5vw, 1.2rem);
  line-height: 1.75;
}

.studio-notes {
  display: grid;
  gap: 1rem;
  margin: 0;
}

.studio-notes div {
  padding: 1rem 0 1.1rem;
  border-top: 1px solid rgba(217, 210, 196, 0.2);
}

.studio-notes dt {
  margin-bottom: 0.45rem;
  color: #efe7d7;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.35rem;
}

.studio-notes dd {
  margin: 0;
  color: var(--graphite-soft);
  line-height: 1.6;
}

@media (max-width: 920px) {
  .site-header {
    position: absolute;
    align-items: flex-start;
  }

  .site-nav {
    flex-wrap: wrap;
    justify-content: flex-end;
  }

  .hero {
    min-height: 80vh;
    padding-top: 7rem;
    padding-bottom: 1.25rem;
  }

  .hero::after {
    background:
      linear-gradient(90deg, rgba(7, 7, 7, 0.94), rgba(7, 7, 7, 0.62)),
      linear-gradient(180deg, rgba(7, 7, 7, 0.08), var(--paper) 100%);
  }

  .hero-art__image {
    width: 58rem;
    max-width: none;
  }

  .hero-art__image--cage {
    top: 18vh;
    right: -28rem;
  }

  .hero-art__image--civilians {
    right: -10rem;
    bottom: 5vh;
    width: 34rem;
  }

  .hero-art__image--caz {
    right: -17rem;
    bottom: -2vh;
    width: 35rem;
  }

  .section-heading {
    display: block;
  }

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

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

@media (max-width: 560px) {
  .site-header {
    display: grid;
    gap: 0.85rem;
  }

  .site-nav {
    justify-content: flex-start;
    font-size: 0.76rem;
  }

  h1 {
    font-size: clamp(3.6rem, 20vw, 5rem);
  }

  .tagline {
    font-size: 1.3rem;
  }

  .hero {
    padding-inline: 1rem;
  }

  .projects,
  .statement {
    padding-inline: 1rem;
  }

  .project-card__body {
    padding: 1rem;
  }
}
