/* ============================================
   Meaningful Ideas — Conscious Parenting
   Soothing, warm, nurturing design system
   Enhanced with animations, gradients & effects
   ============================================ */

:root {
  /* Soothing color palette */
  --forest: #2D5A3D;
  --forest-dark: #1E3D29;
  --forest-light: #4A7C5C;
  --sage: #A8C3A0;
  --sage-light: #E8F0E4;
  --cream: #FAF6F0;
  --cream-dark: #F0E9DF;
  --terracotta: #C97B5A;
  --terracotta-light: #E8C4B0;
  --text: #3D3A36;
  --text-light: #6B675F;
  --white: #FFFFFF;
  --shadow: 0 4px 20px rgba(45, 90, 61, 0.08);
  --shadow-lg: 0 8px 30px rgba(45, 90, 61, 0.12);
  --radius: 12px;
  --radius-lg: 20px;
  --transition: all 0.3s ease;
  --gradient-hero: linear-gradient(135deg, var(--sage-light) 0%, var(--cream) 100%);
  --gradient-forest: linear-gradient(135deg, var(--forest) 0%, var(--forest-light) 100%);
  --gradient-terracotta: linear-gradient(135deg, var(--terracotta) 0%, var(--terracotta-light) 100%);
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Nunito', 'Segoe UI', sans-serif;
  color: var(--text);
  background-color: var(--cream);
  line-height: 1.7;
  font-size: 17px;
  overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
  font-family: 'Lora', Georgia, serif;
  color: var(--forest-dark);
  line-height: 1.3;
  font-weight: 600;
}

h1 { font-size: 2.8rem; }
h2 { font-size: 2.2rem; }
h3 { font-size: 1.6rem; }
h4 { font-size: 1.3rem; }

p { margin-bottom: 1.2rem; }

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

a:hover {
  color: var(--terracotta);
}

img {
  max-width: 100%;
  height: auto;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

/* ============================================
   ANIMATIONS
   ============================================ */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

@keyframes float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-12px); }
}

@keyframes pulseGlow {
  0%, 100% {
    box-shadow: 0 0 0 0 rgba(201, 123, 90, 0.4);
  }
  50% {
    box-shadow: 0 0 0 12px rgba(201, 123, 90, 0);
  }
}

@keyframes gradientShift {
  0% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
  100% { background-position: 0% 50%; }
}

@keyframes spinSlow {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}

@keyframes shimmer {
  0% { background-position: -200% 0; }
  100% { background-position: 200% 0; }
}

/* Scroll reveal */
.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

.reveal-delay-1 { transition-delay: 0.15s; }
.reveal-delay-2 { transition-delay: 0.3s; }
.reveal-delay-3 { transition-delay: 0.45s; }

/* ============================================
   NAVIGATION
   ============================================ */
.nav {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgba(250, 246, 240, 0.9);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(240, 233, 223, 0.6);
  padding: 16px 0;
  transition: var(--transition);
}

.nav.scrolled {
  padding: 10px 0;
  background: rgba(250, 246, 240, 0.97);
  box-shadow: 0 2px 20px rgba(45, 90, 61, 0.08);
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: 'Lora', serif;
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--forest-dark);
}

.nav-logo .logo-mark {
  width: 40px;
  height: 40px;
  background: var(--gradient-forest);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--cream);
  font-size: 1.1rem;
  transition: transform 0.4s ease;
}

.nav-logo:hover .logo-mark {
  transform: rotate(20deg) scale(1.1);
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 28px;
  list-style: none;
}

.nav-links a {
  color: var(--text);
  font-weight: 600;
  font-size: 0.95rem;
  letter-spacing: 0.3px;
  padding: 6px 0;
  position: relative;
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--terracotta);
  transition: width 0.3s ease;
}

.nav-links a:hover::after,
.nav-links a.active::after {
  width: 100%;
}

.nav-links a.active {
  color: var(--forest);
}

.nav-cta {
  background: var(--gradient-forest);
  color: var(--white) !important;
  padding: 10px 20px !important;
  border-radius: 30px;
  font-weight: 700;
  box-shadow: 0 4px 12px rgba(45, 90, 61, 0.2);
  transition: all 0.3s ease;
}

.nav-cta:hover {
  background: var(--gradient-terracotta);
  color: var(--white) !important;
  transform: translateY(-2px);
  box-shadow: 0 6px 16px rgba(201, 123, 90, 0.3);
}

.nav-cta::after { display: none; }

