@font-face {
  font-family: "Montserrat";
  src: url("assets/montserrat.woff2") format("woff2");
  font-style: normal;
  font-weight: 100 900;
  font-display: swap;
}

@font-face {
  font-family: "Roboto";
  src: url("assets/roboto-300.woff2") format("woff2");
  font-style: normal;
  font-weight: 300;
  font-display: swap;
}

@font-face {
  font-family: "Roboto";
  src: url("assets/roboto-400.woff2") format("woff2");
  font-style: normal;
  font-weight: 400;
  font-display: swap;
}

@font-face {
  font-family: "Roboto";
  src: url("assets/roboto-700.woff2") format("woff2");
  font-style: normal;
  font-weight: 700;
  font-display: swap;
}

:root {
  --header-height: 158px;
  --muted: #646464;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: #939393;
  background: #101628;
  font-family: "Roboto", Arial, Helvetica, sans-serif;
  font-size: 16px;
  font-weight: 300;
  -webkit-font-smoothing: antialiased;
}

button,
input {
  font: inherit;
}

a {
  color: inherit;
  text-decoration: none;
}

.page-shell {
  min-height: 100svh;
  display: flex;
  flex-direction: column;
  background-color: #101628;
  background-image: url("assets/city-buildings.jpg");
  background-position: 50% 0;
  background-repeat: no-repeat;
  background-size: cover;
  background-attachment: fixed;
}

.site-header {
  position: fixed;
  z-index: 20;
  inset: 0 0 auto;
  min-height: var(--header-height);
  padding: 25px 40px 20px;
  transition: background-color 180ms ease;
}

.site-header.is-scrolled,
.site-header.is-menu-open {
  background: #3a3c43;
}

.logo-link {
  display: block;
  width: min(315px, 42vw);
}

.site-logo {
  display: block;
  width: 100%;
  height: auto;
}

.menu-toggle,
.mobile-navigation {
  display: none;
}

.hero {
  flex: 1 0 auto;
  display: flex;
  justify-content: center;
  padding: calc(var(--header-height) + 19px) 25px 0;
}

.hero-inner {
  width: min(960px, 100%);
  text-align: center;
}

h1,
h2,
p {
  margin: 0;
}

h1,
h2 {
  font-family: "Montserrat", Arial, Helvetica, sans-serif;
}

h1 {
  color: #fff;
  font-size: 40px;
  font-weight: 700;
  line-height: 1.18;
}

.intro {
  width: min(459px, 100%);
  margin: 26px auto 0;
  color: #d6d6d6;
  font-size: 16px;
  line-height: 1.35;
}

.contact-card {
  width: min(355px, 100%);
  margin: 28px auto 0;
  padding: 25px 15px;
  color: #000;
  background: #fff;
  text-align: left;
}

.contact-card h2 {
  margin: 6px 0 22px;
  font-size: 24px;
  font-weight: 700;
  line-height: 1.2;
  text-align: center;
}

.field {
  margin-top: 10px;
}

.field label {
  display: block;
  margin-bottom: 3px;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.25;
}

.field input:not([type="hidden"]) {
  width: 100%;
  height: 40px;
  padding: 0 10px;
  border: 1px solid var(--muted);
  border-radius: 0;
  color: #222;
  background: transparent;
  outline: none;
}

.field input:not([type="hidden"]):focus {
  border-color: #000;
  box-shadow: 0 0 0 1px #000;
}

.contact-card button {
  display: block;
  width: min(250px, 100%);
  min-height: 42px;
  margin: 20px auto 5px;
  padding: 10px 14px;
  border: 0;
  border-radius: 999px;
  color: #fff;
  background: #000;
  cursor: pointer;
  font-size: 15px;
  font-weight: 400;
  text-align: center;
}

.contact-card button:hover,
.contact-card button:focus-visible {
  background: #262626;
}

.contact-card button:disabled {
  cursor: wait;
  opacity: 0.7;
}

.botcheck {
  position: absolute;
  left: -10000px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

.form-success,
.form-error {
  color: var(--muted);
  font-size: 14px;
  line-height: 1.4;
  text-align: center;
}

.site-footer {
  padding: 70px 30px;
  color: #fff;
  text-align: center;
}

.site-footer address {
  font-family: Arial, Helvetica, sans-serif;
  font-size: 14px;
  font-style: normal;
  font-weight: 700;
  line-height: 1.4;
}

@media (max-width: 767px) {
  :root {
    --header-height: 75px;
  }

  .page-shell {
    background-attachment: scroll;
    background-position: 50% 0;
  }

  .site-header {
    min-height: var(--header-height);
    padding: 0 15px;
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .logo-link {
    width: 116px;
  }

  .menu-toggle {
    position: absolute;
    left: 10px;
    top: 17px;
    display: flex;
    width: 40px;
    height: 40px;
    padding: 12px 9px;
    border: 0;
    background: transparent;
    flex-direction: column;
    justify-content: space-between;
    cursor: pointer;
  }

  .menu-toggle span {
    display: block;
    width: 100%;
    border-top: 2px solid #fff;
  }

  .mobile-navigation {
    position: fixed;
    z-index: 19;
    top: var(--header-height);
    left: 0;
    bottom: 0;
    display: flex;
    width: 80vw;
    max-width: 340px;
    padding: 58px 20px 40px;
    background: #fff;
    color: #646464;
    flex-direction: column;
    gap: 0;
    text-align: left;
    transform: translateX(-105%);
    transition: transform 180ms ease;
  }

  .mobile-navigation.is-open {
    transform: translateX(0);
  }

  .mobile-navigation a {
    padding: 9px 0;
    font-size: 16px;
    font-weight: 400;
  }

  .mobile-navigation a[aria-current="page"] {
    color: #333;
  }

  .hero {
    padding: calc(var(--header-height) + 70px) 15px 70px;
  }

  h1 {
    font-size: 35px;
    line-height: 1.16;
  }

  .intro {
    margin-top: 24px;
    font-size: 15px;
  }

  .contact-card {
    margin-top: 51px;
    padding: 20px 15px;
  }

  .contact-card h2 {
    font-size: 25px;
  }

  .site-footer {
    padding: 70px 20px;
  }

  .site-footer address {
    font-size: 11px;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  .site-header,
  .mobile-navigation {
    transition: none;
  }
}
