:root {
  --aqua: #62c9cc;
  --brown: #35231d;
  --paper: #f2e8dc;
  --coral: #e85b45;
}

* { box-sizing: border-box; }

html { background: var(--brown); }

body {
  margin: 0;
  background: var(--brown);
  color: var(--brown);
  font-family: "Helvetica Neue", Helvetica, Arial, "PingFang SC", sans-serif;
}

a { color: inherit; }

.spread {
  min-height: 100svh;
  position: relative;
  overflow: hidden;
}

.hero { color: var(--brown); background: var(--aqua); }

.image-spread > img {
  width: 100%;
  height: 100%;
  position: absolute;
  inset: 0;
  display: block;
  object-fit: cover;
}

.masthead {
  position: relative;
  z-index: 1;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  padding: clamp(30px, 4.5vw, 72px) clamp(28px, 5vw, 86px);
}

.brand {
  display: inline-block;
  font-family: "Hiragino Sans GB", "PingFang SC", sans-serif;
  font-size: clamp(34px, 5vw, 74px);
  font-weight: 300;
  letter-spacing: -.11em;
  line-height: .92;
  text-decoration: none;
}

.menu {
  padding-top: 7px;
  font-family: "Courier New", monospace;
  font-size: 11px;
  letter-spacing: .14em;
  text-decoration: none;
  text-transform: uppercase;
}

.hero-copy {
  position: absolute;
  z-index: 1;
  left: clamp(28px, 5vw, 86px);
  bottom: clamp(175px, 20vh, 230px);
  max-width: min(770px, 70vw);
}

.hero-copy p,
.statement-label,
.contact-spread p {
  margin: 0 0 20px;
  font-family: "Courier New", monospace;
  font-size: clamp(10px, .85vw, 13px);
  letter-spacing: .13em;
  text-transform: uppercase;
}

.hero h1,
.statement h2,
.contact-spread h2 {
  margin: 0;
  font-size: clamp(44px, 5.8vw, 92px);
  font-weight: 300;
  letter-spacing: -.065em;
  line-height: .93;
}

.category-nav {
  position: absolute;
  z-index: 1;
  right: clamp(28px, 5vw, 86px);
  bottom: clamp(34px, 5vw, 78px);
  left: clamp(28px, 5vw, 86px);
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  align-items: end;
}

.category-nav a {
  font-size: clamp(31px, 4.8vw, 76px);
  font-weight: 300;
  letter-spacing: -.065em;
  line-height: .86;
  text-decoration-line: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: .22em;
}

.category-nav a:nth-child(2) { text-align: center; }
.category-nav a:nth-child(3) { text-align: right; }

.image-spread { background: var(--brown); }
.image-spread--architecture > img { object-position: center center; }
.image-spread--landscape > img { object-position: center center; }
.image-spread--detail > img { object-position: center 40%; filter: grayscale(100%); }

.text-spread {
  display: flex;
  align-items: center;
  padding: clamp(44px, 8vw, 140px);
  background: var(--aqua);
}

.text-spread--connection {
  display: grid;
  grid-template-columns: 1fr 1fr;
  padding: 0;
}

.text-spread--space { background: var(--brown); color: var(--paper); }

.statement { max-width: 500px; }
.text-spread--connection .statement { justify-self: center; padding: clamp(44px, 7vw, 120px); }
.text-spread--connection .statement h2 { font-size: clamp(42px, 3.6vw, 56px); }
.statement-label { margin-bottom: clamp(35px, 7vh, 70px); }
.statement h2 { font-size: clamp(36px, 4.1vw, 64px); }
.translation { margin: clamp(35px, 6vh, 70px) 0 0; font-family: "Kaiti SC", "Songti SC", serif; font-size: clamp(16px, 1.55vw, 24px); }

.statement-image {
  width: 100%;
  height: 100svh;
  justify-self: stretch;
  object-fit: cover;
  object-position: center 42%;
}

.contact-spread {
  display: flex;
  min-height: min(70svh, 680px);
  flex-direction: column;
  justify-content: center;
  padding: clamp(44px, 8vw, 140px);
  background: var(--coral);
}

.contact-spread a {
  align-self: flex-start;
  margin-top: clamp(50px, 9vh, 100px);
  font-family: "Kaiti SC", "Songti SC", serif;
  font-size: clamp(25px, 3vw, 46px);
  font-weight: 600;
  text-decoration: none;
}

@media (max-width: 720px) {
  .spread { min-height: 100svh; }
  .hero { min-height: 0; aspect-ratio: 1; }
  .masthead { padding-top: 32px; }
  .hero-copy { right: 28px; bottom: 220px; max-width: none; }
  .hero h1 { font-size: clamp(42px, 12vw, 62px); }
  .category-nav { gap: 16px; grid-template-columns: 1fr; bottom: 32px; }
  .category-nav a, .category-nav a:nth-child(2), .category-nav a:nth-child(3) { text-align: left; font-size: clamp(29px, 8vw, 44px); }
  .image-spread { min-height: 0; }
  .image-spread:not(.image-spread--detail) { aspect-ratio: 1; }
  .image-spread:not(.image-spread--detail) > img { height: 100%; object-fit: cover; }
  .image-spread--detail > img { position: relative; height: auto; object-fit: contain; }
  .text-spread { padding: 54px 28px; }
  .text-spread--connection { min-height: 0; aspect-ratio: 1; grid-template-columns: 1fr 1fr; padding: 0; }
  .text-spread--connection .statement { padding: 0 12px 0 16px; }
  .text-spread--connection .statement h2 { font-size: clamp(25px, 7.2vw, 34px); }
  .text-spread--connection .statement-label { margin-bottom: 28px; font-size: 8px; }
  .text-spread--connection .translation { margin-top: 26px; font-size: 11px; line-height: 1.5; }
  .text-spread--connection .statement-image { display: block; width: 100%; height: 100%; justify-self: stretch; }
  .contact-spread { min-height: 76svh; }
}