.nav-toggle {
  display: none;
  background: none;
  border: none;
  font-size: 1.5rem;
  color: var(--forest-dark);
  cursor: pointer;
  padding: 8px;
  border-radius: 8px;
  transition: var(--transition);
}

.nav-toggle:hover {
  background: var(--sage-light);
}

/* ============================================
   HERO
   ============================================ */
.hero {
  background: var(--gradient-hero);
  background-size: 200% 200%;
  animation: gradientShift 12s ease infinite;
  padding: 80px 0 60px;
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: -100px;
  right: -100px;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(168, 195, 160, 0.3) 0%, transparent 70%);
  border-radius: 50%;
  animation: float 8s ease-in-out infinite;
}

.hero::after {
  content: '';
  position: absolute;
  bottom: -80px;
  left: -80px;
  width: 350px;
  height: 350px;
  background: radial-gradient(circle, rgba(201, 123, 90, 0.15) 0%, transparent 70%);
  border-radius: 50%;
  animation: float 10s ease-in-out infinite reverse;
}

.hero-inner {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 60px;
  align-items: center;
  position: relative;
  z-index: 1;
}

.hero-badge {
  display: inline-block;
  background: var(--terracotta-light);
  color: var(--forest-dark);
  padding: 6px 16px;
  border-radius: 30px;
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.5px;
  margin-bottom: 20px;
  text-transform: uppercase;
  animation: fadeInUp 0.6s ease both;
}

.hero h1 {
  font-size: 3.2rem;
  margin-bottom: 20px;
  color: var(--forest-dark);
  animation: fadeInUp 0.7s ease 0.1s both;
}

.hero h1 em {
  font-style: italic;
  color: var(--terracotta);
  position: relative;
  display: inline-block;
}

.hero h1 em::after {
  content: '';
  position: absolute;
  bottom: 4px;
  left: 0;
  width: 100%;
  height: 8px;
  background: rgba(201, 123, 90, 0.15);
  border-radius: 4px;
  z-index: -1;
}

.hero p.lead {
  font-size: 1.2rem;
  color: var(--text-light);
  margin-bottom: 30px;
  max-width: 520px;
  animation: fadeInUp 0.7s ease 0.2s both;
}

.hero-actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  animation: fadeInUp 0.7s ease 0.3s both;
}

.hero-image {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  animation: fadeIn 0.8s ease 0.2s both;
}

.hero-image > div {
  transition: transform 0.5s ease;
}

.hero-image:hover > div {
  transform: scale(1.02);
}

/* ============================================
   BUTTONS
   ============================================ */
.btn {
  display: inline-block;
  padding: 14px 32px;
  border-radius: 30px;
  font-weight: 700;
  font-size: 1rem;
  border: none;
  cursor: pointer;
  transition: var(--transition);
  text-align: center;
  position: relative;
  overflow: hidden;
}

.btn::after {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
  transition: left 0.5s ease;
}

.btn:hover::after {
  left: 100%;
}

.btn-primary {
  background: var(--gradient-forest);
  color: var(--white);
  box-shadow: 0 4px 14px rgba(45, 90, 61, 0.25);
}

.btn-primary:hover {
  background: var(--gradient-terracotta);
  color: var(--white);
  transform: translateY(-3px);
  box-shadow: 0 8px 24px rgba(201, 123, 90, 0.3);
}

.btn-secondary {
  background: transparent;
  color: var(--forest);
  border: 2px solid var(--forest);
}

.btn-secondary:hover {
  background: var(--forest);
  color: var(--white);
  transform: translateY(-3px);
  box-shadow: 0 8px 24px rgba(45, 90, 61, 0.2);
}

.btn-terracotta {
  background: var(--gradient-terracotta);
  color: var(--white);
  box-shadow: 0 4px 14px rgba(201, 123, 90, 0.25);
}

.btn-terracotta:hover {
  background: var(--gradient-forest);
  color: var(--white);
  transform: translateY(-3px);
  box-shadow: 0 8px 24px rgba(45, 90, 61, 0.3);
}

.btn-lg {
  padding: 18px 40px;
  font-size: 1.1rem;
}

/* ============================================
   SECTIONS
   ============================================ */
.section {
  padding: 80px 0;
  position: relative;
}

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

.section-sage {
  background: linear-gradient(135deg, var(--sage-light) 0%, #F4F8F2 100%);
}

.section-heading {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 50px;
}

.section-heading h2 {
  margin-bottom: 16px;
}

.section-heading p {
  color: var(--text-light);
  font-size: 1.1rem;
}

.section-eyebrow {
  display: inline-block;
  color: var(--terracotta);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2px;
  font-size: 0.8rem;
  margin-bottom: 12px;
}

/* ============================================
   CARDS
   ============================================ */
.card-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
}

