:root {
  --color-background: #FFF4E6;
  --color-primary: #F2581B;     /* For "Ember" text */
  --color-secondary: #5F5F5F;   /* For tagline */
  --color-text: #2B2B2B;       /* General text color */
}

/* Base Reset */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

/* General Styling */
body {
  font-family: 'DM Sans', sans-serif;
  background: var(--color-background);
  color: var(--color-text);
  line-height: 1.7;
  padding: 2rem;
}

/* Layout Container */
.container {
  max-width: 620px;
  margin: auto;
}

/* Header */
header {
  text-align: center;
  margin-bottom: 3rem;
}

h1 {
  font-size: 2.75rem;
  color: var(--color-primary);
  font-weight: 700;
  letter-spacing: -0.5px;
}

.subtitle {
  font-size: 1.2rem;
  color: var(--color-secondary);
  margin-top: 0.6rem;
}

/* Section Styling */
section {
  margin-bottom: 3.5rem;
}

section h2 {
  font-size: 1.6rem;
  margin-bottom: 1rem;
  color: #3A3A3A;
}

section p {
  font-size: 1.05rem;
  margin-bottom: 1.25rem;
}

/* Lists */
ul {
  list-style: none;
  padding-left: 1rem;
}

li {
  margin: 0.6rem 0;
  font-size: 1.05rem;
}

/* CTA Form */
.cta {
  text-align: center;
}

.cta form {
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
  margin-top: 1rem;
  align-items: center;
}

input[type="email"] {
  padding: 0.75rem 1rem;
  border: 1px solid #E2DAD3;
  border-radius: 5px;
  background-color: white;
  color: #2B2B2B;
  font-size: 1rem;
  width: 100%;
  max-width: 300px;
}

button {
  background: #E15E3C;
  color: white;
  padding: 0.7rem 1.5rem;
  border: none;
  border-radius: 5px;
  cursor: pointer;
  font-weight: 500;
  font-size: 1rem;
  transition: background 0.2s ease;
}

button:hover {
  background: #D24A2C;
}

/* Footer */
footer {
  text-align: center;
  font-size: 0.9rem;
  color: #7A7A7A;
  margin-top: 4rem;
}

/* Optional: Reflections/Testimonial */
blockquote {
  font-style: italic;
  color: #555;
  padding-left: 1rem;
  border-left: 4px solid #E15E3C;
  margin: 2rem 0;
}
