:root {
  --img-hero: url("https://images.pexels.com/photos/25361560/pexels-photo-25361560.jpeg?auto=compress&cs=tinysrgb&w=1600");
  --img-1: url("https://images.pexels.com/photos/169190/pexels-photo-169190.jpeg?auto=compress&cs=tinysrgb&w=1200");
  --img-2: url("https://images.pexels.com/photos/6147161/pexels-photo-6147161.jpeg?auto=compress&cs=tinysrgb&w=1200");
  --img-3: url("https://images.pexels.com/photos/3184436/pexels-photo-3184436.jpeg?auto=compress&cs=tinysrgb&w=1200");
}


* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  background: #f7f7f7;
  color: #111;
  line-height: 1.6;
}

.container {
  max-width: 1000px;
  margin: 0 auto;
  padding: 2rem 1.25rem;
}

.hero {
  background: white;
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0,0,0,0.06);
}

.hero-media {
  height: 260px;
  background-image: var(--img-hero);
  background-size: cover;
  background-position: center;
}

.hero-content {
  padding: 2rem;
  text-align: center;
}

h1 {
  font-size: 3rem;
}

.subtitle {
  display: block;
  font-size: 0.9rem;
  color: #6b7280;
  margin-top: 0.25rem;
}

.tagline {
  margin: 1rem auto;
  max-width: 750px;
  color: #374151;
}

.cta-button {
  display: inline-block;
  padding: 0.75rem 1.25rem;
  background: #111827;
  color: white;
  text-decoration: none;
  border-radius: 10px;
  font-weight: 600;
  margin-top: 1rem;
}

.microcopy {
  margin-top: 0.75rem;
  font-size: 0.9rem;
  color: #6b7280;
}

.section {
  margin-top: 4rem;
  text-align: left;

.section h2,
.section .subhead {
  text-align: center;
}

}

.subhead {
  color: #4b5563;
  max-width: 700px;
  margin: 0.75rem auto;
}

.card-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
  margin-top: 2rem;
}

.card {
  background: white;
  border-radius: 16px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.06);
  overflow: hidden;
}

.card-media {
  height: 150px;
  background-size: cover;
  background-position: center;
}

.media-1 { background-image: var(--img-1); }
.media-2 { background-image: var(--img-2); }
.media-3 { background-image: var(--img-3); }

.card h3 {
  margin: 1rem;
}

.card p {
  margin: 0 1rem 1.25rem;
  color: #4b5563;
}

.footer {
  text-align: center;
  margin-top: 4rem;
  color: #6b7280;
  font-size: 0.9rem;
}
/* Improve spacing for curation section */

.section p {
  margin-top: 1.25rem;
  margin-bottom: 1.25rem;
}

.feature-list {
  margin-top: 2rem;
  margin-bottom: 2rem;
}

.feature-list li {
  margin-bottom: 0.75rem;
}

.closing-line {
  margin-top: 2rem;
}

.tagline {
  margin-bottom: 1.25rem;
}

.tagline.secondary {
  margin-top: 0;
  color: #4b5563;
}

.cta-form {
  margin-top: 3rem;
}

