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

html {
  background-color: #EDE8DF;
}

body {
  background-color: #EDE8DF;
  color: #1A1A18;
  font-family: 'Montserrat', sans-serif;
  font-weight: 300;
  letter-spacing: 0.15em;
  padding: 0 24px;
  animation: fadeIn 0.8s ease;
  animation-fill-mode: both;
}

@keyframes fadeIn {
  from { opacity: 0; }
  to   { opacity: 1; }
}

main {
  max-width: 600px;
  margin: 0 auto;
  padding-top: 48px;
}

/* ── Section 1: Wordmark ── */

.section-wordmark {
  text-align: center;
  margin-bottom: 60px;
}

.wordmark {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 400;
  font-size: 48px;
  letter-spacing: 0.2em;
  color: #1A1A18;
  text-transform: uppercase;
  line-height: 1;
}

.wordmark-sub {
  font-family: 'Montserrat', sans-serif;
  font-weight: 300;
  font-size: 11px;
  letter-spacing: 0.3em;
  color: #B8B0A4;
  text-transform: lowercase;
  margin-top: 12px;
}

/* ── Section 2: Tagline ── */

.section-tagline {
  text-align: center;
  margin-bottom: 40px;
}

.tagline {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 300;
  font-style: italic;
  font-size: 22px;
  color: #1A1A18;
  line-height: 1.3;
}

/* ── Section 3: Hero image ── */

.section-hero {
  text-align: center;
  margin-bottom: 50px;
}

.hero-image {
  width: 100%;
  max-width: 520px;
  height: auto;
  display: block;
  margin: 0 auto;
}

/* ── Section 4: Body copy ── */

.section-copy {
  text-align: center;
  margin-bottom: 48px;
}

.copy-text {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 400;
  font-size: 16px;
  line-height: 1.8;
  color: #1A1A18;
  max-width: 480px;
  margin-left: auto;
  margin-right: auto;
}

.copy-text--coming {
  margin-top: 32px;
}

/* ── Section 5: Email capture ── */

.section-email {
  text-align: center;
  margin-bottom: 64px;
}

.email-label {
  font-family: 'Montserrat', sans-serif;
  font-weight: 300;
  font-size: 10px;
  letter-spacing: 0.25em;
  color: #B8B0A4;
  margin-bottom: 16px;
}

/* ── Section 6: Coordinates ── */

.section-coordinates {
  text-align: center;
  padding-top: 40px;
  padding-bottom: 60px;
}

.coordinates {
  font-family: 'Montserrat', sans-serif;
  font-weight: 300;
  font-size: 10px;
  letter-spacing: 0.25em;
  color: #B8B0A4;
}

.substack-link {
  margin-top: 24px;
  color: #B8B0A4;
  font-family: 'Montserrat', sans-serif;
  font-weight: 300;
  font-size: 10px;
  letter-spacing: 0.25em;
}

.substack-link a {
  color: #B8B0A4;
  text-decoration: none;
}

.substack-link a:hover {
  text-decoration: underline;
  text-underline-offset: 3px;
}

/* ── Desktop ── */

@media (min-width: 768px) {
  body {
    padding: 0 40px;
  }

  main {
    padding-top: 140px;
  }

  .section-wordmark {
    margin-bottom: 80px;
  }

  .wordmark {
    font-size: 72px;
  }

  .section-tagline {
    margin-bottom: 60px;
  }

  .tagline {
    font-size: 28px;
  }

  .section-hero {
    margin-bottom: 70px;
  }

  .section-copy {
    margin-bottom: 64px;
  }

  .copy-text {
    font-size: 18px;
  }

  .section-email {
    margin-bottom: 80px;
  }
}
