@import url('https://fonts.googleapis.com/css2?family=Gilda+Display&family=Karla:wght@300;400;500;600;700&display=swap');

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

:root {
  --sage: #4ade80;
  --sage2: #16a34a;
  --sage3: #86efac;
  --blush: #fecdd3;
  --blush2: #fb7185;
  --rose: #f43f5e;
  --cream: #fdf9f6;
  --soft: #f0fdf4;
  --mid: #78716c;
  --border: #d4edda;
  --dark: #1c2b1c;
  --white: #ffffff;
}

html { scroll-behavior: smooth; }
body { font-family: 'Karla', sans-serif; background: var(--white); color: var(--dark); overflow-x: hidden; }

nav {
  background: var(--white);
  height: 66px; padding: 0 6%;
  display: flex; align-items: center; justify-content: space-between;
  position: sticky; top: 0; z-index: 100;
  border-bottom: 1px solid var(--border);
  box-shadow: 0 1px 8px rgba(74,222,128,0.06);
}
.nav-logo { display: flex; align-items: center; gap: 10px; text-decoration: none; }
.nav-logo svg { width: 34px; height: 34px; }
.nav-logo-text { font-family: 'Gilda Display', serif; font-size: 0.95rem; color: var(--dark); line-height: 1.2; }
.nav-logo-text small { display: block; font-family: 'Karla', sans-serif; font-size: 0.5rem; font-weight: 400; color: var(--mid); letter-spacing: 2px; text-transform: uppercase; }
.nav-links { display: flex; align-items: center; gap: 26px; list-style: none; }
.nav-links a { color: var(--mid); text-decoration: none; font-size: 0.84rem; font-weight: 500; transition: color 0.2s; }
.nav-links a:hover { color: var(--sage2); }
.nav-cta { background: var(--sage2) !important; color: white !important; padding: 9px 22px; border-radius: 100px; font-weight: 700 !important; }
.nav-cta:hover { opacity: 0.9; }

/* HERO */
.hero { background: linear-gradient(160deg, var(--soft) 0%, var(--white) 60%); padding: 60px 6% 0; }
.hero-top { display: grid; grid-template-columns: 1fr 1fr; gap: 52px; align-items: flex-start; margin-bottom: 48px; }
.hero-eyebrow { font-size: 0.62rem; font-weight: 700; letter-spacing: 3px; text-transform: uppercase; color: var(--sage2); display: block; margin-bottom: 14px; }
h1 { font-family: 'Gilda Display', serif; font-size: clamp(2.2rem, 4.5vw, 3.8rem); line-height: 1.12; color: var(--dark); margin-bottom: 14px; }
h1 em { font-style: italic; color: var(--sage2); }
.hero-sub { color: var(--mid); font-size: 0.95rem; line-height: 1.9; max-width: 400px; margin-bottom: 28px; }
.hero-btns { display: flex; gap: 12px; flex-wrap: wrap; }
.btn-sage { background: var(--sage2); color: white; padding: 13px 26px; border-radius: 100px; font-weight: 700; font-size: 0.9rem; text-decoration: none; transition: opacity 0.2s; display: inline-block; }
.btn-sage:hover { opacity: 0.9; }
.btn-outline { border: 1.5px solid var(--border); color: var(--mid); padding: 12px 24px; border-radius: 100px; font-size: 0.9rem; text-decoration: none; transition: border-color 0.2s; display: inline-block; }
.btn-outline:hover { border-color: var(--sage2); color: var(--sage2); }