.card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 36px;
  box-shadow: var(--shadow);
  transition: all 0.4s ease;
  border: 1px solid var(--cream-dark);
  position: relative;
  overflow: hidden;
}

.card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: var(--gradient-terracotta);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s ease;
}

.card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
}

.card:hover::before {
  transform: scaleX(1);
}

.card-icon {
  width: 56px;
  height: 56px;
  background: var(--sage-light);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  margin-bottom: 20px;
  color: var(--forest);
  transition: all 0.4s ease;
}

.card:hover .card-icon {
  background: var(--gradient-forest);
  color: var(--white);
  transform: scale(1.1) rotate(-5deg);
}

.card h3 {
  margin-bottom: 12px;
}

.card p {
  color: var(--text-light);
  font-size: 0.95rem;
}

/* ============================================
   COURSE CARDS
   ============================================ */
.course-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: all 0.4s ease;
  border: 1px solid var(--cream-dark);
  display: flex;
  flex-direction: column;
}

.course-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
}

.course-card-image {
  height: 200px;
  background: linear-gradient(135deg, var(--sage) 0%, var(--sage-light) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 3rem;
  color: var(--forest);
  transition: all 0.4s ease;
  position: relative;
  overflow: hidden;
}

.course-card-image::after {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
  transform: rotate(45deg);
  transition: transform 0.6s ease;
}

.course-card:hover .course-card-image::after {
  transform: rotate(45deg) translate(50%, 50%);
}

.course-card-image span {
  animation: float 4s ease-in-out infinite;
}

.course-card-body {
  padding: 30px;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.course-card-body h3 {
  margin-bottom: 10px;
}

.course-card-body p {
  color: var(--text-light);
  font-size: 0.95rem;
  flex: 1;
}

.course-card-footer {
  padding: 20px 30px;
  border-top: 1px solid var(--cream-dark);
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: linear-gradient(135deg, var(--cream) 0%, var(--white) 100%);
}

.course-price {
  font-family: 'Lora', serif;
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--forest);
}

.course-price .free {
  color: var(--terracotta);
}

/* ============================================
   QUOTE SECTION (Parallax)
   ============================================ */
.quote-section {
  background: var(--forest-dark);
  color: var(--cream);
  padding: 100px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.quote-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(circle at 20% 50%, rgba(168, 195, 160, 0.15) 0%, transparent 50%);
}

.quote-section blockquote {
  font-family: 'Lora', serif;
  font-size: 1.8rem;
  font-style: italic;
  max-width: 800px;
  margin: 0 auto 20px;
  line-height: 1.5;
  position: relative;
  z-index: 1;
}

.quote-section cite {
  font-style: normal;
  color: var(--sage);
  font-size: 1rem;
  letter-spacing: 1px;
  position: relative;
  z-index: 1;
}

/* ============================================
   TESTIMONIALS
   ============================================ */
.testimonial {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 36px;
  box-shadow: var(--shadow);
  border-left: 4px solid var(--terracotta);
}

.testimonial p {
  font-style: italic;
  color: var(--text);
  margin-bottom: 16px;
}

.testimonial-author {
  font-weight: 700;
  color: var(--forest);
  font-size: 0.9rem;
}

/* ============================================
   CTA BANNER
   ============================================ */
.cta-banner {
  background: var(--gradient-forest);
  background-size: 200% 200%;
  animation: gradientShift 8s ease infinite;
  color: var(--white);
  padding: 60px;
  text-align: center;
  border-radius: var(--radius-lg);
  margin: 40px 0;
  position: relative;
  overflow: hidden;
  box-shadow: 0 10px 40px rgba(45, 90, 61, 0.2);
}

.cta-banner::before {
  content: '';
  position: absolute;
  top: -50px;
  right: -50px;
  width: 200px;
  height: 200px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.05);
  animation: float 6s ease-in-out infinite;
}

.cta-banner::after {
  content: '';
  position: absolute;
  bottom: -30px;
  left: -30px;
  width: 150px;
  height: 150px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.05);
  animation: float 8s ease-in-out infinite reverse;
}

.cta-banner h2 {
  color: var(--white);
  margin-bottom: 16px;
  position: relative;
  z-index: 1;
}

.cta-banner p {
  color: rgba(255, 255, 255, 0.9);
  max-width: 600px;
  margin: 0 auto 30px;
  position: relative;
  z-index: 1;
}

