/* MyHomeschoolHelp — shared styles */
:root {
  --sage: #7c9473;
  --sage-dark: #5f7556;
  --cream: #faf6ef;
  --cream-dark: #f1e9d8;
  --text: #3a3a36;
  --text-light: #6b6b66;
  --white: #ffffff;
  --accent: #d98e73;
  --radius: 14px;
  --shadow: 0 6px 20px rgba(0,0,0,0.08);
  --maxw: 1100px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: 'Helvetica Neue', Arial, sans-serif;
  color: var(--text);
  background: var(--cream);
  line-height: 1.6;
}
h1, h2, h3, h4 {
  font-family: Georgia, 'Times New Roman', serif;
  color: var(--sage-dark);
  margin-top: 0;
}
a { color: var(--sage-dark); text-decoration: none; }
img { max-width: 100%; display: block; border-radius: var(--radius); }

.container {
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 0 24px;
}

/* Header / Nav */
header {
  background: var(--white);
  border-bottom: 1px solid var(--cream-dark);
  position: sticky;
  top: 0;
  z-index: 100;
}
.nav-wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 24px;
  max-width: var(--maxw);
  margin: 0 auto;
}
.logo {
  font-family: Georgia, serif;
  font-size: 1.4rem;
  font-weight: bold;
  color: var(--sage-dark);
}
nav ul {
  list-style: none;
  display: flex;
  gap: 28px;
  margin: 0;
  padding: 0;
}
nav a {
  color: var(--text);
  font-weight: 500;
  font-size: 0.95rem;
}
nav a:hover { color: var(--sage-dark); }
.nav-cta {
  background: var(--sage);
  color: var(--white) !important;
  padding: 10px 20px;
  border-radius: 999px;
  font-weight: 600;
}
.menu-toggle { display: none; }

/* Hero */
.hero {
  background: linear-gradient(180deg, var(--cream-dark), var(--cream));
  padding: 64px 0;
}
.hero-grid {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 48px;
  align-items: center;
}
.hero h1 { font-size: 2.6rem; line-height: 1.2; }
.hero p.lead { font-size: 1.15rem; color: var(--text-light); margin: 18px 0 28px; }

/* Buttons */
.btn {
  display: inline-block;
  background: var(--sage);
  color: var(--white);
  padding: 14px 28px;
  border-radius: 999px;
  font-weight: 600;
  border: none;
  cursor: pointer;
  font-size: 1rem;
}
.btn:hover { background: var(--sage-dark); }
.btn-outline {
  background: transparent;
  color: var(--sage-dark);
  border: 2px solid var(--sage);
}
.btn-outline:hover { background: var(--sage); color: var(--white); }

/* Sections */
section { padding: 64px 0; }
.section-alt { background: var(--white); }
.section-title { text-align: center; margin-bottom: 12px; }
.section-sub { text-align: center; color: var(--text-light); max-width: 640px; margin: 0 auto 40px; }

/* Cards */
.grid {
  display: grid;
  gap: 28px;
}
.grid-3 { grid-template-columns: repeat(3, 1fr); }
.grid-2 { grid-template-columns: repeat(2, 1fr); }
.card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 28px;
  box-shadow: var(--shadow);
}
.card h3 { margin-bottom: 10px; }

/* Steps */
.steps { display: grid; grid-template-columns: repeat(3, 1fr); gap: 32px; }
.step-num {
  width: 40px; height: 40px;
  border-radius: 50%;
  background: var(--sage);
  color: var(--white);
  display: flex; align-items: center; justify-content: center;
  font-weight: bold;
  margin-bottom: 14px;
}

/* Testimonials */
.testimonial {
  background: var(--white);
  border-left: 4px solid var(--sage);
  border-radius: var(--radius);
  padding: 24px;
  box-shadow: var(--shadow);
}
.testimonial .stars { color: var(--accent); margin-bottom: 10px; }
.testimonial cite { display: block; margin-top: 12px; font-style: normal; color: var(--text-light); }

/* Pricing */
.price-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 36px;
  box-shadow: var(--shadow);
  text-align: center;
  border: 2px solid var(--sage);
}
.price-card .price { font-size: 2.4rem; color: var(--sage-dark); font-weight: bold; margin: 12px 0; }
.price-card ul { list-style: none; padding: 0; text-align: left; margin: 24px 0; }
.price-card li { padding: 8px 0; border-bottom: 1px solid var(--cream-dark); }

/* FAQ */
.faq-item { border-bottom: 1px solid var(--cream-dark); padding: 18px 0; }
.faq-item summary { font-weight: 600; cursor: pointer; font-size: 1.05rem; }
.faq-item p { margin-top: 10px; color: var(--text-light); }

/* Forms */
form { display: grid; gap: 16px; max-width: 560px; }
input, textarea, select {
  padding: 12px 16px;
  border: 1px solid var(--cream-dark);
  border-radius: 10px;
  font-size: 1rem;
  font-family: inherit;
}
label { font-weight: 600; font-size: 0.9rem; }

/* Footer */
footer {
  background: var(--sage-dark);
  color: var(--cream);
  padding: 48px 0 24px;
}
footer a { color: var(--cream); }
.footer-grid { display: grid; grid-template-columns: 1.2fr 1fr 1fr; gap: 32px; margin-bottom: 32px; }
.footer-bottom { text-align: center; font-size: 0.85rem; opacity: 0.8; padding-top: 24px; border-top: 1px solid rgba(255,255,255,0.15); }

/* Mobile */
@media (max-width: 768px) {
  .hero-grid { grid-template-columns: 1fr; }
  nav ul { display: none; }
  .grid-3, .grid-2, .steps, .footer-grid { grid-template-columns: 1fr; }
  .hero h1 { font-size: 2rem; }
}
