.maepora-hero {
  --maepora-navy: #0D1422;
  --maepora-slate: #2A3340;
  --maepora-gold: #C9A15A;
  --maepora-cream: #E6E2D8;
  --maepora-white: #FFFFFF;
  position: relative;
  isolation: isolate;
  display: grid;
  grid-template-rows: minmax(0, 1fr) auto;
  width: 100vw;
  max-width: none;
  min-height: 720px;
  height: calc(100vh - 108px);
  max-height: 900px;
  margin-inline: calc(50% - 50vw);
  overflow: hidden;
  box-sizing: border-box;
  color: var(--maepora-white);
  background: var(--maepora-navy);
}

.maepora-hero .maepora-hero__image {
  position: absolute;
  inset: 0;
  z-index: -3;
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 72% 50%;
}

.maepora-hero .maepora-hero__shade {
  position: absolute;
  inset: 0;
  z-index: -2;
  background:
    linear-gradient(90deg, rgba(13, 20, 34, 0.98) 0%, rgba(13, 20, 34, 0.92) 27%, rgba(13, 20, 34, 0.58) 58%, rgba(13, 20, 34, 0.18) 100%),
    linear-gradient(0deg, rgba(13, 20, 34, 0.72) 0%, rgba(13, 20, 34, 0) 34%);
}

.maepora-hero .maepora-hero__content {
  position: relative;
  z-index: 1;
  align-self: center;
  width: 100%;
  max-width: 1400px;
  margin-inline: auto;
  padding: 64px 72px 52px;
  box-sizing: border-box;
}

.maepora-hero .maepora-hero__eyebrow {
  max-width: 700px;
  margin: 0 0 20px;
  color: var(--maepora-gold);
  font-family: Arial, Helvetica, sans-serif;
  font-size: 13px;
  font-weight: 700;
  line-height: 1.5;
  letter-spacing: 0;
}

.maepora-hero .maepora-hero__title {
  max-width: 760px;
  margin: 0;
  color: var(--maepora-white);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 76px;
  font-weight: 400;
  line-height: 0.98;
  letter-spacing: 0;
}

.maepora-hero .maepora-hero__subhead {
  max-width: 760px;
  margin: 28px 0 0;
  padding-left: 18px;
  border-left: 1px solid var(--maepora-gold);
  color: var(--maepora-gold);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 16px;
  font-weight: 400;
  line-height: 1.55;
  letter-spacing: 0;
}

.maepora-hero .maepora-hero__body {
  max-width: 640px;
  margin: 22px 0 0;
  color: var(--maepora-cream);
  font-family: Arial, Helvetica, sans-serif;
  font-size: 17px;
  font-weight: 400;
  line-height: 1.65;
  letter-spacing: 0;
}

.maepora-hero .maepora-hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 30px;
}

.maepora-hero .maepora-hero__button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 190px;
  min-height: 52px;
  padding: 0 24px;
  border: 1px solid transparent;
  border-radius: 0;
  box-sizing: border-box;
  font-family: Arial, Helvetica, sans-serif;
  font-size: 13px;
  font-weight: 700;
  line-height: 1;
  letter-spacing: 0;
  text-align: center;
  text-decoration: none;
  transition: background-color 180ms ease, border-color 180ms ease, color 180ms ease;
}

.maepora-hero .maepora-hero__button--gold {
  border-color: var(--maepora-gold);
  color: var(--maepora-navy);
  background: var(--maepora-gold);
}

.maepora-hero .maepora-hero__button--gold:hover,
.maepora-hero .maepora-hero__button--gold:focus-visible {
  border-color: var(--maepora-cream);
  color: var(--maepora-navy);
  background: var(--maepora-cream);
}

.maepora-hero .maepora-hero__button--ghost {
  border-color: rgba(230, 226, 216, 0.72);
  color: var(--maepora-white);
  background: rgba(13, 20, 34, 0.28);
}

.maepora-hero .maepora-hero__button--ghost:hover,
.maepora-hero .maepora-hero__button--ghost:focus-visible {
  border-color: var(--maepora-gold);
  color: var(--maepora-gold);
  background: rgba(13, 20, 34, 0.72);
}

.maepora-hero .maepora-hero__button:focus-visible {
  outline: 2px solid var(--maepora-gold);
  outline-offset: 3px;
}

