/* Main page cover */
.site-hero,
.site-hero * {
  box-sizing: border-box;
}

.site-hero {
  --hero-accent: #1688a1;
  --hero-ink: #0b1719;
  position: relative;
  min-height: max(720px, 100svh);
  overflow: hidden;
  background: #f3f5f3;
  color: var(--hero-ink);
  font-family: "Tilda Sans", Arial, sans-serif;
  isolation: isolate;
}

.site-hero::before {
  position: absolute;
  z-index: -2;
  top: -35vw;
  right: -24vw;
  width: 72vw;
  max-width: 1160px;
  aspect-ratio: 1;
  border-radius: 50%;
  background: rgba(22, 136, 161, .1);
  content: "";
}

.site-hero::after {
  position: absolute;
  z-index: -1;
  right: 0;
  bottom: 0;
  width: 44%;
  height: 1px;
  background: rgba(11, 23, 25, .2);
  content: "";
}

.site-hero__inner {
  position: relative;
  z-index: 2;
  width: min(1420px, 100%);
  min-height: max(720px, 100svh);
  margin: 0 auto;
  padding: clamp(78px, 10vh, 120px) clamp(24px, 5.2vw, 76px) 52px;
}

.site-hero__content {
  position: relative;
  width: min(920px, 70%);
}

.site-hero__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  margin: 0 0 34px;
  color: var(--hero-accent);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: .1em;
  line-height: 1;
  text-transform: uppercase;
}

.site-hero__eyebrow::before {
  width: 42px;
  height: 2px;
  background: currentColor;
  content: "";
}

.site-hero__title {
  margin: 0;
  font-size: clamp(54px, 7.4vw, 112px);
  font-weight: 500;
  letter-spacing: -.055em;
  line-height: .88;
}

.site-hero__title span {
  display: block;
}

.site-hero__title-accent {
  color: var(--hero-accent);
  font-weight: 400;
}

.site-hero__description {
  width: min(555px, 48%);
  margin: 36px 0 0;
  color: rgba(11, 23, 25, .7);
  font-size: clamp(18px, 1.55vw, 22px);
  font-weight: 400;
  line-height: 1.48;
}

.site-hero__actions {
  display: flex;
  align-items: center;
  gap: 25px;
  margin-top: 34px;
}

.site-hero__button {
  display: inline-flex;
  min-width: 178px;
  min-height: 60px;
  align-items: center;
  justify-content: space-between;
  gap: 25px;
  padding: 16px 21px 16px 26px;
  border: 1px solid var(--hero-accent);
  border-radius: 7px;
  background: var(--hero-accent);
  box-shadow: 0 14px 34px rgba(22, 136, 161, .22);
  color: #fff;
  cursor: pointer;
  font: 600 17px/1 "Tilda Sans", Arial, sans-serif;
  transition: background .2s ease, border-color .2s ease, box-shadow .2s ease, transform .2s ease;
}

.site-hero__button svg {
  width: 21px;
  height: 21px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.8;
  transition: transform .2s ease;
}

.site-hero__button:hover {
  border-color: #0e6578;
  background: #0e6578;
  box-shadow: 0 18px 40px rgba(22, 136, 161, .3);
  transform: translateY(-2px);
}

.site-hero__button:hover svg {
  transform: translateX(3px);
}

.site-hero__button:focus-visible {
  outline: 3px solid rgba(22, 136, 161, .36);
  outline-offset: 4px;
}

.site-hero__action-note {
  color: rgba(11, 23, 25, .52);
  font-size: 13px;
  line-height: 1.42;
}

.site-hero__facts {
  position: absolute;
  right: clamp(24px, 5.2vw, 76px);
  bottom: 51px;
  left: clamp(24px, 5.2vw, 76px);
  display: grid;
  grid-template-columns: repeat(3, minmax(145px, 220px));
  gap: 0;
  padding-top: 25px;
  border-top: 1px solid rgba(11, 23, 25, .15);
}

.site-hero__fact {
  display: grid;
  gap: 3px;
  padding-right: 28px;
}

.site-hero__fact + .site-hero__fact {
  padding-left: 28px;
  border-left: 1px solid rgba(11, 23, 25, .14);
}

