/* Front-page hero ------------------------------------------------------- */
.fp-hero {
  position: relative;
  z-index: 6;
  display: grid;
  overflow: hidden;
  padding: 202px max(24px, calc((100% - 1190px) / 2)) 80px;
  grid-template-columns: minmax(0, 1fr) 219px;
  grid-template-areas:
    'heading heading'
    'intro quote'
    'cards cards';
  column-gap: 40px;
  align-content: start;
  background: #020807;
  isolation: isolate;
}
.fp-hero__background,
.fp-hero__overlay {
  position: absolute;
  z-index: -2;
  inset: 0;
  width: 100%;
  height: 100%;
}
.fp-hero__background {
  object-fit: cover;
  object-position: center bottom;
}
.fp-hero__overlay {
  z-index: -1;
  background: linear-gradient(180deg, rgba(102, 102, 102, 0) 0%, rgba(0, 0, 0, 0.2) 100%);
}
.fp-heading {
  width: 100%;
  grid-area: heading;
  margin: 0;
}
.fp-heading__eyebrow {
  margin: 0 0 30px;
  font-size: 16px;
  font-weight: 400;
  line-height: 1;
  letter-spacing: -1px;
}
.fp-heading__title {
  margin: 0;
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: clamp(56px, 5vw, 72px);
  font-weight: 700;
  line-height: 0.95;
  letter-spacing: -1px;
  text-transform: uppercase;
}
.fp-intro {
  width: min(462px, 100%);
  grid-area: intro;
  margin: 250px 0 0;
}
.fp-intro__text {
  width: 100%;
  margin: 0 0 30px;
  font-size: 24px;
  font-weight: 500;
  line-height: 1;
  letter-spacing: -1px;
}
.fp-intro__actions {
  display: flex;
  align-items: center;
  gap: 10px;
}
.fp-action {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 15px;
  padding: 20px 40px;
  border: 1px solid rgba(0, 0, 0, 0.1);
  border-radius: 15px;
  background: var(--fp-glass-subtle);
  font-size: 18px;
  font-weight: 500;
  line-height: 1;
  letter-spacing: -1px;
  white-space: nowrap;
  transition: background 180ms ease;
}
.fp-action:hover,
.fp-action:focus-visible {
  background: rgba(255, 255, 255, 0.18);
}
.fp-arrow,
.fp-card__arrow {
  display: block;
  width: 24px;
  height: 24px;
  flex: 0 0 24px;
  transition: transform 180ms ease;
}
.fp-card__link:hover .fp-card__arrow,
.fp-card__link:focus-visible .fp-card__arrow,
.fp-action:hover .fp-arrow,
.fp-action:focus-visible .fp-arrow {
  transform: translateX(4px);
}
.fp-quote {
  width: 219px;
  grid-area: quote;
  align-self: start;
  margin: 230px 0 0;
  padding: 20px 15px;
  border: 1px solid rgba(0, 0, 0, 0.25);
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.1);
}
.fp-quote__icon {
  display: block;
  width: 24px;
  height: 24px;
  margin-bottom: 15px;
}
.fp-quote__text,
.fp-quote__author {
  margin: 0;
  font-size: 16px;
  line-height: 1;
  letter-spacing: -1px;
}
.fp-quote__text {
  margin-bottom: 15px;
  font-weight: 400;
}
.fp-quote__author {
  font-weight: 500;
}
.fp-cards {
  display: grid;
  width: 100%;
  grid-area: cards;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
  margin: 80px 0 0;
}
.fp-card {
  display: flex;
  min-width: 0;
  flex-direction: column;
  align-items: flex-start;
  justify-content: space-between;
  padding: 40px 30px;
  border-radius: 30px;
  background: var(--fp-glass);
}
.fp-card__title,
.fp-card__text,
.fp-card__link {
  margin: 0;
  font-size: 16px;
  line-height: 1;
  letter-spacing: -1px;
}
.fp-card__title {
  margin-bottom: 20px;
  font-size: 18px;
  font-weight: 500;
}
.fp-card__text {
  max-width: 330px;
  font-weight: 400;
}
.fp-card__link {
  display: flex;
  width: 100%;
  align-items: center;
  justify-content: space-between;
  font-size: 18px;
  font-weight: 500;
}
@media (max-width: 960px) {
  .fp-hero {
    padding: 138px 16px 24px;
    grid-template-columns: 1fr;
    grid-template-areas:
      'heading'
      'intro'
      'quote'
      'cards';
  }
  .fp-heading__eyebrow {
    margin-bottom: 20px;
  }
  .fp-heading__title {
    font-size: clamp(44px, 12.5vw, 68px);
    overflow-wrap: anywhere;
  }
  .fp-intro {
    width: 100%;
    max-width: 540px;
    margin-top: clamp(150px, 38vw, 260px);
  }
  .fp-intro__text {
    font-size: 22px;
  }
  .fp-quote {
    width: auto;
    margin: 30px 0 0;
  }
  .fp-cards {
    grid-template-columns: 1fr;
    margin-top: 40px;
  }
}
@media (max-width: 560px) {
  .fp-hero__background {
    object-position: 50% center;
  }
  .fp-intro__actions {
    align-items: stretch;
    flex-direction: column;
  }
  .fp-action {
    width: 100%;
    justify-content: space-between;
    padding-right: 24px;
    padding-left: 24px;
  }
  .fp-card {
    padding: 32px 24px;
  }
}
