:root {
  --ink: #171816;
  --paper: #f0eee8;
  --warm: #c8b8a1;
  --line: rgba(23, 24, 22, 0.2);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: "Helvetica Neue", Helvetica, Arial, system-ui, sans-serif;
  -webkit-font-smoothing: antialiased;
}

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

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

.site-header {
  align-items: center;
  color: white;
  display: flex;
  justify-content: space-between;
  left: 0;
  padding: 24px 32px;
  position: absolute;
  right: 0;
  top: 0;
  z-index: 3;
}

.brand {
  display: block;
  width: 52px;
}

.brand img {
  height: 34px;
  object-fit: contain;
  width: 52px;
}

nav {
  display: flex;
  gap: 32px;
}

nav a {
  font-size: 12px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.hero {
  background: #718997;
  color: white;
  height: 100svh;
  min-height: 650px;
  overflow: hidden;
  position: relative;
}

.hero-image,
.hero-shade {
  height: 100%;
  inset: 0;
  position: absolute;
  width: 100%;
}

.hero-image {
  animation: reveal 1.4s ease-out both;
  object-fit: cover;
  object-position: 64% center;
}

.hero-shade {
  background:
    linear-gradient(90deg, rgba(6, 13, 17, 0.55), rgba(6, 13, 17, 0.05) 60%),
    linear-gradient(0deg, rgba(6, 13, 17, 0.28), transparent 42%);
}

.hero-copy {
  bottom: 14%;
  left: 7vw;
  position: absolute;
  z-index: 1;
}

.eyebrow,
.section-index {
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}

.hero h1,
.intro h2,
.statement h2,
.contact-link {
  font-family: "Helvetica Neue", Helvetica, Arial, system-ui, sans-serif;
  font-weight: 300;
  letter-spacing: -0.055em;
}

.hero h1 {
  font-size: clamp(56px, 8.6vw, 132px);
  line-height: 0.84;
  margin: 24px 0 28px;
}

.hero-note {
  font-size: 13px;
  letter-spacing: 0.08em;
}

.scroll-cue {
  align-items: center;
  bottom: 30px;
  display: flex;
  font-size: 10px;
  justify-content: space-between;
  letter-spacing: 0.18em;
  position: absolute;
  right: 32px;
  text-transform: uppercase;
  width: 160px;
  z-index: 1;
}

.intro {
  display: grid;
  gap: 40px;
  grid-template-columns: 1fr 2fr;
  padding: 140px 7vw 170px;
}

.section-index {
  margin: 11px 0 0;
}

.intro h2 {
  font-size: clamp(52px, 7vw, 108px);
  line-height: 0.92;
  margin: 0;
}

.intro div > p {
  line-height: 1.7;
  margin: 50px 0 0;
  max-width: 430px;
}

.gallery {
  padding: 0 3vw 160px;
}

.photo-set {
  margin: 0 0 128px;
}

.photo-set:last-child {
  margin-bottom: 0;
}

.set-grid {
  align-items: stretch;
  display: grid;
  gap: 4px;
}

.set-grid figure {
  margin: 0;
  overflow: hidden;
}

.set-grid img {
  display: block;
  height: auto;
  max-width: none;
  transition: transform 900ms cubic-bezier(0.16, 1, 0.3, 1);
  width: 100%;
}

.set-grid figure:hover img {
  transform: scale(1.025);
}

.set-one .set-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.set-two .set-grid {
  grid-template-columns:
    minmax(0, 1.5006fr)
    minmax(0, 1fr);
}

.set-three .set-grid {
  grid-template-columns:
    minmax(0, 1.5006fr)
    minmax(0, 1fr);
}

.set-two .solo,
.set-three .solo {
  grid-column: 1 / -1;
}

.set-four .set-grid {
  grid-template-columns:
    minmax(0, 0.8fr)
    minmax(0, 1.7778fr);
}

.set-caption {
  border-top: 1px solid var(--line);
  display: flex;
  font-size: 10px;
  justify-content: space-between;
  letter-spacing: 0.14em;
  margin-top: 12px;
  padding-top: 10px;
  text-transform: uppercase;
}

.statement {
  align-items: center;
  background: #b9a995;
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-height: 78vh;
  padding: 100px 24px;
  text-align: center;
}

.statement p {
  font-size: 10px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
}

.statement h2 {
  font-size: clamp(66px, 10vw, 150px);
  line-height: 0.82;
  margin: 34px 0 0;
}

footer {
  background: var(--ink);
  color: #f3f0e8;
  padding: 110px 4vw 32px;
}

.footer-top {
  border-bottom: 1px solid rgba(255, 255, 255, 0.25);
  display: grid;
  grid-template-columns: 1fr 3fr;
  padding-bottom: 120px;
}

.contact-link {
  font-size: clamp(50px, 7.2vw, 110px);
  line-height: 0.92;
  position: relative;
}

.contact-link span {
  font-family: "Helvetica Neue", Helvetica, Arial, system-ui, sans-serif;
  font-size: 0.35em;
  margin-left: 20px;
  vertical-align: top;
}

.footer-bottom {
  align-items: end;
  display: grid;
  font-size: 12px;
  gap: 32px;
  grid-template-columns: 1.3fr repeat(3, 1fr);
  padding-top: 50px;
}

.footer-brand img {
  height: 82px;
  object-fit: contain;
  object-position: left center;
  width: 132px;
}

.footer-bottom span {
  color: #8e8e88;
  display: block;
  font-size: 9px;
  letter-spacing: 0.18em;
  margin-bottom: 10px;
  text-transform: uppercase;
}

.footer-bottom p {
  margin: 0;
}

@keyframes reveal {
  from { opacity: 0; }
  to { opacity: 1; }
}

@media (max-width: 760px) {
  .site-header {
    padding: 20px;
  }

  nav {
    gap: 20px;
  }

  .hero {
    min-height: 620px;
  }

  .hero-image {
    object-position: 73% center;
  }

  .hero-copy {
    bottom: 17%;
    left: 20px;
  }

  .hero h1 {
    font-size: clamp(52px, 16vw, 80px);
  }

  .scroll-cue {
    bottom: 22px;
    left: 20px;
    right: auto;
  }

  .intro {
    display: block;
    padding: 100px 20px 120px;
  }

  .intro h2 {
    font-size: 54px;
    margin-top: 70px;
  }

  .intro div > p {
    font-size: 14px;
    margin-top: 36px;
  }

  .gallery {
    padding: 0 12px 90px;
  }

  .photo-set {
    margin-bottom: 88px;
  }

  .set-grid {
    display: block;
  }

  .set-grid figure {
    margin-bottom: 4px;
  }

  .statement {
    min-height: 70vh;
  }

  .statement h2 {
    font-size: 18vw;
  }

  footer {
    padding: 80px 20px 28px;
  }

  .footer-top {
    display: block;
    padding-bottom: 90px;
  }

  .contact-link {
    display: block;
    font-size: 15vw;
    margin-top: 70px;
  }

  .footer-bottom {
    grid-template-columns: 1fr;
  }

  .footer-brand {
    margin-bottom: 40px;
  }
}

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

  .hero-image {
    animation: none;
  }

  .set-grid img {
    transition: none;
  }

}
