:root {
  color-scheme: light;
  font-family: Arial, Helvetica, sans-serif;
  color: #102f45;
  background: #fff;
  -webkit-font-smoothing: antialiased;
}

* { box-sizing: border-box; }

body {
  margin: 0;
  min-width: 240px;
  border-top: 5px solid #102f45;
}

.landing {
  min-height: calc(100vh - 5px);
  min-height: calc(100svh - 5px);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 3rem 1.5rem 5rem;
  text-align: center;
}

.brand {
  width: min(100%, 640px);
  margin: 0;
  line-height: 0;
}

.brand img {
  display: block;
  width: 100%;
  height: auto;
}

.contact {
  margin-top: 0.75rem;
}

.contact::before {
  content: "";
  display: block;
  width: 2.25rem;
  height: 2px;
  margin: 0 auto 2rem;
  background: #427f8d;
}

.contact h2 {
  margin: 0 0 1rem;
  font-size: 0.875rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: #386875;
}

address {
  font-size: 1.125rem;
  font-style: normal;
  line-height: 1.85;
}

@media (max-width: 480px) {
  .landing { padding: 2rem 1rem 4rem; }
  .contact { margin-top: 1.5rem; }
}
