:root {
  --background: #f6f6f4;
  --text: #111111;
  --font: "Montserrat", Arial, Helvetica, sans-serif;

  --font-size: clamp(12px, 1.125vw, 16.5px);
  --line-height: 1.18;
  --font-weight: 400;
  --letter-spacing: -0.02em;
}

* {
  box-sizing: border-box;
}

html {
  min-height: 100%;
  background: var(--background);
}

body {
  margin: 0;
  min-height: 100vh;
  background: var(--background);
  color: var(--text);
  font-family: var(--font);
  font-weight: var(--font-weight);
  -webkit-font-smoothing: antialiased;
  text-rendering: geometricPrecision;
}

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

a:hover {
  opacity: 0.55;
}

.page {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 40px 22px;
}

.content {
  width: 100%;
  max-width: 1180px;
  text-align: center;
  font-size: var(--font-size);
  line-height: var(--line-height);
  letter-spacing: var(--letter-spacing);
}

.brand,
.statement,
.locations,
.contact {
  margin: 0;
  font: inherit;
}

.statement {
  margin-top: 1.18em;
  font-weight: inherit;
}

.locations {
  margin-top: 4.72em;
}

.contact {
  margin-top: 1.18em;
  font-style: normal;
}

@media (max-width: 767px) {
  :root {
    --font-size: clamp(13.5px, 3.6vw, 18px);
    --line-height: 1.18;
    --letter-spacing: -0.02em;
  }

  .page {
    padding: 32px 18px;
  }

  .content {
    max-width: 100%;
  }
}

@media (max-width: 380px) {
  :root {
    --font-size: 13.5px;
  }
}