/* Global Reset */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

body {
  font-family: 'DM Sans', sans-serif;
  background: #f5f3ee;
  color: #1a1a18;
  line-height: 1.6;
  padding: 0;
}

header {
  background: #1a1a18;
  color: #f5f3ee;
  padding: 2rem 3rem;
}

header h1 {
  font-family: 'Playfair Display', serif;
  font-size: 2.4rem;
  margin-bottom: 0.3rem;
}

header .subtitle {
  font-size: 0.85rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #a09e96;
}

nav {
  background: #b5965a;
  padding: 0.75rem 3rem;
}

nav a {
  color: #fff;
  margin-right: 1.5rem;
  text-decoration: none;
  font-weight: 500;
}

.container {
  max-width: 900px;
  margin: 2rem auto;
  background: #fff;
  padding: 2rem 3rem;
  border: 1px solid #dddbd4;
}

.section-label {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #b5965a;
  margin-top: 2rem;
  margin-bottom: 0.75rem;
}

.tagline {
  font-family: 'Playfair Display', serif;
  font-size: 1.25rem;
  border-left: 3px solid #b5965a;
  padding-left: 1rem;
  margin-bottom: 2rem;
}

.results-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  background: #1a1a18;
  margin: 2rem 0;
}

.result-item {
  padding: 1.5rem;
  text-align: center;
}

.result-number {
  font-family: 'Playfair Display', serif;
  font-size: 1.8rem;
  color: #b5965a;
}

.result-label {
  font-size: 0.75rem;
  color: #a09e96;
}

ul.clean {
  list-style: none;
  padding-left: 1rem;
}

ul.clean li {
  position: relative;
  margin-bottom: 0.75rem;
}

ul.clean li::before {
  content: "—";
  position: absolute;
  left: -1rem;
  color: #b5965a;
}

footer {
  background: #f5f3ee;
  padding: 1.5rem 3rem;
  text-align: center;
  font-size: 0.85rem;
  color: #6e6e68;
  border-top: 1px solid #e8e6e0;
}

.newsletter-issue {
  margin-bottom: 3rem;
}

.newsletter-issue h2 {
  font-family: 'Playfair Display', serif;
  font-size: 1.6rem;
  margin-bottom: 0.5rem;
}

.newsletter-issue h3 {
  margin-top: 1.5rem;
  font-size: 1.1rem;
  color: #1a1a18;
}

/* ============================
   MOBILE RESPONSIVE ADAPTATION
   ============================ */
@media (max-width: 768px) {

  header {
    padding: 1.5rem 1.25rem;
    text-align: center;
  }

  header h1 {
    font-size: 1.8rem;
  }

  header .subtitle {
    font-size: 0.75rem;
    line-height: 1.4;
  }

  nav {
    padding: 0.75rem 1rem;
    text-align: center;
  }

  nav a {
    display: inline-block;
    margin: 0.5rem 0.75rem;
    font-size: 0.9rem;
  }

  .container {
    margin: 1.5rem 1rem;
    padding: 1.5rem 1.25rem;
  }

  .tagline {
    font-size: 1.1rem;
    padding-left: 0.75rem;
  }

  ul.clean {
    padding-left: 0.5rem;
  }

  ul.clean li {
    margin-bottom: 0.6rem;
  }

  /* Newsletter issue list spacing */
  .newsletter-issue h3 {
    font-size: 1rem;
  }

  .newsletter-issue p {
    font-size: 0.95rem;
  }

  /* Fix grid layout on small screens */
  .results-row {
    grid-template-columns: 1fr;
  }

  footer {
    padding: 1.25rem 1rem;
    font-size: 0.8rem;
    line-height: 1.4;
  }
}

/* Extra small screens (phones under 400px) */
@media (max-width: 400px) {
  header h1 {
    font-size: 1.6rem;
  }

  .tagline {
    font-size: 1rem;
  }

  nav a {
    font-size: 0.85rem;
  }
}

/* Paragraph spacing for readability */
p {
  margin-bottom: 1.25rem;
}

@media (max-width: 768px) {
  p {
    margin-bottom: 1rem;
  }
}


