* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  --bg-dark: #0f0f10;
  --bg-mid: #1c1c1f;
  --text: #f2f2f2;
  --muted: #d9d9d9;
  --line: rgba(255, 255, 255, 0.75);
}

body {
  font-family: "Source Code Pro", monospace;
  color: var(--text);
  min-height: 100vh;
  background:
    linear-gradient(rgba(10, 10, 10, 0.62), rgba(10, 10, 10, 0.62)),
    url("background.png"),
    linear-gradient(180deg, #2a2a2d 0%, #101012 100%);
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
}

.page {
  max-width: 760px;
  padding: 100px 75px 100px;
}

.hero {
  margin-bottom: 34px;
}

.hero h1 {
  font-size: clamp(2rem, 4vw, 2.8rem);
  font-style: italic;
  font-weight: 800;
  letter-spacing: 1px;
  margin-bottom: 10px;
}

.tagline {
  font-size: 1rem;
  font-weight: 600;
}

.section {
  margin-bottom: 28px;
}

.section h2 {
  font-size: 2rem;
  font-weight: 800;
  text-decoration: underline;
  margin-bottom: 18px;
}

.intro,
.cta,
.review,
.contact-copy,
.availability,
.contact-line {
  font-size: 1rem;
  font-weight: 600;
  line-height: 1.65;
}

.services-list {
  margin: 14px 0 22px 18px;
  padding-left: 8px;
}

.services-list li {
  margin-bottom: 8px;
  font-size: 1rem;
  font-weight: 600;
  line-height: 1.5;
}

.cta {
  margin-top: 18px;
  max-width: 650px;
}

.review {
  margin-bottom: 22px;
  max-width: 720px;
}

.rating {
  font-weight: 800;
  margin-bottom: 8px;
}

.reviewer {
  margin-top: 8px;
}

.contact-line {
  font-size: 1.45rem;
  margin-bottom: 12px;
}

.contact-line a {
  color: var(--text);
  text-decoration: underline;
  font-weight: 800;
}

.contact-copy {
  max-width: 700px;
  margin-top: 14px;
  margin-bottom: 16px;
}

.availability {
  font-weight: 700;
}

hr {
  border: none;
  border-top: 2px solid var(--line);
  margin-top: 18px;
  width: 100%;
  max-width: 700px;
}

@media (max-width: 700px) {
  .page {
    padding: 16px 10px 24px;
  }

  .section h2 {
    font-size: 1.6rem;
  }

  .contact-line {
    font-size: 1.1rem;
  }

  .intro,
  .cta,
  .review,
  .contact-copy,
  .availability,
  .contact-line,
  .services-list li,
  .tagline {
    font-size: 0.95rem;
  }
}