@font-face {
  font-family: "Outfit";
  src: url("assets/outfit-latin-ext.woff2") format("woff2");
  font-style: normal;
  font-weight: 100 700;
  font-display: swap;
}

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

@font-face {
  font-family: "Font Awesome 5 Free";
  src: url("assets/fa-solid-900.woff2") format("woff2");
  font-style: normal;
  font-weight: 900;
  font-display: block;
}

:root {
  font-family: "Outfit", Arial, sans-serif;
  color: #171717;
  background: #fff;
  font-synthesis: none;
}

* {
  box-sizing: border-box;
}

body {
  min-width: 320px;
  min-height: 100vh;
  margin: 0;
}

.page {
  display: flex;
  min-height: 100vh;
  flex-direction: column;
  justify-content: space-between;
  padding: clamp(2rem, 6vh, 5rem) clamp(1.25rem, 5vw, 4rem) 2rem;
}

.intro {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.logo {
  width: clamp(210px, 32vw, 380px);
  height: auto;
}

.points {
  display: grid;
  width: min(100%, 960px);
  margin: clamp(2.25rem, 6vh, 4.5rem) auto 0;
  gap: 1rem;
}

.points p {
  display: flex;
  position: relative;
  margin: 0;
  flex-direction: column;
  align-items: center;
  gap: 1.1rem;
  color: #555;
  font-size: clamp(0.95rem, 1.35vw, 1.1rem);
  line-height: 1.5;
}

.fa {
  color: #ed1c24;
  font-family: "Font Awesome 5 Free";
  font-size: 2.25rem;
  font-style: normal;
  font-weight: 900;
  line-height: 1;
}

.fa-bullseye::before {
  content: "\f140";
}
.fa-graduation-cap::before {
  content: "\f19d";
}
.fa-cloud-sun::before {
  content: "\f6c4";
}

h1 {
  margin: clamp(2.5rem, 7vh, 5rem) 0 3rem;
  font-size: clamp(2.2rem, 5vw, 4.8rem);
  font-weight: 500;
  letter-spacing: -0.04em;
  line-height: 1;
}

h1 span {
  color: #ed1c24;
}

.contact {
  display: flex;
  width: min(100%, 1100px);
  margin: 0 auto;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 0.8rem 1.6rem;
  border-top: 1px solid #e5e5e5;
  padding-top: 1.5rem;
  font-size: 0.85rem;
}

.contact a {
  color: #333;
  text-decoration: none;
  transition: color 0.15s ease;
}

.contact a:hover,
.contact a:focus-visible {
  color: #ed1c24;
}

.contact nav {
  display: flex;
  gap: 1rem;
}

@media (min-width: 760px) {
  .points {
    grid-template-columns: repeat(3, 1fr);
  }
  .points p {
    padding: 0 1.5rem;
  }
  .points p + p {
    border-left: 1px solid #e5e5e5;
  }
}

@media (max-height: 760px) and (min-width: 760px) {
  .page {
    padding-top: 1.5rem;
  }
  .logo {
    width: 190px;
  }
  .points {
    margin-top: 1.5rem;
  }
  h1 {
    margin: 2rem 0;
  }
}
