/* ============================
   Root & global styles
   ============================ */
:root {
  --bg: #0f172a;
  --bg-alt: #f3f4f6;
  --card-bg: #ffffff;
  --text-main: #111827;
  --text-muted: #4b5563;
  --accent: #16a34a;
  --accent-soft: #bbf7d0;
  --shadow-soft: 0 18px 45px rgba(15, 23, 42, 0.16);
  --radius-lg: 1.5rem;
  --radius-md: 1rem;
  --transition-fast: 180ms ease-out;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  padding: 0;
}

body {
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI",
    sans-serif;
  color: var(--text-main);
  background: #020617;
  line-height: 1.6;
}

/* ============================
   Layout helpers
   ============================ */

.container {
  width: min(1100px, 100% - 2.5rem);
  margin: 0 auto;
}

.section {
  padding: 4rem 0;
  background: #ffffff;
}

.section-alt {
  background: var(--bg-alt);
}

.grid-2 {
  display: grid;
  gap: 2.5rem;
}

@media (min-width: 800px) {
  .grid-2 {
    grid-template-columns: minmax(0, 1.1fr) minmax(0, 1.4fr);
  }
}

/* ============================
   Hero
   ============================ */

.hero {
  position: relative;
  min-height: 72vh;
  color: #f9fafb;
  overflow: hidden;
  display: flex;
  align-items: stretch;
  justify-content: center;
  background: #020617;
}

.hero-image {
  position: absolute;
  inset: 0;
  background-image: url("img/rootandriseseedling.png");
  background-size: cover;
  background-position: center;
  opacity: 0.55;
  filter: grayscale(0.2) brightness(0.9) contrast(1.05);
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: radial-gradient(
      circle at top center,
      rgba(15, 23, 42, 0.15),
      rgba(15, 23, 42, 0.6) 55%,
      rgba(15, 23, 42, 0.9) 100%
    );
}

.hero-content {
  position: relative;
  z-index: 1;
  padding: 4rem 1.75rem 4.5rem;
  width: min(900px, 100%);
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

/* Make "Root and Rise" the hero */

.hero-tagline {
  margin: 0 0 0.4rem;
  font-size: clamp(2.4rem, 4.1vw, 3.4rem);
  font-weight: 800;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: #f9fafb;
  text-shadow: 0 10px 30px rgba(0, 0, 0, 0.75);
}

/* "Coaching by LaFave" – secondary but clear */

.hero-title {
  font-size: clamp(1.4rem, 2.6vw, 2rem);
  font-weight: 500;
  margin: 0 0 1rem;
  line-height: 1.2;
  color: #e5e7eb;
  text-shadow: 0 6px 20px rgba(0, 0, 0, 0.7);
}

.hero-title .highlight {
  color: #4ade80;
  font-weight: 650;
}

/* Supporting line */

.hero-subtitle {
  font-size: clamp(1.05rem, 2vw, 1.25rem);
  max-width: 38rem;
  margin: 0 0 1.5rem;
  color: #e5e7eb;
}

/* Hero CTA */

.hero-actions {
  margin-top: 0.5rem;
}

.hero-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.8rem 1.6rem;
  border-radius: 999px;
  border: none;
  background: #22c55e;
  color: #022c22;
  font-weight: 600;
  font-size: 0.98rem;
  text-decoration: none;
  box-shadow: 0 15px 35px rgba(21, 128, 61, 0.45);
  transition: transform var(--transition-fast), box-shadow var(--transition-fast),
    background var(--transition-fast);
}

.hero-cta:hover {
  transform: translateY(-1px);
  box-shadow: 0 18px 45px rgba(21, 128, 61, 0.6);
  background: #16a34a;
}

/* ============================
   Typography
   ============================ */

h1,
h2,
h3 {
  font-weight: 650;
  letter-spacing: -0.03em;
  color: var(--text-main);
}

h2 {
  font-size: 1.7rem;
  margin-bottom: 0.75rem;
}

.lead {
  margin-top: 0.25rem;
  margin-bottom: 1rem;
  color: var(--text-muted);
}