.cta-banner .btn {
  position: relative;
  z-index: 1;
}

/* ============================================
   CURRICULUM
   ============================================ */
.curriculum {
  max-width: 800px;
  margin: 0 auto;
}

.curriculum-item {
  display: flex;
  gap: 20px;
  padding: 20px 0;
  border-bottom: 1px solid var(--cream-dark);
  align-items: flex-start;
  transition: all 0.3s ease;
}

.curriculum-item:last-child {
  border-bottom: none;
}

.curriculum-item:hover {
  padding-left: 10px;
  background: rgba(232, 240, 228, 0.3);
  border-radius: var(--radius);
}

.curriculum-number {
  width: 40px;
  height: 40px;
  background: var(--sage-light);
  color: var(--forest);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  flex-shrink: 0;
  transition: all 0.3s ease;
}

.curriculum-item:hover .curriculum-number {
  background: var(--gradient-forest);
  color: var(--white);
  transform: scale(1.1);
}

.curriculum-item h4 {
  margin-bottom: 4px;
}

.curriculum-item p {
  color: var(--text-light);
  font-size: 0.9rem;
  margin: 0;
}

/* ============================================
   PRICING
   ============================================ */
.pricing-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 40px;
  box-shadow: var(--shadow);
  text-align: center;
  max-width: 500px;
  margin: 0 auto;
  border: 2px solid var(--sage);
  position: relative;
  overflow: hidden;
  transition: all 0.4s ease;
}

.pricing-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}

.pricing-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: var(--gradient-forest);
}

.pricing-card .price {
  font-family: 'Lora', serif;
  font-size: 3rem;
  font-weight: 700;
  color: var(--forest);
  margin: 20px 0;
  animation: pulseGlow 3s ease-in-out infinite;
  display: inline-block;
  padding: 0 20px;
  border-radius: 12px;
}

.pricing-card .price small {
  font-size: 1rem;
  color: var(--text-light);
}

.pricing-features {
  list-style: none;
  text-align: left;
  margin: 30px 0;
}

.pricing-features li {
  padding: 10px 0;
  border-bottom: 1px solid var(--cream-dark);
  display: flex;
  align-items: center;
  gap: 12px;
  transition: padding-left 0.3s ease;
}

.pricing-features li:hover {
  padding-left: 8px;
}

.pricing-features li::before {
  content: '✓';
  color: var(--forest);
  font-weight: 700;
  flex-shrink: 0;
}

/* ============================================
   BLOG
   ============================================ */
.blog-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 30px;
}

.blog-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: all 0.4s ease;
  border: 1px solid var(--cream-dark);
}

.blog-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
}

.blog-card-image {
  height: 180px;
  background: linear-gradient(135deg, var(--sage) 0%, var(--sage-light) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2.5rem;
  color: var(--forest);
  transition: all 0.4s ease;
  position: relative;
  overflow: hidden;
}

.blog-card-image::after {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
  transform: rotate(45deg);
  transition: transform 0.6s ease;
}

.blog-card:hover .blog-card-image::after {
  transform: rotate(45deg) translate(50%, 50%);
}

.blog-card-image span {
  animation: float 4s ease-in-out infinite;
}

.blog-card-body {
  padding: 28px;
}

.blog-card-meta {
  font-size: 0.8rem;
  color: var(--terracotta);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 10px;
}

.blog-card-body h3 {
  margin-bottom: 12px;
  font-size: 1.3rem;
}

.blog-card-body p {
  color: var(--text-light);
  font-size: 0.95rem;
}

.blog-card-body .read-more {
  display: inline-block;
  margin-top: 16px;
  font-weight: 700;
  color: var(--forest);
  transition: all 0.3s ease;
}

.blog-card-body .read-more:hover {
  color: var(--terracotta);
  transform: translateX(4px);
}

/* ============================================
   ARTICLE
   ============================================ */
.article {
  max-width: 760px;
  margin: 0 auto;
}

.article-header {
  text-align: center;
  margin-bottom: 50px;
}

.article-header h1 {
  font-size: 2.5rem;
  margin-bottom: 16px;
}

.article-meta {
  color: var(--text-light);
  font-size: 0.9rem;
}

.article-body {
  font-size: 1.1rem;
  line-height: 1.8;
}

.article-body p {
  margin-bottom: 1.5rem;
}

.article-body h2 {
  margin: 2.5rem 0 1rem;
}

.article-body blockquote {
  border-left: 4px solid var(--terracotta);
  padding: 20px 30px;
  margin: 30px 0;
  background: var(--sage-light);
  border-radius: 0 var(--radius) var(--radius) 0;
  font-style: italic;
  font-size: 1.1rem;
  animation: fadeInUp 0.8s ease both;
}

/* ============================================
   CONTACT
   ============================================ */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: start;
}

