/* Project custom styles */

@font-face {
  font-family: "Mona Sans";
  src:
    url("../fonts/Mona-Sans.woff2") format("woff2 supports variations"),
    url("../fonts/Mona-Sans.woff2") format("woff2-variations"),
    url("../fonts/Mona-Sans.woff2") format("woff2");
  font-weight: 200 900;
  font-stretch: 75% 125%;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Switzer Variable";
  src:
    url("../fonts/Switzer-Variable.woff2") format("woff2"),
    url("../fonts/Switzer-Variable.woff") format("woff");
  font-weight: 100 900;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Switzer Variable";
  src:
    url("../fonts/Switzer-VariableItalic.woff2") format("woff2"),
    url("../fonts/Switzer-VariableItalic.woff") format("woff");
  font-weight: 100 900;
  font-style: italic;
  font-display: swap;
}

:root {
  --container-width: 1280px;
  --container-padding: clamp(24px, 5vw, 40px);
  --grid-gutter: 40px;
  --bs-gutter-x: var(--grid-gutter);
  --bs-body-font-family: "Switzer Variable", sans-serif;
  --header-padding-y: 32px;
  --hero-padding-top: 160px;
  --hero-padding-bottom: 150px;
  --section-padding-y: 150px;
  --footer-padding-bottom: 60px;
  --services-gutter-y: 80px;
}

body {
  font-family: var(--bs-body-font-family);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

.container {
  max-width: var(--container-width);
  padding-inline: var(--container-padding);
}

.site-header {
  padding-block: var(--header-padding-y);
}

.site-header__inner {
  align-items: center;
  display: flex;
  justify-content: space-between;
}

.site-header__logo {
  display: block;
  line-height: 0;
}

.site-header__logo img {
  display: block;
  height: 34px;
  width: auto;
}

.btn-contact {
  background-color: #000000;
  border-radius: 999px;
  color: #ffffff;
  display: inline-block;
  font-family: "Mona Sans", sans-serif;
  font-size: 11px;
  font-stretch: 125%;
  font-weight: 500;
  letter-spacing: 1px;
  line-height: 16px;
  padding: 14px 24px;
  text-decoration: none;
  text-transform: uppercase;
}

.btn-contact:hover {
  background-color: #333333;
  color: #ffffff;
}

.section-coming-soon .btn-contact {
  margin-top: 32px;
}

.section-hero {
  padding-top: var(--hero-padding-top);
  padding-bottom: var(--hero-padding-bottom);
}

.section-hero .row {
  --bs-gutter-y: 30px;
}

.section-hero__title {
  color: #000000;
  font-family: "Mona Sans", sans-serif;
  font-size: 59px;
  font-stretch: 125%;
  font-weight: 500;
  letter-spacing: -2px;
  line-height: 64px;
}

.section-hero p.lead {
  color: #000000;
  font-family: "Switzer Variable", sans-serif;
  font-size: 21px;
  font-weight: 300;
  line-height: 33px;
}

.section-services {
  background-color: #131313;
  border-radius: 30px;
  padding-top: var(--section-padding-y);
  padding-bottom: var(--section-padding-y);
}

.section-services .row {
  --bs-gutter-y: var(--services-gutter-y);
}

.section-services .service-card__icon {
  color: #fff;
}

.section-services .service-card__title {
  color: #ffffff;
}

.service-card__icon {
  display: block;
  height: 36px;
  margin-bottom: 25px;
  stroke-width: 1px;
  width: 36px;
}

.service-card__title {
  font-family: "Mona Sans", sans-serif;
  font-size: 21px;
  font-stretch: 125%;
  font-weight: 600;
  line-height: 30px;
  margin-bottom: 16px;
}

.service-card__text {
  color: #676767;
  font-family: "Switzer Variable", sans-serif;
  font-size: 18px;
  font-weight: 300;
  line-height: 28px;
}

.section-coming-soon {
  background-color: #ffffff;
  border-radius: 50px;
  padding-top: var(--section-padding-y);
  padding-bottom: var(--section-padding-y);
}

.section-coming-soon .row {
  --bs-gutter-y: 30px;
}

.section-coming-soon__title {
  color: #000000;
  font-family: "Mona Sans", sans-serif;
  font-size: 39px;
  font-stretch: 125%;
  font-weight: 500;
  letter-spacing: -1px;
  line-height: 64px;
}

.section-coming-soon p.lead {
  color: #000000;
  font-family: "Switzer Variable", sans-serif;
  font-size: 21px;
  font-weight: 300;
  line-height: 33px;
}

.section-footer {
  padding-top: 0;
  padding-bottom: var(--footer-padding-bottom);
}

.section-footer__text {
  color: #676767;
  font-family: "Switzer Variable", sans-serif;
  font-size: 18px;
  font-weight: 300;
  line-height: 28px;
  margin-bottom: 0;
  text-align: left;
}

@media (max-width: 991.98px) {
  :root {
    --header-padding-y: 24px;
    --hero-padding-top: 100px;
    --hero-padding-bottom: 100px;
    --section-padding-y: 100px;
    --footer-padding-bottom: 40px;
    --services-gutter-y: 56px;
  }

  .section-hero__title {
    font-size: 52px;
    letter-spacing: -1.5px;
    line-height: 56px;
  }

  .section-coming-soon__title {
    font-size: 34px;
    line-height: 48px;
  }
}

@media (max-width: 575.98px) {
  :root {
    --header-padding-y: 20px;
    --hero-padding-top: 64px;
    --hero-padding-bottom: 64px;
    --section-padding-y: 64px;
    --footer-padding-bottom: 32px;
    --services-gutter-y: 40px;
  }

  .section-hero__title {
    font-size: 42px;
    letter-spacing: -1px;
    line-height: 46px;
  }

  .section-coming-soon__title {
    font-size: 30px;
    line-height: 38px;
  }

  .section-services,
  .section-coming-soon {
    border-radius: 32px;
  }
}