/* PREGNANCY TRACKER */
.preg-tracker { background: white; border: 1px solid var(--border); border-radius: 12px; padding: 24px; }
.pt-label { font-size: 0.6rem; font-weight: 700; letter-spacing: 2px; text-transform: uppercase; color: var(--mid); margin-bottom: 16px; }
.pt-arc { display: flex; align-items: center; gap: 4px; margin-bottom: 16px; flex-wrap: wrap; }
.pt-week { width: 22px; height: 22px; border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 0.55rem; font-weight: 700; flex-shrink: 0; }
.pt-past { background: var(--sage3); color: var(--dark); }
.pt-now { background: var(--sage2); color: white; box-shadow: 0 0 0 3px rgba(22,163,74,0.2); }
.pt-future { background: #f1f5f9; color: #94a3b8; }
.pt-info { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; margin-bottom: 14px; }
.pt-stat { background: var(--soft); border-radius: 8px; padding: 10px 12px; }
.pt-stat-label { font-size: 0.58rem; font-weight: 700; color: var(--mid); text-transform: uppercase; letter-spacing: 0.5px; margin-bottom: 3px; }
.pt-stat-val { font-family: 'Gilda Display', serif; font-size: 1rem; color: var(--sage2); }
.pt-next { background: var(--blush); border-radius: 8px; padding: 10px 14px; font-size: 0.78rem; color: var(--dark); font-weight: 600; }
.pt-next span { color: var(--rose); }

/* CLASSES GRID */
.classes { padding: 80px 6%; background: var(--white); }
.sec-head { text-align: center; margin-bottom: 44px; }
.section-eyebrow { font-size: 0.62rem; font-weight: 700; letter-spacing: 3px; text-transform: uppercase; color: var(--sage2); display: block; margin-bottom: 10px; }
.section-title { font-family: 'Gilda Display', serif; font-size: clamp(1.8rem, 3vw, 2.5rem); color: var(--dark); }
.section-title em { font-style: italic; color: var(--sage2); }
.classes-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.class-card { background: var(--soft); border-radius: 12px; padding: 24px 20px; border: 1px solid var(--border); transition: border-color 0.2s, box-shadow 0.2s; }
.class-card:hover { border-color: var(--sage3); box-shadow: 0 4px 18px rgba(74,222,128,0.1); }
.class-icon { font-size: 2rem; margin-bottom: 12px; display: block; }
.class-name { font-family: 'Gilda Display', serif; font-size: 1.05rem; color: var(--dark); margin-bottom: 6px; }
.class-schedule { font-size: 0.72rem; font-weight: 700; color: var(--sage2); text-transform: uppercase; letter-spacing: 0.5px; margin-bottom: 10px; }
.class-desc { font-size: 0.82rem; color: var(--mid); line-height: 1.8; margin-bottom: 12px; }
.class-price { font-size: 0.85rem; font-weight: 700; color: var(--dark); }

/* DOULA SECTION */
.doula-sec { padding: 80px 6%; background: var(--cream); display: grid; grid-template-columns: 1fr 1fr; gap: 56px; align-items: center; }
.doula-img { border-radius: 12px; overflow: hidden; position: relative; }
.doula-img img { width: 100%; display: block; }
.doula-badge { position: absolute; bottom: 18px; left: 18px; background: var(--sage2); color: white; font-size: 0.7rem; font-weight: 700; letter-spacing: 1px; text-transform: uppercase; padding: 6px 14px; border-radius: 100px; }
.doula-text h2 { font-family: 'Gilda Display', serif; font-size: clamp(1.8rem, 3vw, 2.5rem); color: var(--dark); line-height: 1.15; margin-bottom: 14px; }
.doula-text h2 em { font-style: italic; color: var(--sage2); }
.doula-text p { color: var(--mid); font-size: 0.92rem; line-height: 1.9; margin-bottom: 14px; }
.doula-list { list-style: none; display: flex; flex-direction: column; gap: 10px; margin: 18px 0 26px; }
.doula-list li { display: flex; align-items: center; gap: 10px; font-size: 0.88rem; color: var(--dark); font-weight: 600; }
.dl-leaf { color: var(--sage2); flex-shrink: 0; }

/* CTA */
.cta { background: linear-gradient(135deg, var(--sage2) 0%, var(--sage) 100%); padding: 72px 6%; text-align: center; }
.cta h2 { font-family: 'Gilda Display', serif; font-size: clamp(2rem, 4vw, 3rem); color: white; margin-bottom: 12px; }
.cta h2 em { font-style: italic; }
.cta p { color: rgba(255,255,255,0.7); font-size: 0.93rem; line-height: 1.8; max-width: 460px; margin: 0 auto 28px; }
.btn-white { background: white; color: var(--sage2); padding: 13px 30px; border-radius: 100px; font-weight: 700; font-size: 0.9rem; text-decoration: none; display: inline-block; transition: opacity 0.2s; }
.btn-white:hover { opacity: 0.9; }
.cta-contacts { display: flex; flex-direction: column; gap: 6px; margin-top: 24px; align-items: center; }
.cta-contacts a, .cta-contacts span { color: rgba(255,255,255,0.5); font-size: 0.85rem; text-decoration: none; transition: color 0.2s; }
.cta-contacts a:hover { color: white; }

footer { background: var(--dark); padding: 52px 6% 24px; }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1.4fr; gap: 48px; padding-bottom: 28px; border-bottom: 1px solid rgba(255,255,255,0.07); }
.footer-logo-wrap { display: flex; align-items: center; gap: 10px; text-decoration: none; margin-bottom: 12px; }
.footer-logo-wrap svg { width: 30px; height: 30px; }
.footer-logo-name { font-family: 'Gilda Display', serif; font-size: 0.95rem; color: white; }
.footer-tagline { color: rgba(255,255,255,0.25); font-size: 0.84rem; line-height: 1.7; }
.footer-col h4 { font-size: 0.6rem; font-weight: 700; letter-spacing: 2.5px; text-transform: uppercase; color: var(--sage3); margin-bottom: 14px; }
.footer-col ul { list-style: none; }
.footer-col li { margin-bottom: 9px; }
.footer-col a { color: rgba(255,255,255,0.3); text-decoration: none; font-size: 0.84rem; transition: color 0.2s; }
.footer-col a:hover { color: white; }
.footer-bottom { padding-top: 20px; display: flex; justify-content: space-between; flex-wrap: wrap; gap: 8px; color: rgba(255,255,255,0.15); font-size: 0.75rem; }

@media (max-width: 1024px) {
  .hero-top { grid-template-columns: 1fr; }
  .classes-grid { grid-template-columns: 1fr 1fr; }
  .doula-sec { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 768px) {
  nav { padding: 0 4%; }
  .nav-links li:nth-child(-n+2) { display: none; }
  .classes-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; gap: 24px; }
  .footer-bottom { flex-direction: column; }
}
