@font-face {
  font-family: "Mona Sans";
  src: url("https://cdn.prod.website-files.com/645e56a02fb5e672cb5fea07/645e6a3d184e4a0dd9e6ef73_Mona-Sans-Bold.otf") format("opentype");
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Mona Sans";
  src: url("https://cdn.prod.website-files.com/645e56a02fb5e672cb5fea07/645e6a3d8c139527d5264aa1_Mona-Sans-Medium.otf") format("opentype");
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Mona Sans";
  src: url("https://cdn.prod.website-files.com/645e56a02fb5e672cb5fea07/64b841c470f8d954650cc0e1_Mona-Sans-Regular.otf") format("opentype");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

:root {
  --hh-n100: #ffffff;
  --hh-n200: #e8f0f2;
  --hh-n300: #d8e0e1;
  --hh-n600: #515f62;
  --hh-n800: #002d33;
  --hh-green: #30cb65;
  --hh-teal: #00404f;
  --hh-mist: #eef6f9;
  --hh-deep: #001517;
  --hh-shadow: #14142b0f;
  --hh-wrap: 1268px;
  --hh-radius: 24px;
  --hh-radius-sm: 16px;
  --hh-btn-r: 10px;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 6rem;
}

body {
  margin: 0;
  color: var(--hh-n600);
  font-family: "Mona Sans", system-ui, sans-serif;
  font-size: 16px;
  font-weight: 500;
  line-height: 1.625;
  background: var(--hh-n100);
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  color: var(--hh-green);
  text-decoration: none;
  transition: color 0.3s;
}

button,
input,
textarea {
  font: inherit;
}

.hh-wrap {
  width: 100%;
  max-width: var(--hh-wrap);
  margin-inline: auto;
  padding-inline: 24px;
}

.hh-skip {
  position: absolute;
  left: 1rem;
  top: -4rem;
  z-index: 80;
  background: var(--hh-green);
  color: #fff;
  padding: 0.6rem 1rem;
  border-radius: var(--hh-btn-r);
  font-weight: 700;
}

.hh-skip:focus {
  top: 1rem;
}

.hh-kicker {
  margin: 0 0 8px;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--hh-green);
}

.hh-kicker--on-dark {
  color: var(--hh-green);
}

.hh-nowrap {
  white-space: nowrap;
}

h1,
h2,
h3 {
  color: var(--hh-n800);
  margin: 0 0 12px;
  font-weight: 700;
}

h1 {
  font-size: clamp(40px, 6vw, 64px);
  line-height: 1.156;
}

h2 {
  font-size: clamp(28px, 3.5vw, 34px);
  line-height: 1.294;
}

h3 {
  font-size: 24px;
  line-height: 1.417;
}

p {
  margin: 0 0 16px;
}

.hh-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  border-radius: var(--hh-btn-r);
  padding: 20px 28px;
  font-size: 18px;
  font-weight: 700;
  line-height: 1.11;
  cursor: pointer;
  text-decoration: none;
  border: 1px solid transparent;
  transition: background-color 0.3s, transform 0.3s, color 0.3s, border-color 0.3s;
}

.hh-btn:hover {
  transform: scale(1.05);
}

.hh-btn--fill {
  background: var(--hh-green);
  border-color: var(--hh-green);
  color: #fff;
}

.hh-btn--fill:hover {
  color: #fff;
}

.hh-btn--line {
  background: transparent;
  border-color: var(--hh-teal);
  color: var(--hh-n800);
}

.hh-btn--line:hover {
  background: var(--hh-green);
  border-color: var(--hh-green);
  color: #fff;
}

.hh-btn--ghost {
  background: transparent;
  border-color: var(--hh-n300);
  color: #fff;
}

.hh-btn--ghost:hover {
  background: #fff;
  color: var(--hh-n800);
}

.hh-btn--sm {
  padding: 15px 14px;
  font-size: 16px;
}

.hh-btn__arrow {
  font-weight: 700;
}

.hh-masthead {
  position: sticky;
  top: 0;
  z-index: 40;
  background: var(--hh-n100);
  border-bottom: 1px solid var(--hh-n200);
}

.hh-masthead.is-stuck {
  box-shadow: 0 2px 12px var(--hh-shadow);
}

.hh-masthead__phone {
  display: none;
  color: var(--hh-n800);
  font-weight: 700;
  font-size: 14px;
  white-space: nowrap;
  text-decoration: none;
}

