:root {
  --ink: #111;
  --paper: #f8f7f3;
  --soft: #ebe7de;
  --muted: #69645b;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: "Gotham", "Avenir Next", Arial, sans-serif;
  line-height: 1.45;
}

img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero {
  position: relative;
  min-height: 92vh;
  display: grid;
  align-items: end;
  background: #111;
}

.hero > img {
  position: absolute;
  inset: 0;
  opacity: 0.78;
}

.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.06), rgba(0, 0, 0, 0.58));
}

.heroText {
  position: relative;
  z-index: 1;
  width: min(920px, calc(100% - 40px));
  margin: 0 auto 8vh;
  color: white;
}

.eyebrow {
  margin: 0 0 16px;
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 0;
}

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

h1 {
  max-width: 760px;
  margin-bottom: 18px;
  font-size: clamp(42px, 8vw, 86px);
  line-height: 0.98;
  font-weight: 700;
}

h2 {
  font-size: clamp(28px, 4vw, 46px);
  line-height: 1.05;
}

.lead {
  max-width: 620px;
  margin-bottom: 30px;
  font-size: clamp(19px, 2.4vw, 27px);
}

.button {
  display: inline-flex;
  align-items: center;
  min-height: 48px;
  padding: 13px 20px;
  background: white;
  color: #111;
  text-decoration: none;
  font-weight: 700;
  border-radius: 4px;
}

.button.dark {
  background: #111;
  color: white;
}

main {
  width: min(1120px, calc(100% - 40px));
  margin: 0 auto;
}

.intro {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 280px;
  gap: 48px;
  padding: 74px 0 56px;
}

.intro p {
  max-width: 710px;
  font-size: 21px;
  color: var(--muted);
}

.price {
  align-self: start;
  padding: 28px;
  background: var(--ink);
  color: white;
  border-radius: 6px;
}

.price span {
  display: block;
  font-size: 56px;
  font-weight: 700;
  line-height: 1;
}

.price p {
  margin: 14px 0 0;
  font-size: 18px;
}

.facts {
  padding: 46px;
  background: var(--soft);
  border-radius: 6px;
}

.facts ul {
  columns: 2;
  gap: 56px;
  margin: 24px 0 0;
  padding-left: 20px;
  font-size: 19px;
}

.facts li {
  margin-bottom: 10px;
  break-inside: avoid;
}

.gallery {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
  padding: 72px 0;
}

.gallery img {
  min-height: 390px;
  border-radius: 6px;
}

.gallery .wide {
  grid-column: 1 / -1;
  min-height: 620px;
}

.photoCredit {
  margin: -50px 0 68px;
  text-align: right;
  color: var(--muted);
  font-size: 15px;
}

.contact {
  padding: 0 0 90px;
  text-align: center;
}

.contact p {
  color: var(--muted);
  font-size: 19px;
}

@media (max-width: 760px) {
  .hero {
    min-height: 84vh;
  }

  .intro {
    grid-template-columns: 1fr;
    gap: 24px;
    padding-top: 52px;
  }

  .facts {
    padding: 28px;
  }

  .facts ul {
    columns: 1;
  }

  .gallery {
    grid-template-columns: 1fr;
    padding: 46px 0;
  }

  .gallery .wide,
  .gallery img {
    grid-column: auto;
    min-height: 320px;
  }
}
