.hero {
  position: relative;
  min-height: 600px;

  overflow: hidden;

  display: flex;
  align-items: flex-end;
}

.hero-image {
  background-size: contain;
  position: absolute;
  inset: 0;
  background-image: url('../images/01_hero.jpg');
}

.hero-content {
  position: relative;
  z-index: 2;

  width: 50%;
  max-width: 620px;

  padding: 0 40px 42px;
}

.hero h1 {
  margin: 0 0 18px;

  font-family: Georgia, serif;
  font-size: clamp(42px, 5vw, 68px);
  line-height: .98;
  font-weight: 400;
}

.hero-subhead {
  margin: 0;

  color: var(--muted);

  font-family: Georgia, serif;
  font-size: 24px;
  line-height: 1.35;
}

.hero-rule {
  width: 42px;
  height: 1px;

  margin: 20px 0;

  background: var(--silver);
}

.hero-kicker {
  font-family: monospace;
  font-size: 16px;
  line-height: 1.45;
}

.three-up {
  display: grid;
  grid-template-columns: repeat(3, 1fr);

  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.editorial-tile {
  position: relative;

  min-height: 285px;

  overflow: hidden;

  border-right: 1px solid var(--line);
}

.editorial-tile:last-child {
  border-right: 0;
}

.tile-image {
  position: absolute;
  inset: 0;
}

.tile-image--shows {
  background-image: url('../images/02_for_the_shows.jpg');
}

.tile-image--essentials {
  background-image: url('../images/03_weekend_essentials.jpg');
}

.tile-image--capture {
  background-image: url('../images/04_capture_it.jpg');
}

.tile-overlay {
  position: absolute;
  inset: 0;

  display: flex;
  flex-direction: column;
  justify-content: flex-end;

  padding: 28px;

  text-align: center;
}

.tile-overlay h2 {
  margin: 0 0 10px;

  font-family: monospace;
  font-size: 18px;
  font-weight: 400;
  letter-spacing: .03em;
}

.tile-overlay p {
  margin: 0;

  font-family: monospace;
  font-size: 12px;
  line-height: 1.5;
}

.featured-collection {
  position: relative;

  min-height: 300px;

  overflow: hidden;
}

.featured-image {
  position: absolute;
  inset: 0;
  background-image: url('../images/05_featured_collection.jpg');
}

.featured-copy {
  position: relative;
  z-index: 2;

  width: 42%;

  padding: 48px;
}

.eyebrow {
  color: var(--muted);

  font-family: monospace;
  font-size: 11px;
  letter-spacing: .08em;
}

.featured-copy h2 {
  margin: 10px 0;

  font-family: Georgia, serif;
  font-size: 48px;
  line-height: .95;
  font-weight: 400;
}

.featured-copy p {
  max-width: 260px;

  color: #aaa;

  line-height: 1.5;
}

.brand-quote {
  display: grid;
  grid-template-columns: 50% 50%;

  border-bottom: 1px solid var(--line);
}

.quote-image {
  min-height: 125px;
  background-image: url('../images/06_brand_quote.jpg');
}

.brand-quote blockquote {
  margin: 0;
  padding: 30px 50px;

  display: flex;
  align-items: center;

  font-family: monospace;
  font-size: 17px;
  line-height: 1.55;
}

.principles {
  display: grid;
  grid-template-columns: repeat(4, 1fr);

  border-bottom: 1px solid var(--line);
}

.principle {
  padding: 32px 20px;

  text-align: center;

  border-right: 1px solid var(--line);
}

.principle:last-child {
  border-right: 0;
}

.principle-icon {
  display: flex;
  justify-content: center;

  height: 38px;
}

.principle-icon svg {
  width: 26px;
  height: 26px;
  stroke: currentColor;
  fill: none;
  stroke-width: 1.3;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.principle h3 {
  margin: 8px 0 10px;

  font-family: monospace;
  font-size: 12px;
  font-weight: 400;
}

.principle p {
  margin: 0;

  color: #8a8a8a;

  font-family: monospace;
  font-size: 11px;
  line-height: 1.5;
}

@media (max-width: 768px) {

  .hero {
    min-height: 700px;
  }

  .hero-content {
    width: 100%;
    padding: 30px;
  }

  .three-up {
    grid-template-columns: 1fr;
  }

  .editorial-tile {
    min-height: 220px;
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .featured-copy {
    width: auto;
    padding: 35px;
  }

  .brand-quote {
    grid-template-columns: 1fr;
  }

  .quote-image {
    min-height: 90px;
  }

  .principles {
    grid-template-columns: 1fr 1fr;
  }

  .principle:nth-child(2) {
    border-right: 0;
  }

  .principle:nth-child(-n+2) {
    border-bottom: 1px solid var(--line);
  }
}
