/* The transition artwork is the focal point; the story sits quietly on black. */
.about-page {
  --about-width: 1580px;
  background: #000;
}
.about-page > section {
  width: 100%;
  max-width: var(--about-width);
  margin-inline: auto;
  padding-inline: var(--gutter);
}
.about-hero {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1.05fr);
  align-items: center;
  gap: clamp(36px, 5vw, 88px);
  padding-top: 170px;
  padding-bottom: 105px;
}
.about-intro-label {
  color: var(--brand);
  font-size: 15px;
  margin-bottom: 25px;
}
.about-hero h1 {
  font-size: clamp(100px, 10.6vw, 166px);
  line-height: 1.04;
  letter-spacing: .005em;
}
.about-hero-description {
  margin-top: 28px;
  font-size: clamp(18px, 1.8vw, 25px);
  line-height: 1.5;
}
.about-hero-links,
.about-inventory-links {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 22px 28px;
  margin-top: 30px;
}
.about-hero-links .text-link,
.about-inventory-links .text-link { margin: 0; }
.about-brand-art {
  width: 100%;
  max-width: 640px;
  margin: 16px 0 0;
  justify-self: end;
}
.about-brand-art img { width: 100%; height: auto; }
.about-brand-art figcaption {
  color: #b5b5b5;
  font-size: 13px;
  line-height: 1.6;
  text-align: center;
  margin-top: 24px;
}
.about-story {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1.05fr);
  gap: clamp(36px, 5vw, 88px);
  padding-top: 90px;
  padding-bottom: 75px;
  border-top: 1px solid var(--line);
}
.about-story h2,
.about-inventory h2,
.about-visit h2 {
  font-size: clamp(48px, 5.2vw, 78px);
  line-height: 1.12;
}
.about-story-copy { max-width: 600px; padding-top: 4px; }
.about-story-copy p { font-size: 18px; line-height: 1.65; }
.about-story-copy p + p { margin-top: 23px; }
.about-story-copy .about-story-lead { color: #fff; font-size: clamp(23px, 2vw, 30px); line-height: 1.45; }
.about-story-copy .text-link { margin-top: 30px; }
.about-inventory {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(0, .85fr);
  gap: clamp(32px, 5vw, 80px);
  align-items: center;
  padding-top: 65px;
  padding-bottom: 110px;
}
.about-inventory-art { position: relative; margin-left: -6%; }
.about-inventory-art img { width: 100%; height: auto; }
.about-inventory-art::after {
  content: '';
  position: absolute;
  inset: -1px;
  pointer-events: none;
  background: linear-gradient(0deg, #000, transparent 13%, transparent 87%, #000), linear-gradient(90deg, #000, transparent 12%, transparent 90%, #000);
}
.about-inventory-copy { max-width: 530px; }
.about-inventory-copy > p { margin-top: 26px; font-size: 18px; line-height: 1.65; }
.about-inventory-copy > p + p { margin-top: 20px; }
.about-visit {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(0, .85fr);
  align-items: center;
  gap: clamp(36px, 7vw, 110px);
  border-top: 1px solid var(--line);
  padding-top: 90px;
  padding-bottom: 110px;
}
.about-visit > div > p { max-width: 400px; margin-top: 24px; font-size: 18px; }
.about-visit-details address { font: 400 clamp(23px, 2.1vw, 32px)/1.4 var(--body); }
.about-visit .about-visit-details > p { font-size: 16px; margin-top: 20px; }
.about-visit-details .button { margin-top: 28px; }

@media (max-width: 900px) {
  .about-hero { gap: 30px; padding-bottom: 80px; }
  .about-hero h1 { font-size: clamp(90px, 12vw, 108px); }
  .about-brand-art figcaption { max-width: 250px; margin-inline: auto; }
  .about-story { padding-top: 75px; }
  .about-inventory { gap: 28px; }
  .about-inventory-copy > p,
  .about-story-copy p { font-size: 16px; }
  .about-inventory h2,
  .about-story h2 { font-size: 48px; }
}

@media (max-width: 760px) {
  .about-hero { display: block; padding-top: 145px; padding-bottom: 60px; }
  .about-intro-label { font-size: 14px; margin-bottom: 20px; }
  .about-hero h1 { font-size: clamp(90px, 23vw, 132px); }
  .about-hero-description { font-size: 19px; margin-top: 24px; }
  .about-hero-links { gap: 20px; margin-top: 26px; }
  .about-hero-links .button { padding-inline: 19px; }
  .about-brand-art { max-width: 470px; margin: 55px auto 0; }
  .about-brand-art figcaption { max-width: none; margin-top: 20px; font-size: 12px; }
  .about-story { display: block; padding-top: 60px; padding-bottom: 20px; }
  .about-story h2,
  .about-inventory h2,
  .about-visit h2 { font-size: clamp(46px, 11.5vw, 65px); }
  .about-story-copy { margin-top: 30px; padding: 0; }
  .about-story-copy .about-story-lead { font-size: 23px; }
  .about-story-copy p + p { margin-top: 20px; }
  .about-inventory { display: block; padding-top: 35px; padding-bottom: 65px; }
  .about-inventory-art { margin-inline: -18px; }
  .about-inventory-copy { margin-top: 12px; }
  .about-inventory-copy > p { margin-top: 23px; }
  .about-inventory-links { gap: 22px; }
  .about-visit { display: block; padding-top: 60px; padding-bottom: 70px; }
  .about-visit > div > p { font-size: 16px; }
  .about-visit-details { margin-top: 35px; }
}
