/* Reset + Base Styles */
* {
  box-sizing: border-box;
}

/* Navigation */
.site-nav {
  width: 100%;
  background-color: #fff;
  border-bottom: 1px solid #D6D6D6;
  padding: 12px 20px;
  font-family: 'Inter', sans-serif;
}

.site-nav ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  justify-content: center;
  gap: 24px;
  flex-wrap: wrap;
}

.site-nav li a {
  text-decoration: none;
  color: #A7B8A2;
  font-weight: 600;
  font-size: 1rem;
  padding: 8px 12px;
  transition: color 0.3s ease;
}

.site-nav li a:hover,
.site-nav li a:focus {
  color: #F59E6D; /* Dreamsicle Orange */
}

/* Mobile tweaks */
@media (max-width: 600px) {
  .site-nav ul {
    flex-direction: column;
    align-items: center;
    gap: 12px;
  }

  .site-nav li a {
    font-size: 1.1rem;
  }
}

body {
  margin: 0;
  font-family: 'Libre Baskerville', serif;
  background-color: #fdfaf6;
  color: #333;
  display: grid;
  place-items: center;
  min-height: 100vh;
  padding: 40px 10px;
}

/* Container for center layout */
.container {
  max-width: 800px;
  width: 100%;
  text-align: center;
}

/* Wordmark Logo */
.logo {
  max-width: 600px;
  width: 100%;
  margin: 0 auto 40px auto;
  display: block;
}

/* About Section */
.about {
  font-size: 1.6rem;
  line-height: 1.8;
}

@media (max-width: 600px) {
  .about {
    font-size: 1rem;
  }
}

/* CTA Section */
.cta {
  background-color: #D6D6D6; /* or #fdfaf6 if you want to stay ultra soft */
  padding: 40px 20px;
  margin-top: 40px;
  border-top: 1px solid #D6D6D6; /* Ash Mist divider */
  text-align: center;
  font-family: 'Inter', sans-serif;
  font-weight: 600; /* This is Inter SemiBold */
}

.cta-text {
  font-size: 1.6rem;
  color: #2E2E2E; /* Charcoal Gray */
  margin-bottom: 20px;
}

.cta-form {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
}

.cta-form input[type="email"] {
  padding: 10px 16px;
  font-size: 1rem;
  border: 1px solid #D6D6D6;
  border-radius: 6px;
  width: 100%;
  max-width: 320px;
  font-family: 'Inter', sans-serif;
}

.cta-form button {
  background-color: #F59E6D; /* Dreamsicle Orange */
  color: #FDFAF6;
  font-family: 'Inter', sans-serif;
  font-weight: 600; /* This is Inter SemiBold */
  font-size: 1rem;
  padding: 10px 24px;
  border: none;
  border-radius: 6px;
  cursor: not-allowed; /* until provider is wired in */
  opacity: 0.6;
}

.cta-form button:enabled {
  cursor: pointer;
  opacity: 1;
}

/* Responsive tweak */
@media (max-width: 600px) {
  .cta-text {
    font-size: 1rem;
  }

  .cta-form {
    width: 100%;
  }

  .cta-form input,
  .cta-form button {
    width: 100%;
    max-width: 100%;
  }
}
