
:root {
  --bg: #f7f7f4;
  --text: #111111;
  --muted: #777772;
  --line: #d9d9d3;
  --max: 1440px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--bg);
  color: var(--text);
  font-family: Arial, Helvetica, sans-serif;
  -webkit-font-smoothing: antialiased;
}

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

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

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

.site-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  min-height: 82px;
  border-bottom: 1px solid var(--line);
}

.brand {
  font-size: 15px;
  font-weight: 700;
  letter-spacing: -0.02em;
  text-transform: uppercase;
}

.nav {
  display: flex;
  gap: 24px;
  align-items: center;
  font-size: 13px;
}

.nav a,
.inline-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  position: relative;
}

.icon {
  width: 14px;
  height: 14px;
  flex: 0 0 14px;
  object-fit: contain;
  transition: transform .22s ease;
}

.nav a::after,
.inline-link::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -4px;
  width: 100%;
  height: 1px;
  background: currentColor;
  transform: scaleX(0);
  transform-origin: right;
  transition: transform .25s ease;
}

.nav a:hover::after,
.inline-link:hover::after {
  transform: scaleX(1);
  transform-origin: left;
}

.nav a:hover .icon,
.inline-link:hover .icon {
  transform: translate(2px, -2px);
}

.hero {
  min-height: 70vh;
  display: grid;
  grid-template-columns: 1.35fr .65fr;
  gap: 60px;
  align-items: end;
  padding: 72px 0 64px;
  border-bottom: 1px solid var(--line);
}

.hero h1 {
  margin: 0;
  max-width: 950px;
  font-size: clamp(54px, 9vw, 145px);
  line-height: .86;
  letter-spacing: -0.07em;
  font-weight: 500;
}

.hero-copy {
  max-width: 400px;
  margin-left: auto;
  padding-bottom: 7px;
}

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

.hero-copy p,
.collection-intro p {
  margin: 0;
  font-size: 15px;
  line-height: 1.55;
}

.section {
  padding: 78px 0 100px;
}

.section-head {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  align-items: baseline;
  margin-bottom: 32px;
}

.section-head h2 {
  margin: 0;
  font-size: 15px;
  font-weight: 500;
  text-transform: uppercase;
}

.section-head span {
  font-size: 12px;
  color: var(--muted);
}

.collection-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 64px 18px;
}

.collection-card {
  display: block;
}

.placeholder {
  position: relative;
  aspect-ratio: 4 / 5;
  overflow: hidden;
  background:
    linear-gradient(135deg, rgba(255,255,255,.45), transparent 45%),
    #d8d8d2;
}

.placeholder::after {
  content: attr(data-label);
  position: absolute;
  inset: auto 14px 14px 14px;
  font-size: 11px;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: rgba(17,17,17,.45);
}

.collection-card:nth-child(2) .placeholder { background-color: #c9c7c0; }
.collection-card:nth-child(3) .placeholder { background-color: #e5e2db; }
.collection-card:nth-child(4) .placeholder { background-color: #bebbb4; }

.card-meta {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 12px;
  padding-top: 12px;
}

.card-meta h3 {
  margin: 0;
  font-size: 20px;
  font-weight: 500;
  letter-spacing: -0.03em;
}

.card-meta span {
  padding-top: 3px;
  font-size: 12px;
  color: var(--muted);
}

.footer {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  padding: 24px 0 36px;
  border-top: 1px solid var(--line);
  font-size: 12px;
  color: var(--muted);
}

.collection-header {
  padding: 68px 0 42px;
}

.back {
  display: inline-flex;
  margin-bottom: 52px;
  font-size: 12px;
  color: var(--muted);
}

.collection-title-row {
  display: grid;
  grid-template-columns: 1.35fr .65fr;
  gap: 60px;
  align-items: end;
}

.collection-title-row h1 {
  margin: 0;
  font-size: clamp(48px, 8vw, 120px);
  line-height: .9;
  font-weight: 500;
  letter-spacing: -0.06em;
}

.collection-intro {
  max-width: 430px;
  margin-left: auto;
}

.collection-facts {
  display: flex;
  gap: 20px;
  margin-top: 22px;
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: .06em;
  color: var(--muted);
}

.gallery {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 18px;
  padding: 28px 0 100px;
}

.gallery .shot {
  grid-column: span 6;
}

.gallery .shot.wide {
  grid-column: span 12;
}

.gallery .shot.narrow {
  grid-column: span 4;
}

.gallery .shot.tall {
  grid-column: span 8;
}

.gallery .placeholder {
  aspect-ratio: 4 / 5;
}

.gallery .wide .placeholder {
  aspect-ratio: 16 / 9;
}

.gallery .narrow .placeholder {
  aspect-ratio: 3 / 4;
}

.gallery .shot:nth-child(2) .placeholder { background-color: #c7c4bc; }
.gallery .shot:nth-child(3) .placeholder { background-color: #e2dfd8; }
.gallery .shot:nth-child(4) .placeholder { background-color: #bbb8b1; }
.gallery .shot:nth-child(5) .placeholder { background-color: #d2d0ca; }
.gallery .shot:nth-child(6) .placeholder { background-color: #e9e7e1; }

.next-project {
  display: flex;
  justify-content: space-between;
  align-items: end;
  gap: 20px;
  padding: 46px 0 56px;
  border-top: 1px solid var(--line);
}

.next-project span {
  font-size: 12px;
  text-transform: uppercase;
  color: var(--muted);
}

.next-project strong {
  display: block;
  margin-top: 8px;
  font-size: clamp(26px, 4vw, 54px);
  font-weight: 500;
  letter-spacing: -0.04em;
}

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

  .site-header {
    min-height: 64px;
  }

  .nav {
    gap: 14px;
  }

  .hero,
  .collection-title-row {
    grid-template-columns: 1fr;
    gap: 36px;
  }

  .hero {
    min-height: auto;
    padding: 58px 0 46px;
  }

  .hero h1 {
    font-size: clamp(54px, 18vw, 95px);
  }

  .hero-copy,
  .collection-intro {
    margin-left: 0;
  }

  .section {
    padding: 56px 0 72px;
  }

  .collection-grid {
    grid-template-columns: 1fr;
    gap: 46px;
  }

  .collection-header {
    padding-top: 44px;
  }

  .back {
    margin-bottom: 36px;
  }

  .gallery {
    display: block;
    padding-bottom: 72px;
  }

  .gallery .shot {
    margin-bottom: 14px;
  }

  .footer {
    flex-direction: column;
    gap: 8px;
  }
}