.hh-masthead__phone:hover {
  color: var(--hh-green);
}

.hh-masthead__row {
  display: flex;
  align-items: center;
  gap: 24px;
  min-height: 92px;
}

.hh-brand__img {
  height: 68px;
  width: auto;
}

.hh-nav {
  margin-left: auto;
}

.hh-nav__list {
  display: flex;
  gap: 8px;
  list-style: none;
  margin: 0;
  padding: 0;
}

.hh-nav__list li {
  margin: 0;
  padding: 0;
}

.hh-nav__link {
  display: block;
  padding: 8px 12px;
  color: var(--hh-n800);
  font-weight: 500;
}

.hh-nav__link:hover,
.hh-nav__link.is-current {
  color: var(--hh-green);
}

.hh-masthead__actions {
  display: flex;
  align-items: center;
  gap: 16px;
}

.hh-burger {
  display: none;
  width: 44px;
  height: 44px;
  border: 0;
  background: var(--hh-mist);
  border-radius: var(--hh-btn-r);
  cursor: pointer;
  padding: 0;
}

.hh-burger span {
  display: block;
  width: 18px;
  height: 2px;
  margin: 5px auto;
  background: var(--hh-n800);
  transition: transform 0.25s;
}

.hh-burger.is-open span:first-child {
  transform: translateY(3.5px) rotate(45deg);
}

.hh-burger.is-open span:last-child {
  transform: translateY(-3.5px) rotate(-45deg);
}

.hh-drawer,
.hh-scrim {
  display: none;
}

.hh-hero {
  padding: 80px 0 100px;
}

.hh-hero__grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1.05fr);
  gap: 48px;
  align-items: center;
}

.hh-hero__title {
  margin-bottom: 16px;
}

.hh-hero__lead {
  max-width: 32rem;
  font-size: 18px;
}

.hh-hero__cta {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  margin: 24px 0 32px;
}

.hh-stats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin: 0;
  max-width: 420px;
}

.hh-stats dt {
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--hh-green);
}

.hh-stats dd {
  margin: 4px 0 0;
  color: var(--hh-n800);
  font-weight: 700;
}

.hh-hero__shots {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.hh-shot {
  margin: 0;
  overflow: hidden;
  border-radius: var(--hh-radius);
}

.hh-shot img {
  width: 100%;
  height: 420px;
  object-fit: cover;
}

.hh-shot:first-child {
  margin-top: 36px;
}

.hh-shot:last-child {
  margin-bottom: 36px;
}

.hh-panel {
  border-radius: var(--hh-radius);
  max-width: 1330px;
  margin: 0 auto;
  padding: 88px 0;
}

.hh-panel--teal {
  background: var(--hh-teal);
  color: #fff;
}

.hh-panel--teal p,
.hh-panel--teal h2 {
  color: #fff;
}

.hh-panel--teal p {
  color: var(--hh-n300);
}

.hh-panel--mist {
  background: var(--hh-mist);
}

.hh-callout {
  padding: 0 16px 24px;
}

.hh-callout__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
}

.hh-callout__title {
  color: #fff;
}

.hh-about {
  padding: 100px 0;
}

.hh-about__grid {
  display: grid;
  grid-template-columns: 0.92fr 1.08fr;
  gap: 48px;
  align-items: center;
}

.hh-about__photo {
  margin: 0;
  border-radius: var(--hh-radius);
  overflow: hidden;
}

.hh-about__photo img {
  width: 100%;
  height: 520px;
  object-fit: cover;
}

.hh-checks {
  margin: 24px 0 0;
  padding: 0;
  list-style: none;
}

.hh-checks li {
  position: relative;
  margin: 0 0 10px;
  padding: 6px 0 6px 28px;
  color: var(--hh-n800);
  font-weight: 700;
}

.hh-checks li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 12px;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: var(--hh-green);
}

.hh-offer {
  padding: 0 16px 24px;
}

