/* Reset & Box-Sizing */
*, *::before, *::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

/* Base Typography & Layout */
html {
  font-size: 16px;
}

body {
  font-family: 'Inter', sans-serif;
  color: #111;
  background-color: #fff;
}

.container {
  max-width: 800px;
  margin: 0 auto;
  padding: 0 1rem;
}

/* Header */
.site-header {
  padding-block: 2rem;
}

.logo {
  display: block;
  height: 40px;
}

/* Hero Section */
.hero {
  border-top: 1px solid #333;
  border-bottom: 1px solid #333;
  padding-block: 3rem;
}

.hero h1 {
  font-size: 2rem;
  line-height: 1.4;
  font-weight: 300;
  text-align: left;
}

.hero h1 strong {
  font-weight: 600;
}

.hero h1 em {
  font-style: italic;
  font-weight: 600;
}

/* Contact CTA */
.contact-cta {
  margin-top: 2rem;
  padding-bottom: 2rem;
}

.contact-cta p {
  font-size: 1rem;
  font-weight: 300;
  line-height: 1.6;
}

.contact-cta a {
  font-weight: 500;
  font-style: italic;
  text-decoration: underline;
}

/* Responsive */
@media (min-width: 600px) {
  .hero h1 {
    font-size: 2.5rem;
  }
  .contact-cta p {
    font-size: 1.125rem;
  }
}