```css
/* =========================================
   RESET
========================================= */

html,
body {
  width: 100%;
  max-width: 100%;
  margin: 0;
  padding: 0;
  overflow-x: hidden;
}

* {
  box-sizing: border-box;
}

body {
  background: #f7f7f5;
  color: #111;
  font-family: Arial, Helvetica, sans-serif;
  font-weight: 400;
  line-height: 1.4;
}

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

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

a:hover {
  opacity: 0.55;
}


/* =========================================
   HEADER
========================================= */

.site-header {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  padding: 26px 42px;
  z-index: 10;
}

.site-header nav {
  display: flex;
  justify-content: flex-end;
  gap: 32px;
}

.site-header nav a {
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}


/* =========================================
   HERO
========================================= */

.hero {
  width: 100%;
  padding: 82px 42px 45px;
}

.eyebrow {
  margin: 0 0 12px;
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: #555;
}

.hero h1 {
  margin: 0;
  max-width: 1200px;
  font-size: clamp(62px, 9vw, 135px);
  line-height: 0.88;
  font-weight: 300;
  letter-spacing: -0.05em;
}

.intro {
  margin: 42px 0 0;
  max-width: 500px;
  font-size: 17px;
  line-height: 1.35;
}

.scroll-link {
  display: inline-block;
  margin-top: 40px;
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}


/* =========================================
   SECTIONS
========================================= */

.section {
  width: 100%;
  padding: 90px 42px;
}

.section-number {
  margin-bottom: 60px;
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: #555;
}


/* =========================================
   ABOUT
========================================= */

.about {
  padding-top: 45px;
  padding-bottom: 110px;
}

.about .section-content {
  max-width: 850px;
}

.about .section-content p {
  margin: 0;
  font-size: clamp(28px, 3.5vw, 52px);
  line-height: 1.08;
  font-weight: 300;
  letter-spacing: -0.03em;
}


/* =========================================
   PROJECTS
========================================= */

.projects {
  padding-top: 70px;
}

.project {
  width: 100%;
  margin-bottom: 150px;
}

.project-info {
  margin-bottom: 50px;
}

.project-number {
  display: block;
  margin-bottom: 16px;
  font-size: 11px;
  letter-spacing: 0.1em;
  color: #555;
}

.project-info h2 {
  max-width: 1000px;
  margin: 0 0 22px;
  font-size: clamp(34px, 4vw, 60px);
  line-height: 1.04;
  font-weight: 300;
  letter-spacing: -0.04em;
  overflow-wrap: break-word;
}

.project-location,
.project-year {
  margin: 4px 0 0;
  font-size: 12px;
  color: #555;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}


/* =========================================
   BOOK IMAGES
   KEEP THESE LARGE
========================================= */

.history-images {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: 18px;
  width: 100%;
}

.history-images img {
  width: 100%;
  height: 650px;
  object-fit: cover;
}


/* =========================================
   ART GALLERY
   TWO COLUMNS / EDITORIAL LAYOUT
========================================= */

.art-gallery {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  column-gap: 42px;
  row-gap: 70px;
  width: 100%;
  align-items: start;
}

/* Every image is contained within its column */
.art-gallery img {
  width: 82%;
  max-width: 82%;
  height: auto;
}

/* Left column */
.art-gallery img:nth-child(odd) {
  justify-self: start;
}

/* Right column */
.art-gallery img:nth-child(even) {
  justify-self: end;
}

/* Give the gallery an intentionally staggered rhythm */
.art-gallery img:nth-child(2) {
  margin-top: 90px;
}

.art-gallery img:nth-child(3) {
  margin-top: -25px;
}

.art-gallery img:nth-child(4) {
  margin-top: 45px;
}

.art-gallery img:nth-child(5) {
  margin-top: -35px;
}

.art-gallery img:nth-child(6) {
  margin-top: 80px;
}

.art-gallery img:nth-child(7) {
  margin-top: -15px;
}


/* =========================================
   CONTACT
========================================= */

.contact {
  width: 100%;
  padding: 120px 42px 150px;
  border-top: 1px solid #d5d5d2;
}

.contact h2 {
  margin: 0 0 50px;
  font-size: clamp(55px, 8vw, 120px);
  line-height: 0.9;
  font-weight: 300;
  letter-spacing: -0.05em;
}

.contact-links a {
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}


/* =========================================
   FOOTER
========================================= */

footer {
  padding: 25px 42px;
  border-top: 1px solid #d5d5d2;
}

footer p {
  margin: 0;
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: #666;
}


/* =========================================
   MOBILE
========================================= */

@media (max-width: 700px) {

  .site-header {
    padding: 22px 20px;
  }

  .site-header nav {
    gap: 18px;
  }

  .site-header nav a {
    font-size: 10px;
  }

  .hero {
    padding: 76px 20px 35px;
  }

  .hero h1 {
    font-size: clamp(52px, 15vw, 90px);
    line-height: 0.88;
  }

  .intro {
    margin-top: 34px;
    font-size: 16px;
  }

  .scroll-link {
    margin-top: 32px;
  }

  .section {
    padding: 70px 20px;
  }

  .about {
    padding-top: 35px;
    padding-bottom: 85px;
  }

  .section-number {
    margin-bottom: 40px;
  }

  .about .section-content p {
    font-size: 30px;
  }

  .projects {
    padding-top: 55px;
  }

  .project {
    margin-bottom: 100px;
  }

  .project-info {
    margin-bottom: 38px;
  }

  .project-info h2 {
    font-size: 38px;
  }

  .history-images {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .history-images img {
    height: auto;
  }

  /* Art becomes a single column on small screens */
  .art-gallery {
    grid-template-columns: 1fr;
    row-gap: 35px;
  }

  .art-gallery img {
    width: 78%;
    max-width: 78%;
  }

  .art-gallery img:nth-child(even) {
    justify-self: end;
  }

  .art-gallery img:nth-child(odd) {
    justify-self: start;
  }

  .art-gallery img:nth-child(n) {
    margin-top: 0;
  }

  .contact {
    padding: 90px 20px 110px;
  }

  .contact h2 {
    font-size: 65px;
  }

  footer {
    padding: 20px;
  }
}
```