.hh-offer__head {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.hh-offer__head .hh-btn {
  margin-top: 16px;
  align-self: flex-start;
}

.hh-tiles {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  align-items: stretch;
}

.hh-tile {
  background: var(--hh-n100);
  border-radius: var(--hh-radius);
  overflow: hidden;
  box-shadow: 0 2px 7px 0 var(--hh-shadow);
  display: flex;
  flex-direction: column;
  min-height: 100%;
  color: var(--hh-n800);
}

.hh-tile__body {
  padding: 28px 24px 20px;
}

.hh-tile h3 {
  font-size: 22px;
  margin-bottom: 8px;
}

.hh-tile p {
  margin: 0;
  color: var(--hh-n600);
  font-size: 15px;
}

.hh-tile__media {
  margin-top: auto;
  height: 190px;
  overflow: hidden;
}

.hh-tile__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.45s;
}

.hh-tile:hover .hh-tile__media img {
  transform: scale(1.06);
}

.hh-motto {
  padding: 24px 16px 0;
}

.hh-gallery {
  display: grid;
  grid-template-columns: 1.25fr 1fr 1fr;
  grid-template-rows: 220px 220px;
  gap: 20px;
  margin-top: 32px;
}

.hh-gallery__item {
  margin: 0;
  padding: 0;
  border: 0;
  border-radius: var(--hh-radius);
  overflow: hidden;
  cursor: zoom-in;
  background: none;
}

.hh-gallery__item:first-child {
  grid-row: span 2;
}

.hh-gallery__item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hh-contact {
  padding: 100px 0;
}

.hh-contact__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: start;
}

.hh-facts {
  list-style: none;
  margin: 28px 0 0;
  padding: 0;
  display: grid;
  gap: 16px;
}

.hh-facts li {
  display: flex;
  gap: 16px;
  align-items: center;
  background: var(--hh-n100);
  box-shadow: 0 2px 7px 0 var(--hh-shadow);
  border-radius: var(--hh-radius-sm);
  padding: 18px 20px;
  margin: 0;
}

.hh-facts img {
  width: 42px;
  height: 42px;
  object-fit: contain;
}

.hh-facts span {
  display: block;
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: var(--hh-green);
}

.hh-facts a {
  color: var(--hh-n800);
  font-weight: 700;
}

.hh-facts a:hover {
  color: var(--hh-green);
}

.hh-form {
  background: var(--hh-n100);
  box-shadow: 0 2px 7px 0 var(--hh-shadow);
  border-radius: var(--hh-radius);
  padding: 40px 32px;
}

.hh-form__title {
  margin: 0 0 8px;
  color: var(--hh-n800);
  font-size: 24px;
  font-weight: 700;
  line-height: 1.3;
}

.hh-form__hint {
  color: var(--hh-n600);
}

.hh-field {
  display: grid;
  gap: 8px;
  margin-bottom: 16px;
  font-weight: 700;
  font-size: 14px;
  color: var(--hh-n800);
}

.hh-field input,
.hh-field textarea {
  width: 100%;
  border: 1px solid var(--hh-n200);
  background: var(--hh-n100);
  color: var(--hh-n800);
  border-radius: var(--hh-btn-r);
  min-height: 56px;
  padding: 16px 24px;
  font-weight: 500;
}

.hh-field textarea {
  min-height: 140px;
  resize: vertical;
}

.hh-field input:hover,
.hh-field textarea:hover,
.hh-field input:focus,
.hh-field textarea:focus {
  border-color: var(--hh-green);
  outline: none;
}

.hh-field.is-bad input,
.hh-field.is-bad textarea {
  border-color: #dc2b2b;
}

.hh-form__status {
  min-height: 1.2rem;
  font-weight: 700;
  color: #dc2b2b;
}

.hh-form__status.is-ok {
  color: var(--hh-green);
}

.hh-form__submit {
  width: 100%;
}

.hh-foot {
  background: var(--hh-n800);
  color: var(--hh-n300);
  padding: 64px 0 24px;
}

.hh-foot a {
  color: var(--hh-n300);
}

.hh-foot a:hover {
  color: var(--hh-green);
}

.hh-foot p,
.hh-foot address {
  color: var(--hh-n300);
  font-style: normal;
  margin: 0 0 8px;
}

.hh-foot__grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  gap: 32px;
  padding-bottom: 32px;
}

.hh-foot__logo {
  height: 44px;
  width: auto;
  margin-bottom: 16px;
}

.hh-foot__menu {
  display: grid;
  gap: 8px;
}

.hh-foot__label {
  margin: 0 0 12px;
  font-weight: 700;
  color: #fff;
  font-size: 16px;
  text-transform: none;
  letter-spacing: 0;
}

.hh-foot__copy {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding-top: 20px;
  font-size: 14px;
}