.contact-form {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 40px;
  box-shadow: var(--shadow);
}

.form-group {
  margin-bottom: 24px;
}

.form-group label {
  display: block;
  font-weight: 600;
  margin-bottom: 8px;
  color: var(--forest-dark);
  font-size: 0.95rem;
}

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 14px 16px;
  border: 1px solid var(--cream-dark);
  border-radius: 8px;
  font-family: inherit;
  font-size: 1rem;
  background: var(--cream);
  transition: all 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--sage);
  background: var(--white);
  box-shadow: 0 0 0 3px rgba(168, 195, 160, 0.2);
}

.contact-info {
  padding: 20px 0;
}

.contact-info h3 {
  margin-bottom: 20px;
}

.contact-info p {
  color: var(--text-light);
  margin-bottom: 16px;
}

.social-links {
  display: flex;
  gap: 16px;
  margin-top: 30px;
}

.social-link {
  width: 48px;
  height: 48px;
  background: var(--sage-light);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--forest);
  font-size: 1.2rem;
  transition: all 0.4s ease;
}

.social-link:hover {
  background: var(--gradient-forest);
  color: var(--white);
  transform: translateY(-4px) scale(1.1);
  box-shadow: 0 6px 16px rgba(45, 90, 61, 0.25);
}

/* ============================================
   FOOTER
   ============================================ */
.footer {
  background: var(--forest-dark);
  color: rgba(255, 255, 255, 0.8);
  padding: 60px 0 30px;
  position: relative;
  overflow: hidden;
}

.footer::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--gradient-terracotta);
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 40px;
  margin-bottom: 40px;
}

.footer h4 {
  color: var(--white);
  margin-bottom: 20px;
  font-size: 1.1rem;
}

.footer p {
  font-size: 0.9rem;
  line-height: 1.6;
}

.footer-links {
  list-style: none;
}

.footer-links li {
  margin-bottom: 10px;
}

.footer-links a {
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.9rem;
  transition: all 0.3s ease;
  display: inline-block;
}

.footer-links a:hover {
  color: var(--sage);
  transform: translateX(4px);
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 30px;
  text-align: center;
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.5);
}

.footer-bottom a {
  color: var(--sage);
}

/* ============================================
   DISCLAIMER
   ============================================ */
.disclaimer {
  background: linear-gradient(135deg, var(--cream-dark) 0%, var(--cream) 100%);
  padding: 30px 0;
  font-size: 0.8rem;
  color: var(--text-light);
  text-align: center;
}

.disclaimer p {
  max-width: 900px;
  margin: 0 auto;
  line-height: 1.6;
}

/* ============================================
   RESPONSIVE
   ============================================ */
@media (max-width: 900px) {
  h1 { font-size: 2.2rem; }
  h2 { font-size: 1.8rem; }

  .hero-inner {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .hero h1 {
    font-size: 2.5rem;
  }

  .contact-grid {
    grid-template-columns: 1fr;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .nav-links {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: rgba(250, 246, 240, 0.98);
    backdrop-filter: blur(16px);
    flex-direction: column;
    padding: 20px;
    gap: 16px;
    box-shadow: 0 10px 30px rgba(45, 90, 61, 0.15);
    border-bottom: 1px solid var(--cream-dark);
    animation: fadeIn 0.3s ease both;
  }

  .nav-links.open {
    display: flex;
  }

  .nav-toggle {
    display: block;
  }

  .cta-banner {
    padding: 40px 24px;
  }
}

@media (max-width: 600px) {
  .section {
    padding: 60px 0;
  }

  .hero {
    padding: 60px 0 40px;
  }

  .hero h1 {
    font-size: 2rem;
  }

  .card-grid,
  .blog-grid {
    grid-template-columns: 1fr;
  }

  .btn-lg {
    padding: 16px 30px;
    font-size: 1rem;
  }

  .quote-section blockquote {
    font-size: 1.4rem;
  }

  .pricing-card {
    padding: 30px 20px;
  }
}

/* ============================================
   REDUCED MOTION PREFERENCE
   ============================================ */
@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }

  .reveal {
    opacity: 1;
    transform: none;
  }
}