/* ============================
   Links & Contact card
   ============================ */

.contact-card {
  margin-top: 1.25rem;
  padding: 1.25rem 1.5rem;
  border-radius: var(--radius-md);
  background: #f9fafb;
  border: 1px solid #e5e7eb;
  box-shadow: 0 10px 30px rgba(15, 23, 42, 0.08);
  font-size: 0.98rem;
}

.contact-card p {
  margin: 0.35rem 0;
}

a {
  color: var(--accent);
  text-decoration: none;
}

a:hover {
  text-decoration: underline;
}

/* ============================
   Parent Coaching Section
   ============================ */

.parent-coaching-grid {
  display: grid;
  gap: 2.5rem;
  align-items: flex-start;
}

@media (min-width: 900px) {
  .parent-coaching-grid {
    grid-template-columns: 1.2fr 1fr;
  }
}

.benefits-list {
  padding-left: 1.1rem;
  margin: 0.75rem 0 0;
  color: var(--text-muted);
}

.benefits-list li {
  margin-bottom: 0.5rem;
}

/* ============================
   Process / How it works
   ============================ */

.process-steps {
  display: grid;
  gap: 1.75rem;
  margin-top: 2rem;
}

@media (min-width: 900px) {
  .process-steps {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

.step-card {
  background: #f9fafb;
  border-radius: var(--radius-lg);
  padding: 1.5rem 1.4rem 1.6rem;
  border: 1px solid rgba(15, 23, 42, 0.06);
  box-shadow: 0 10px 30px rgba(15, 23, 42, 0.06);
}

.step-card h3 {
  margin-top: 0;
  margin-bottom: 0.6rem;
}

.step-card p {
  margin: 0;
  color: var(--text-muted);
}

.process-cta {
  margin-top: 2.5rem;
  text-align: center;
}

.process-cta p {
  margin-bottom: 0.8rem;
  color: var(--text-main);
  font-weight: 500;
}

.process-cta-button {
  font-size: 0.96rem;
}

/* ============================
   About Section – Photo Layout
   ============================ */

.about-grid {
  display: grid;
  gap: 3rem;
  align-items: center;
  margin-bottom: 3rem;
}

@media (min-width: 900px) {
  .about-grid {
    grid-template-columns: 1.1fr 0.9fr;
  }
}

/* About text */

.about-text p {
  margin-bottom: 1.1rem;
  color: var(--text-muted);
  line-height: 1.65;
}

/* Photo styling */

.about-photo-wrapper {
  display: flex;
  justify-content: center;
}

.about-photo {
  width: 100%;
  max-width: 340px;
  border-radius: 1.25rem;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.22);
  border: 4px solid white;
  object-fit: cover;
}

/* Contact moved below photo on mobile */

.contact-below {
  margin-top: 1.5rem;
}

/* ============================
   Testimonials
   ============================ */

.testimonials-grid {
  display: grid;
  gap: 1.75rem;
  margin-top: 2.25rem;
}

@media (min-width: 900px) {
  .testimonials-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

.testimonial {
  background: var(--card-bg);
  border-radius: var(--radius-lg);
  padding: 1.5rem 1.4rem 1.6rem;
  border: 1px solid rgba(15, 23, 42, 0.08);
  box-shadow: var(--shadow-soft);
  position: relative;
  overflow: hidden;
}

.testimonial::before {
  content: "“";
  position: absolute;
  top: -1.4rem;
  left: 0.4rem;
  font-size: 5rem;
  line-height: 1;
  color: rgba(34, 197, 94, 0.12);
  pointer-events: none;
}

.testimonial-text {
  margin: 0 0 1.1rem;
  font-size: 0.98rem;
  color: var(--text-muted);
}

.testimonial-name {
  margin: 0;
  font-weight: 600;
  font-size: 0.9rem;
  color: #111827;
}

/* ============================
   Footer
   ============================ */

.footer {
  background: #020617;
  color: #9ca3af;
  padding: 1.5rem 0;
}

.footer-inner {
  text-align: center;
  font-size: 0.85rem;
}