.hh-zoom {
  position: fixed;
  inset: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 72px 88px 40px;
  background: rgba(0, 21, 23, 0.86);
  overflow: hidden;
}

.hh-zoom[hidden] {
  display: none;
}

.hh-zoom__figure {
  margin: 0;
  max-width: min(1100px, 100%);
  text-align: center;
}

.hh-zoom img {
  width: auto;
  max-width: 100%;
  max-height: calc(100vh - 160px);
  object-fit: contain;
  border-radius: 16px;
  background: #000;
}

.hh-zoom figcaption {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 12px;
  margin-top: 12px;
  color: #fff;
  font-weight: 700;
}

.hh-zoom__count {
  color: var(--hh-green);
}

.hh-zoom__close,
.hh-zoom__nav {
  position: absolute;
  border: 0;
  border-radius: var(--hh-btn-r);
  background: var(--hh-green);
  color: #fff;
  cursor: pointer;
  display: grid;
  place-items: center;
}

.hh-zoom__close {
  top: 20px;
  right: 20px;
  width: 44px;
  height: 44px;
  font-size: 1.6rem;
  z-index: 2;
}

.hh-zoom__nav {
  top: 50%;
  width: 48px;
  height: 48px;
  font-size: 2rem;
  line-height: 1;
  transform: translateY(-50%);
}

.hh-zoom__nav--prev {
  left: 20px;
}

.hh-zoom__nav--next {
  right: 20px;
}

@media (max-width: 991px) {
  .hh-brand__img {
    height: 48px;
  }

  .hh-zoom {
    padding: 72px 16px 24px;
  }

  .hh-zoom__nav--prev {
    left: 8px;
  }

  .hh-zoom__nav--next {
    right: 8px;
  }

  .hh-nav,
  .hh-masthead__call {
    display: none;
  }

  .hh-masthead__phone {
    display: block;
    margin-right: auto;
    font-size: 13px;
  }

  .hh-masthead__phone:hover {
    color: var(--hh-green);
  }

  .hh-masthead__actions {
    margin-left: 8px;
  }

  .hh-burger {
    display: inline-block;
  }

  .hh-drawer {
    display: block;
    position: fixed;
    z-index: 50;
    top: 0;
    right: 0;
    width: min(320px, 88vw);
    height: 100vh;
    background: #fff;
    padding: 5.5rem 1.4rem 2rem;
    transform: translateX(100%);
    transition: transform 0.28s;
    box-shadow: 0 12px 40px var(--hh-shadow);
  }

  .hh-drawer.is-open {
    transform: none;
  }

  .hh-drawer__list {
    display: grid;
    gap: 8px;
  }

  .hh-drawer a {
    color: var(--hh-n800);
    font-weight: 700;
    padding: 10px 4px;
  }

  .hh-drawer .hh-btn {
    font-weight: 500;
    font-size: 16px;
  }

  .hh-scrim {
    position: fixed;
    inset: 0;
    z-index: 45;
    background: rgba(0, 21, 23, 0.45);
  }

  .hh-scrim.is-open {
    display: block;
  }

  .hh-hero__grid,
  .hh-about__grid,
  .hh-contact__grid,
  .hh-foot__grid,
  .hh-callout__inner,
  .hh-tiles {
    grid-template-columns: 1fr;
  }

  .hh-tiles {
    grid-template-columns: 1fr 1fr;
  }

  .hh-gallery {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: 200px 200px;
  }

  .hh-gallery__item:first-child {
    grid-row: auto;
    grid-column: span 2;
    min-height: 240px;
  }

  .hh-shot:first-child,
  .hh-shot:last-child {
    margin: 0;
  }

  .hh-shot img,
  .hh-about__photo img {
    height: 280px;
  }
}

@media (max-width: 640px) {
  .hh-tiles,
  .hh-hero__shots,
  .hh-gallery,
  .hh-stats {
    grid-template-columns: 1fr;
  }

  .hh-gallery {
    grid-template-rows: none;
  }

  .hh-gallery__item,
  .hh-gallery__item:first-child {
    grid-column: auto;
    min-height: 200px;
  }

  .hh-masthead__actions .hh-btn--fill {
    display: none;
  }

  .hh-hero,
  .hh-about,
  .hh-contact {
    padding: 56px 0;
  }

  .hh-panel {
    padding: 56px 0;
    border-radius: 16px;
  }
}
