/* === VARIABLES === */
:root {
  --sage: #7A8B74;
  --forest: #4E5A47;
  --cream: #F4F2ED;
  --beige: #D8CDBE;
  --charcoal: #3B3B3B;
}

/* === RESET === */
* { margin:0; padding:0; box-sizing:border-box; }
body { font-family: 'Raleway', sans-serif; background: var(--cream); color: var(--charcoal); line-height:1.7; }
h1,h2,h3 { font-family: 'Playfair Display', serif; color: var(--forest); }
a { text-decoration:none; color:inherit; }
img { max-width:100%; display:block; }
.container { width:90%; max-width:1200px; margin:auto; }

/* === HEADER === */
.header { background:var(--cream); padding:1rem 0; position:sticky; top:0; z-index:1000; box-shadow:0 2px 10px rgba(0,0,0,.05); }
.header-inner { display:flex; align-items:center; justify-content:space-between; }
.logo-img { height:70px; }
.nav-list { display:flex; gap:2rem; list-style:none; }
.nav-list a { color:var(--sage); font-weight:600; }
.nav-list a.active, .nav-list a:hover { color:var(--forest); }
.btn { background:var(--sage); color:var(--cream); padding:.75rem 1.5rem; border-radius:4px; font-weight:600; }
.btn:hover { background:var(--forest); }
.call-btn { display:none; }

/* === HAMBURGER === */
.hamburger { display:none; flex-direction:column; gap:5px; background:none; border:none; cursor:pointer; }
.hamburger span { width:25px; height:3px; background:var(--forest); transition:.3s; }

/* === HERO === */
.hero { background:linear-gradient(var(--cream), var(--beige)); text-align:center; padding:8rem 1rem; }
.hero h1 { font-size:3rem; margin-bottom:1rem; }
.tagline { font-style:italic; color:var(--sage); max-width:800px; margin:0 auto 2rem; font-size:1.2rem; }

/* === SECTIONS === */
.section { padding:4rem 0; }
.bg-cream { background:var(--cream); }
.mission { text-align:center; max-width:800px; margin:auto; }
.divider { height:1px; background:var(--sage); width:60px; margin:2rem auto; }

/* === ABOUT === */
.about-grid { display:grid; grid-template-columns:1fr 1fr; gap:3rem; align-items:center; }
.about-img { border-radius:12px; box-shadow:0 8px 25px rgba(0,0,0,.1); }

/* === TESTIMONIALS === */
.testimonials-grid { display:grid; grid-template-columns:repeat(auto-fit, minmax(300px,1fr)); gap:2rem; margin-top:2rem; }
.testimonial {
  background:rgba(255,255,255,.8);
  padding:2rem;
  border-radius:12px;
  position:relative;
  font-style:italic;
  box-shadow:0 4px 15px rgba(0,0,0,.06);
}
.testimonial::before {
  content:'“';
  font-family:'Playfair Display',serif;
  font-size:6rem;
  color:var(--sage);
  opacity:.25;
  position:absolute;
  top:-20px; left:15px;
}
.testimonial p { margin-bottom:1rem; }
.testimonial cite {
  display:block;
  text-align:right;
  font-weight:600;
  color:var(--forest);
  font-style:normal;
  font-size:.95rem;
}

/* === CONTACT PAGE === */
.contact-page {
  background: var(--cream);
  padding: 6rem 0;
  text-align: center;
}

.contact-header {
  margin-bottom: 3rem;
}
.contact-header h2 {
  margin-bottom: 1rem;
  font-size: 2rem;
}
.contact-header .divider {
  margin: 1.5rem auto 0;
}

.contact-card {
  background: white;
  max-width: 480px;
  margin: 0 auto;
  padding: 2.5rem 2rem;
  border-radius: 16px;
  box-shadow: 0 12px 35px rgba(0,0,0,.08);
  text-align: left;
}
.contact-card h3 {
  text-align: center;
  font-size: 1.4rem;
  margin: 0 0 .4rem;
  color: var(--forest);
}
.subtitle {
  text-align: center;
  font-size: .95rem;
  color: var(--charcoal);
  margin-bottom: 1.8rem;
  font-weight: 500;
}

.contact-row {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin: 1.1rem 0;
  font-size: 1.05rem;
}
.contact-row .icon {
  font-size: 1.5rem;
  width: 28px;
  text-align: center;
  flex-shrink: 0;
}
.contact-row p {
  margin: 0;
  flex: 1;
}
.contact-row a {
  color: var(--sage);
  font-weight: 600;
}
.contact-row a:hover {
  color: var(--forest);
}

.send-btn {
  display: block;
  margin: 2rem auto 0;
  min-width: 180px;
  text-align: center;
}

/* === PROGRAMS === */
.programs-page { background:var(--beige); }
.pricing-grid { display:grid; grid-template-columns:repeat(auto-fit, minmax(300px,1fr)); gap:2rem; margin-top:3rem; }
.program-card {
  background:white;
  padding:2rem;
  border-radius:16px;
  text-align:center;
  box-shadow:0 8px 25px rgba(0,0,0,.08);
  position:relative;
  transition:transform .3s;
}
.program-card:hover { transform:translateY(-8px); }
.price { font-size:2rem; font-weight:700; color:var(--forest); margin:1.5rem 0; }
.program-card ul { text-align:left; margin:1.5rem 0; }
.program-card ul li { margin:.5rem 0; }
.featured { border:3px solid var(--sage); }
.badge {
  position:absolute; top:-12px; left:50%; transform:translateX(-50%);
  background:var(--sage); color:white; padding:.3rem 1rem;
  border-radius:20px; font-size:.8rem; font-weight:600;
}

/* === FOOTER === */
.footer { background:var(--forest); color:var(--cream); text-align:center; padding:2rem 0; }

/* === MOBILE === */
@media (max-width:992px) {
  .about-grid { grid-template-columns:1fr; text-align:center; }
  .about-img { order:-1; margin-bottom:2rem; }
}
@media (max-width:768px) {
  .hamburger { display:flex; }
  .nav { position:fixed; top:0; right:-100%; width:70%; height:100vh; background:var(--cream); padding:5rem 2rem 2rem; transition:.4s; box-shadow:-5px 0 15px rgba(0,0,0,.1); }
  .nav.active { right:0; }
  .nav-list { flex-direction:column; gap:1.5rem; font-size:1.1rem; }
  .call-btn { display:block; margin-top:2rem; text-align:center; }
  .hero h1 { font-size:2.2rem; }
  .testimonial::before { font-size:4rem; top:-10px; }
}
/* === TESTIMONIALS – ADD CLOSING QUOTE === */
.testimonial::after {
  content: '”';
  font-family: 'Playfair Display', serif;
  font-size: 6rem;
  color: var(--sage);
  opacity: .25;
  position: absolute;
  bottom: -40px;
  right: 15px;
}