/* Critical CSS - Load First */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-weight: normal !important;
}

body {
  font-family: "Sedan SC", serif;
  background: #fdfdfd;
  color: #333;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

header {
  color: #000;
  padding: 10vh 20%;
  text-align: center;
  min-height: 50vh;
  display: flex;
  gap: 24px;
  align-items: center;
  justify-content: center;
  flex-direction: column;
}
#headshot {
  border-radius: 50%;
  width: 150px;
}
header h1 {
    font-size: 64px;
}
header h3 {
  font-size: 20px;
}
.socials {
  display: flex;
  gap: 12px;
  justify-content: center;
  align-items: center;
}
.socials a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #333;
  text-decoration: none;
  border: 1px solid #333;
  background: #fdfdfd;
  padding: 8px;
  gap: 4px;
  border-radius: 8px;
  cursor: pointer;

  transition: background 0.3s ease, color 0.3s ease;
}
.socials a:hover {
  background: #333;
  color: #fdfdfd;
}

.socials a span {
  white-space: nowrap;
}
section {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  padding: 0 20%;
  max-width: 1920px;
  margin: 100px auto 0 auto;
}
section > h2 {
  font-size: 32px;
}
section > img {
  width: 50%;
}
section.final {
  flex-direction: column;
  text-align: center;
  gap: 64px;
}
section.final > img {
  width: 25%;
  border-radius: 24px;
}
section.final > h1 {
  font-size: 48px;
}
section.final > h2 span {
  text-decoration: underline;
}
#cta {
  border: none;
  border-radius: 12px;
  background: #333;
  text-decoration: none;
  font-size: 32px;
  color: #fff;
  padding: 12px 24px;
  display: inline-block;
}

footer {
  margin-top: 30vh;
  text-align: center;
  padding: 20px;
}

.testimonials {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-start;
  gap: 24px;
}
.testimonials > div {
  flex-basis: calc(50% - 12px);
  border: 1px solid #ccc;
  border-radius: 5px;
  padding: 16px;
}
.testimonials > div p {
  font-size: 20px;
  margin-bottom: 16px;
}
.testimonials > div h4 {
  font-size: 24px;
  color: #aaa;
}
.testimonials > div h6 {
  font-size: 18px;
  color: #aaa;
}

@media only screen and (max-width: 1000px) {
  header {
    padding: 5vh 5%;
  }
  header h2 {
    font-size: 18px;
  }
  header h3 {
    font-size: 16px;
    line-height: 24px;
  }
  .socials {
    flex-wrap: wrap;
  }
  section {
    flex-direction: column;
    padding: 0 5%;
  }
  section > h2 {
    font-size: 24px;
  }
  section > img {
    width: 80%;
  }
  section.final > img {
    width: 80%;
  }

  .testimonials > div p {
    font-size: 18px;
    line-height: 24px;
  }
  .testimonials > div h4 {
    font-size: 18px;
  }
  .testimonials > div h6 {
    font-size: 16px;
  }
}
