*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html, body {
  height: 100%;
}

body {
  font-family: 'Mulish', -apple-system, BlinkMacSystemFont, sans-serif;
  font-weight: 400;
  background: #f2e9cc;
  color: #232b2b;
  -webkit-font-smoothing: antialiased;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
}

.page {
  max-width: 680px;
  width: 100%;
  padding: 3rem 4rem;
}

.logo-box {
  display: inline-block;
  margin-bottom: 4rem;
}
.logo-box img {
  height: 44px;
  width: auto;
  display: block;
}

.services { margin-bottom: 4.5rem; }
.services p {
  font-family: 'Mulish', -apple-system, BlinkMacSystemFont, sans-serif;
  font-size: 36px;
  font-weight: 900;
  line-height: 1.2;
  color: #232b2b;
  letter-spacing: -0.01em;
}

.about { margin-bottom: 4.5rem; }
.about p {
  font-family: 'Mulish', -apple-system, BlinkMacSystemFont, sans-serif;
  font-weight: 400;
  font-size: 17px;
  color: #a69e46;
  line-height: 1.75;
  max-width: 480px;
}
.about p + p { margin-top: 0.5rem; }
.about a {
  color: #00aaaa;
  font-weight: 500;
  text-decoration: underline;
  text-decoration-color: rgba(0, 170, 170, 0.35);
  text-underline-offset: 3px;
  transition: color 0.15s ease, text-decoration-color 0.15s ease;
}
.about a:hover { color: #ebb549; text-decoration-color: #ebb549; }

.contact-head {
  font-weight: 400;
  font-size: 17px;
  color: #a69e46;
  margin-bottom: 0.35rem;
}
.contact-email {
  font-size: 22px;
  font-weight: 700;
  font-family: 'Mulish', -apple-system, BlinkMacSystemFont, sans-serif;
  color: #00aaaa;
  letter-spacing: -0.01em;
  text-decoration: underline;
  text-decoration-color: rgba(0, 170, 170, 0.35);
  text-underline-offset: 4px;
  transition: color 0.15s ease, text-decoration-color 0.15s ease;
}
.contact-email:hover { color: #ebb549; text-decoration-color: #ebb549; }

footer { margin-top: 5rem; }
footer small {
  font-weight: 300;
  font-size: 12px;
  color: #a69e46;
}
footer em { font-style: italic; }

@media (max-width: 600px) {
  .page { padding: 2rem 1.5rem 4rem; }
  .logo-box img { height: 32px; }
  .services p { font-size: 26px; }
  .contact-email { font-size: 18px; }
}