.maepora-hero .maepora-hero__proof {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  width: 100%;
  border-top: 1px solid rgba(201, 161, 90, 0.45);
  box-sizing: border-box;
  color: var(--maepora-cream);
  background: rgba(13, 20, 34, 0.82);
}

.maepora-hero .maepora-hero__proof > span {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 70px;
  padding: 14px 20px;
  border-right: 1px solid rgba(201, 161, 90, 0.32);
  box-sizing: border-box;
  font-family: Arial, Helvetica, sans-serif;
  font-size: 11px;
  font-weight: 700;
  line-height: 1.4;
  letter-spacing: 0;
  text-align: center;
}

.maepora-hero .maepora-hero__proof > span:last-child {
  border-right: 0;
}

@media only screen and (max-width: 1100px) {
  .maepora-hero {
    min-height: 700px;
    max-height: 840px;
  }

  .maepora-hero .maepora-hero__image {
    object-position: 68% 50%;
  }

  .maepora-hero .maepora-hero__shade {
    background:
      linear-gradient(90deg, rgba(13, 20, 34, 0.98) 0%, rgba(13, 20, 34, 0.9) 38%, rgba(13, 20, 34, 0.42) 78%, rgba(13, 20, 34, 0.18) 100%),
      linear-gradient(0deg, rgba(13, 20, 34, 0.76) 0%, rgba(13, 20, 34, 0) 38%);
  }

  .maepora-hero .maepora-hero__content {
    padding: 56px 40px 44px;
  }

  .maepora-hero .maepora-hero__title {
    max-width: 650px;
    font-size: 62px;
  }

  .maepora-hero .maepora-hero__subhead {
    max-width: 650px;
  }

  .maepora-hero .maepora-hero__body {
    max-width: 570px;
  }
}

@media only screen and (max-width: 767px) {
  .maepora-hero {
    grid-template-rows: minmax(0, 1fr) auto;
    min-height: 780px;
    height: auto;
    max-height: none;
  }

  .maepora-hero .maepora-hero__image {
    object-position: 67% 50%;
  }

  .maepora-hero .maepora-hero__shade {
    background:
      linear-gradient(90deg, rgba(13, 20, 34, 0.96) 0%, rgba(13, 20, 34, 0.82) 58%, rgba(13, 20, 34, 0.42) 100%),
      linear-gradient(0deg, rgba(13, 20, 34, 0.88) 0%, rgba(13, 20, 34, 0.18) 58%, rgba(13, 20, 34, 0.12) 100%);
  }

  .maepora-hero .maepora-hero__content {
    align-self: start;
    padding: 48px 24px 36px;
  }

  .maepora-hero .maepora-hero__eyebrow {
    margin-bottom: 16px;
    font-size: 12px;
  }

  .maepora-hero .maepora-hero__title {
    max-width: 520px;
    font-size: 48px;
    line-height: 1;
  }

  .maepora-hero .maepora-hero__subhead {
    max-width: 520px;
    margin-top: 22px;
    font-size: 14px;
    line-height: 1.5;
  }

  .maepora-hero .maepora-hero__body {
    max-width: 500px;
    margin-top: 18px;
    font-size: 16px;
    line-height: 1.55;
  }

  .maepora-hero .maepora-hero__actions {
    display: grid;
    width: 100%;
    max-width: 340px;
    gap: 10px;
    margin-top: 24px;
  }

  .maepora-hero .maepora-hero__button {
    width: 100%;
  }

  .maepora-hero .maepora-hero__proof {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .maepora-hero .maepora-hero__proof > span {
    min-height: 62px;
    padding: 12px 10px;
    border-bottom: 1px solid rgba(201, 161, 90, 0.24);
    font-size: 10px;
  }

  .maepora-hero .maepora-hero__proof > span:nth-child(2n) {
    border-right: 0;
  }

  .maepora-hero .maepora-hero__proof > span:nth-last-child(-n + 2) {
    border-bottom: 0;
  }
}

@media only screen and (max-width: 420px) {
  .maepora-hero {
    min-height: 760px;
  }

  .maepora-hero .maepora-hero__content {
    padding: 40px 20px 30px;
  }

  .maepora-hero .maepora-hero__title {
    font-size: 42px;
  }

  .maepora-hero .maepora-hero__subhead {
    padding-left: 14px;
    font-size: 13px;
  }

  .maepora-hero .maepora-hero__body {
    font-size: 15px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .maepora-hero .maepora-hero__button {
    transition: none;
  }
}
