:root {
  --blue: #09537D;
  --green: #009741;
  --text: #111827;
  --muted: #4b5563;
  --border: #e5e7eb;
  --bg: #ffffff;
}

* {
  box-sizing: border-box;
}

html, body {
  height: 100%;
}

body {
  margin: 0;
  background: var(--bg);
  color: var(--text);
  font-family: Inter, Calibri, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
}

.wrap {
  min-height: 100svh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 18px 18px;
}

.logo {
  width: min(600px, 92vw);
  height: auto;
  display: block;
  margin: 0 0 3rem 0;
}

.content {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
}

h1 {
  margin: 0;
  font-family: "DINOT-Bold", "Arial Narrow", Arial, sans-serif;
  font-weight: normal;
  letter-spacing: .03em;
  line-height: 1.4;
  text-transform: uppercase;
  color: var(--green);
  font-size: clamp(35px, 3vw, 30px);
}

.text {
  margin: 0;
  color: var(--muted);
  font-size: 16px;
  line-height: 1.5;
}

.text i {
  margin-right: 8px;
  color: #9ca3af;
}

a.contact {
  color: var(--green);
  text-decoration: none;
}

a.contact:hover {
  border-bottom-color: rgba(9, 83, 125, .55);
}

.social {
  display: flex;
  gap: 10px;
  justify-content: center;
  margin-top: 6px;
}

.social-btn {
  width: 44px;
  height: 44px;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: var(--green);
  color: #fff;
  text-decoration: none;
  transition: .3s;
}

.social-btn:hover {
  filter: brightness(.98);
  transform: translateY(-1px);
}

.social-btn:active {
  transform: translateY(0);
}

.social-btn i {
  font-size: 18px;
  line-height: 1;
}