/**
 * Screen sizes
 */
/**
  * Colors
  */
:root {
  --primary-color: #00a8ff;
  --secondary-color: #00a8ff;
  --navy-color: #081c3d;
  --heading-font: "oswald", sans-serif;
  --body-font: system-ui;
}

.homepage-hero {
  position: relative;
  overflow: hidden;
  padding: 0;
  background: linear-gradient(90deg, rgba(255, 255, 255, 0.92) 0%, rgba(255, 255, 255, 0.78) 28%, rgba(255, 255, 255, 0.18) 55%, rgba(255, 255, 255, 0) 72%), linear-gradient(180deg, rgba(244, 230, 206, 0.9) 0%, rgba(244, 230, 206, 0.55) 58%, rgb(247, 241, 232) 100%);
  color: #081c3d;
  isolation: isolate;
}
@media (max-width: 960px) {
  .homepage-hero {
    padding: 0;
  }
}
.homepage-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.08) 0%, rgba(255, 255, 255, 0) 52%), linear-gradient(180deg, rgba(200, 16, 46, 0.04) 0%, rgba(200, 16, 46, 0) 50%);
  pointer-events: none;
  z-index: 1;
}
.homepage-hero__background {
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
}
.homepage-hero__background-image {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
}
.homepage-hero__background-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(255, 255, 255, 0.88) 0%, rgba(255, 255, 255, 0.72) 24%, rgba(255, 255, 255, 0.22) 48%, rgba(255, 255, 255, 0) 68%), linear-gradient(180deg, rgba(255, 250, 242, 0.18) 0%, rgba(255, 250, 242, 0) 62%);
}
.homepage-hero__inner {
  position: relative;
  z-index: 2;
  display: block;
  padding: 0;
}
.homepage-hero__content {
  position: relative;
  z-index: 2;
  max-width: 47rem;
  padding: 3rem 0;
  padding-right: 3rem;
  margin-left: 0;
  margin-right: 0;
}
.homepage-hero__eyebrow {
  margin-bottom: 1rem;
}
.homepage-hero__heading {
  margin: 0;
  max-width: 48rem;
  font-family: var(--heading-font, "oswald", sans-serif);
  font-size: var(--step-6);
  font-weight: 500;
  line-height: 0.95;
  letter-spacing: -0.03em;
  text-transform: uppercase;
  color: #081c3d;
}
.homepage-hero__heading em,
.homepage-hero__heading strong {
  font-style: normal;
  color: #c8102e;
}
.homepage-hero__description {
  margin: 1.5rem 0 0;
  font-family: var(--heading-font, "oswald", sans-serif);
  font-size: calc(var(--step-1) + 6px);
  font-weight: 400;
  line-height: 1.35;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(13, 43, 82, 0.8);
}
@media (max-width: 1850px) {
  .homepage-hero__description {
    font-size: calc(var(--step-1) + 6px);
  }
}
@media (max-width: 1750px) {
  .homepage-hero__media {
    right: -250px;
  }
}
.homepage-hero__highlights {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.75rem 1rem;
  margin: 2.5rem 0 0;
  padding: 0;
  list-style: none;
  max-width: 36rem;
}
.homepage-hero__highlight {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  min-height: 4.625rem;
  padding: 0.8125rem 1.0625rem;
  border: 1px solid rgba(13, 43, 82, 0.1);
  border-radius: 1rem;
  background: rgba(255, 255, 255, 0.8);
  box-shadow: 0 0.0625rem 0.1875rem rgba(0, 0, 0, 0.1), 0 0.0625rem 0.125rem rgba(0, 0, 0, 0.1);
}
.homepage-hero__highlight-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 auto;
  width: 2.25rem;
  height: 2.25rem;
  border-radius: 999rem;
  background: rgba(200, 16, 46, 0.1);
  color: #c8102e;
}
.homepage-hero__highlight-icon svg {
  display: block;
  width: 1rem;
  height: 1rem;
}
.homepage-hero__highlight-text {
  font-family: var(--body-font, system-ui);
  font-size: var(--step-0);
  font-weight: 600;
  line-height: 1.5;
  color: #081c3d;
}
.homepage-hero__buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-top: 2.5rem;
}
.homepage-hero__media {
  position: absolute;
  right: 0;
  top: 0;
  bottom: 0;
  display: flex;
  align-items: flex-end;
  justify-content: flex-end;
  pointer-events: none;
  z-index: 1;
}
.homepage-hero__foreground-image {
  display: block;
  width: 100%;
  height: 100%;
  max-width: none;
  object-fit: cover;
  object-position: right bottom;
  filter: drop-shadow(0 2rem 2rem rgba(0, 0, 0, 0.08));
}
@media (max-width: 960px) {
  .homepage-hero__content {
    max-width: 100%;
    padding-right: 0;
  }
  .homepage-hero__media {
    position: static;
    width: 100%;
    display: none;
  }
}
@media (max-width: 768px) {
  .homepage-hero {
    padding: 0;
  }
  .homepage-hero__inner {
    padding: 0;
  }
  .homepage-hero__content {
    padding: 3rem 0;
    padding-right: 0;
  }
  .homepage-hero__media {
    display: none;
  }
  .homepage-hero__heading {
    font-size: calc(var(--step-5));
    letter-spacing: -0.025em;
  }
  .homepage-hero__description {
    font-size: calc(var(--step-1) + 6px);
    letter-spacing: 0.14em;
  }
  .homepage-hero__highlights {
    grid-template-columns: 1fr;
    max-width: 100%;
  }
}

@media (max-width: 1700px) {
  .homepage-hero__media {
    right: -150px !important;
  }
}
@media (max-width: 1400px) {
  .homepage-hero__media {
    right: -300px !important;
  }
}
@media (max-width: 1300px) {
  .homepage-hero::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, rgba(255, 255, 255, 0.96) 0%, rgba(255, 255, 255, 0) 85%);
    pointer-events: none;
    z-index: 1;
  }
}