.site-hero__fact strong {
  color: var(--hero-ink);
  font-size: 21px;
  font-weight: 600;
  line-height: 1.15;
}

.site-hero__fact span {
  color: rgba(11, 23, 25, .5);
  font-size: 13px;
  line-height: 1.3;
}

.site-hero__art {
  position: absolute;
  z-index: 1;
  top: 50%;
  right: clamp(28px, 5vw, 82px);
  width: min(31vw, 470px);
  height: min(52vw, 640px);
  min-height: 480px;
  transform: translateY(-56%);
}

.site-hero__glass {
  position: absolute;
  border: 1px solid rgba(22, 136, 161, .28);
  border-radius: 3px;
  background: #d8e2e2;
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, .5), 0 28px 55px rgba(20, 62, 70, .08);
  object-fit: cover;
  filter: saturate(.82) contrast(1.03);
}

.site-hero__glass--back {
  width: 72%;
  height: 78%;
  top: 1%;
  right: 0;
  transform: rotate(7deg);
  object-position: 60% center;
}

.site-hero__glass--front {
  width: 76%;
  height: 82%;
  bottom: 1%;
  left: 0;
  transform: rotate(-7deg);
  object-position: center;
}

.site-hero__art-mark {
  position: absolute;
  z-index: 2;
  right: 1%;
  bottom: 4%;
  display: flex;
  align-items: flex-start;
  color: var(--hero-accent);
  font-size: clamp(46px, 5vw, 74px);
  font-weight: 500;
  letter-spacing: -.06em;
  line-height: 1;
}

.site-hero__art-mark span {
  margin: 7px 0 0 7px;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
}

@media (max-width: 1000px) {
  .site-hero__inner {
    padding-top: 80px;
  }

  .site-hero__content {
    width: 78%;
  }

  .site-hero__title {
    font-size: clamp(54px, 8.4vw, 84px);
  }

  .site-hero__art {
    right: -8%;
    width: 37vw;
    opacity: .62;
  }
}

@media (max-width: 700px) {
  .site-hero {
    min-height: 760px;
  }

  .site-hero::before {
    top: -40vw;
    right: -72vw;
    width: 150vw;
  }

  .site-hero__inner {
    min-height: 760px;
    padding: 60px 20px 32px;
  }

  .site-hero__content {
    width: 100%;
  }

  .site-hero__eyebrow {
    max-width: 245px;
    margin-bottom: 27px;
    font-size: 11px;
    line-height: 1.25;
  }

  .site-hero__eyebrow::before {
    width: 28px;
    flex: 0 0 28px;
  }

  .site-hero__title {
    font-size: clamp(56px, 16vw, 82px);
    line-height: .92;
  }

  .site-hero__description {
    position: relative;
    z-index: 2;
    width: 100%;
    margin-top: 27px;
    font-size: 17px;
  }

  .site-hero__actions {
    position: relative;
    z-index: 2;
    align-items: flex-start;
    margin-top: 25px;
  }

  .site-hero__button {
    min-width: 168px;
  }

  .site-hero__action-note {
    display: none;
  }

  .site-hero__facts {
    right: 20px;
    bottom: 28px;
    left: 20px;
    grid-template-columns: repeat(3, 1fr);
    padding-top: 17px;
  }

  .site-hero__fact {
    padding-right: 10px;
  }

  .site-hero__fact + .site-hero__fact {
    padding-left: 10px;
  }

  .site-hero__fact strong {
    font-size: 15px;
  }

  .site-hero__fact span {
    font-size: 10px;
  }

  .site-hero__art {
    top: auto;
    right: -42px;
    bottom: 103px;
    width: 210px;
    height: 250px;
    min-height: 0;
    opacity: .3;
    transform: none;
  }

  .site-hero__art-mark {
    display: none;
  }
}

@media (max-width: 390px) {
  .site-hero__title {
    font-size: 56px;
  }

  .site-hero__description {
    font-size: 16px;
  }
}

/* Fixed clearance beneath the floating header */
.site-hero__inner {
  padding-top: 150px;
}

@media (max-width: 700px) {
  .site-hero__inner {
    padding-top: 110px;
  }
}
