/* Bloom & Grow — Soft Watercolor Botanical Theme */

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

:root {
  --lavender: #e8d5f5;
  --rose: #c47a7a;
  --sage: #87a878;
  --ivory: #fffff0;
  --white: #ffffff;
  --plum: #4a1942;
  --lavender-light: #f4ecfc;
  --rose-light: #f5e8e8;
  --sage-light: #eaf4e6;
  --shadow-lavender: 0 4px 24px rgba(232, 213, 245, 0.7);
  --shadow-rose: 0 4px 24px rgba(196, 122, 122, 0.2);
  --radius-lg: 20px;
  --radius-md: 16px;
  --radius-sm: 12px;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: Georgia, 'Times New Roman', serif;
  color: var(--plum);
  background: var(--white);
  line-height: 1.7;
  font-size: 17px;
}

/* ── Typography ─────────────────────────────── */
h1, h2, h3, h4 {
  font-family: Georgia, serif;
  color: var(--plum);
  line-height: 1.3;
}

h1 { font-size: clamp(2rem, 5vw, 3.5rem); font-style: italic; }
h2 { font-size: clamp(1.6rem, 3.5vw, 2.4rem); }
h3 { font-size: 1.25rem; }

em, i { color: var(--rose); }

p { margin-bottom: 1rem; }
a { color: var(--rose); text-decoration: none; }
a:hover { text-decoration: underline; }

/* ── Layout ─────────────────────────────────── */
.container {
  max-width: 1160px;
  margin: 0 auto;
  padding: 0 24px;
}

section {
  padding: 72px 0;
}

/* ── Navigation ─────────────────────────────── */
nav {
  background: var(--white);
  border-bottom: 2px solid var(--lavender);
  position: sticky;
  top: 0;
  z-index: 100;
  padding: 18px 0;
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 1160px;
  margin: 0 auto;
  padding: 0 24px;
}

.logo {
  font-family: Georgia, serif;
  font-style: italic;
  font-size: 1.6rem;
  color: var(--plum);
  letter-spacing: 0.01em;
  text-decoration: none;
}

.logo:hover { text-decoration: none; opacity: 0.85; }

.nav-links {
  display: flex;
  gap: 32px;
  list-style: none;
}

.nav-links a {
  color: var(--plum);
  font-size: 0.95rem;
  font-family: Georgia, serif;
  transition: color 0.2s;
}

.nav-links a:hover {
  color: var(--rose);
  text-decoration: none;
}

/* ── Decorative blobs ───────────────────────── */
.blob {
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
  z-index: 0;
}

.blob-lavender {
  background: radial-gradient(circle, rgba(232,213,245,0.6) 0%, rgba(232,213,245,0) 70%);
}

.blob-rose {
  background: radial-gradient(circle, rgba(196,122,122,0.25) 0%, rgba(196,122,122,0) 70%);
}

.blob-sage {
  background: radial-gradient(circle, rgba(135,168,120,0.2) 0%, rgba(135,168,120,0) 70%);
}

/* ── Hero ───────────────────────────────────── */
.hero {
  background: linear-gradient(135deg, var(--white) 0%, var(--lavender-light) 50%, var(--lavender) 100%);
  position: relative;
  overflow: hidden;
  padding: 80px 0 72px;
}

.hero::before {
  content: '';
  position: absolute;
  width: 600px;
  height: 600px;
  top: -150px;
  right: -100px;
  background: radial-gradient(circle, rgba(196,122,122,0.18) 0%, rgba(196,122,122,0) 65%);
  border-radius: 50%;
}

.hero::after {
  content: '';
  position: absolute;
  width: 400px;
  height: 400px;
  bottom: -80px;
  left: -80px;
  background: radial-gradient(circle, rgba(135,168,120,0.15) 0%, rgba(135,168,120,0) 65%);
  border-radius: 50%;
}

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

.hero-text h1 {
  margin-bottom: 20px;
}

.hero-text .subtitle {
  font-size: 1.15rem;
  color: var(--plum);
  opacity: 0.8;
  font-style: italic;
  margin-bottom: 28px;
}

.hero-img {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lavender), 0 0 0 6px rgba(232,213,245,0.4);
  position: relative;
}

.hero-img img {
  width: 100%;
  height: 420px;
  object-fit: cover;
  display: block;
}

.hero-rose-accent {
  position: absolute;
  width: 120px;
  height: 120px;
  background: radial-gradient(circle, var(--rose) 0%, rgba(196,122,122,0.3) 60%, transparent 100%);
  border-radius: 50%;
  top: -30px;
  right: -30px;
  z-index: 2;
}

/* ── Enrollment Form ────────────────────────── */
.enroll-card {
  background: var(--ivory);
  border: 2px solid var(--rose);
  border-radius: var(--radius-lg);
  padding: 36px 32px;
  box-shadow: var(--shadow-rose);
}

.enroll-card h3 {
  font-style: italic;
  margin-bottom: 20px;
  font-size: 1.35rem;
  text-align: center;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
  margin-bottom: 14px;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 6px;
  margin-bottom: 14px;
}

.form-group label {
  font-size: 0.85rem;
  color: var(--plum);
  font-style: italic;
}

.form-group input {
  padding: 11px 14px;
  border: 1.5px solid var(--lavender);
  border-radius: var(--radius-sm);
  font-family: Georgia, serif;
  font-size: 0.95rem;
  color: var(--plum);
  background: var(--white);
  outline: none;
  transition: border-color 0.2s;
}

.form-group input:focus {
  border-color: var(--rose);
}

.form-success {
  display: none;
  background: var(--sage-light);
  border: 1.5px solid var(--sage);
  border-radius: var(--radius-sm);
  padding: 14px 18px;
  text-align: center;
  color: var(--plum);
  font-style: italic;
  margin-top: 12px;
}

/* ── Buttons ─────────────────────────────────── */
.btn-primary {
  background: var(--rose);
  color: var(--white);
  border: none;
  border-radius: var(--radius-sm);
  padding: 13px 28px;
  font-family: Georgia, serif;
  font-size: 1rem;
  cursor: pointer;
  transition: background 0.2s, transform 0.1s;
  width: 100%;
  display: block;
  text-align: center;
  font-style: italic;
}

.btn-primary:hover {
  background: #b56b6b;
  transform: translateY(-1px);
}

.btn-secondary {
  background: transparent;
  color: var(--plum);
  border: 2px solid var(--lavender);
  border-radius: var(--radius-sm);
  padding: 11px 26px;
  font-family: Georgia, serif;
  font-size: 0.95rem;
  cursor: pointer;
  transition: border-color 0.2s, color 0.2s;
  display: inline-block;
  text-align: center;
}

.btn-secondary:hover {
  border-color: var(--rose);
  color: var(--rose);
  text-decoration: none;
}

/* ── Stats ──────────────────────────────────── */
.stats {
  background: linear-gradient(135deg, var(--lavender-light) 0%, var(--white) 100%);
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.stat-card {
  background: var(--white);
  border-radius: var(--radius-md);
  padding: 32px 24px;
  text-align: center;
  box-shadow: var(--shadow-lavender);
  border-top: 4px solid var(--rose);
}

.stat-card:nth-child(2) { border-top-color: var(--sage); }
.stat-card:nth-child(3) { border-top-color: var(--lavender); }
.stat-card:nth-child(4) { border-top-color: var(--rose); }

.stat-value {
  font-size: 1.8rem;
  font-style: italic;
  color: var(--rose);
  display: block;
  margin-bottom: 8px;
}

.stat-label {
  font-size: 0.9rem;
  color: var(--plum);
  opacity: 0.75;
}

/* ── Section Titles ─────────────────────────── */
.section-title {
  text-align: center;
  margin-bottom: 16px;
}

.section-subtitle {
  text-align: center;
  font-style: italic;
  color: var(--plum);
  opacity: 0.7;
  font-size: 1.05rem;
  margin-bottom: 48px;
}

.section-divider {
  width: 64px;
  height: 3px;
  background: linear-gradient(90deg, var(--rose), var(--lavender));
  border-radius: 3px;
  margin: 12px auto 16px;
}

/* ── Modules ─────────────────────────────────── */
.modules {
  background: var(--white);
}

.modules-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.module-card {
  background: var(--white);
  border-radius: var(--radius-md);
  padding: 32px 28px;
  box-shadow: var(--shadow-lavender);
  border-top: 4px solid var(--sage);
  transition: transform 0.2s, box-shadow 0.2s;
  position: relative;
  overflow: hidden;
}

.module-card::after {
  content: '';
  position: absolute;
  top: 0; right: 0;
  width: 80px; height: 80px;
  background: radial-gradient(circle at top right, rgba(232,213,245,0.5) 0%, transparent 70%);
  border-radius: 0 var(--radius-md) 0 80px;
}

.module-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 32px rgba(232,213,245,0.9);
}

.module-num {
  font-size: 2rem;
  color: var(--lavender);
  font-style: italic;
  display: block;
  margin-bottom: 12px;
  line-height: 1;
}

.module-card h3 {
  margin-bottom: 12px;
  font-style: italic;
}

.module-card p {
  font-size: 0.92rem;
  opacity: 0.75;
  margin-bottom: 0;
}

/* ── Photos ──────────────────────────────────── */
.photos {
  background: linear-gradient(135deg, var(--lavender-light) 0%, var(--white) 60%);
}

.photos-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.photo-item {
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-lavender);
}

.photo-item img {
  width: 100%;
  height: 280px;
  object-fit: cover;
  display: block;
  transition: transform 0.4s;
}

.photo-item:hover img {
  transform: scale(1.04);
}

/* ── Pricing ─────────────────────────────────── */
.pricing {
  background: var(--white);
  position: relative;
  overflow: hidden;
}

.pricing::before {
  content: '';
  position: absolute;
  width: 500px;
  height: 500px;
  top: -100px;
  left: -100px;
  background: radial-gradient(circle, rgba(232,213,245,0.35) 0%, transparent 65%);
  border-radius: 50%;
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  position: relative;
  z-index: 1;
}

.price-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 40px 32px;
  box-shadow: var(--shadow-lavender);
  text-align: center;
  transition: transform 0.2s;
  border: 2px solid transparent;
}

.price-card:hover {
  transform: translateY(-5px);
}

.price-card.blossom { border-color: var(--rose); }
.price-card.bloom { border-color: var(--sage); background: linear-gradient(180deg, var(--sage-light) 0%, var(--white) 40%); }
.price-card.flourish { border-color: var(--lavender); background: linear-gradient(180deg, var(--lavender-light) 0%, var(--white) 40%); }

.price-badge {
  display: inline-block;
  padding: 6px 18px;
  border-radius: 30px;
  font-size: 0.8rem;
  font-style: italic;
  margin-bottom: 16px;
}

.blossom .price-badge { background: var(--rose-light); color: var(--rose); }
.bloom .price-badge { background: var(--sage-light); color: #5a8050; }
.flourish .price-badge { background: var(--lavender-light); color: var(--plum); }

.price-name {
  font-size: 1.6rem;
  font-style: italic;
  margin-bottom: 8px;
}

.price-amount {
  font-size: 2.8rem;
  font-style: italic;
  color: var(--rose);
  display: block;
  line-height: 1;
  margin-bottom: 4px;
}

.bloom .price-amount { color: var(--sage); }
.flourish .price-amount { color: var(--plum); }

.price-sub {
  font-size: 0.85rem;
  opacity: 0.6;
  font-style: italic;
  margin-bottom: 24px;
  display: block;
}

.price-features {
  list-style: none;
  text-align: left;
  margin-bottom: 28px;
}

.price-features li {
  padding: 8px 0;
  border-bottom: 1px solid var(--lavender-light);
  font-size: 0.92rem;
  display: flex;
  align-items: center;
  gap: 10px;
}

.price-features li::before {
  content: '✦';
  color: var(--rose);
  font-size: 0.7rem;
  flex-shrink: 0;
}

.bloom .price-features li::before { color: var(--sage); }
.flourish .price-features li::before { color: var(--plum); }

/* ── CTA Section ─────────────────────────────── */
.cta-section {
  background: linear-gradient(135deg, var(--lavender) 0%, var(--rose-light) 50%, var(--lavender-light) 100%);
  text-align: center;
  position: relative;
  overflow: hidden;
}

.cta-section::before {
  content: '';
  position: absolute;
  width: 350px; height: 350px;
  top: -80px; right: -60px;
  background: radial-gradient(circle, rgba(196,122,122,0.2) 0%, transparent 65%);
  border-radius: 50%;
}

.cta-section h2 {
  font-style: italic;
  margin-bottom: 16px;
}

.cta-section p {
  font-size: 1.1rem;
  opacity: 0.8;
  max-width: 560px;
  margin: 0 auto 32px;
  font-style: italic;
}

.cta-buttons {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}

/* ── Footer ──────────────────────────────────── */
footer {
  background: var(--plum);
  color: rgba(255,255,240,0.85);
  padding: 56px 0 32px;
}

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

.footer-brand .logo {
  color: var(--ivory);
  font-size: 1.5rem;
  display: inline-block;
  margin-bottom: 16px;
}

.footer-brand p {
  font-size: 0.88rem;
  opacity: 0.75;
  line-height: 1.7;
}

footer h4 {
  color: var(--lavender);
  font-style: italic;
  margin-bottom: 16px;
  font-size: 1rem;
}

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

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

.footer-links a {
  color: rgba(255,255,240,0.7);
  font-size: 0.9rem;
  transition: color 0.2s;
}

.footer-links a:hover {
  color: var(--lavender);
  text-decoration: none;
}

.footer-bottom {
  border-top: 1px solid rgba(232,213,245,0.2);
  padding-top: 28px;
  font-size: 0.82rem;
  opacity: 0.65;
  line-height: 1.7;
}

.disclaimer {
  background: rgba(255,255,240,0.05);
  border-left: 3px solid var(--lavender);
  padding: 14px 18px;
  margin-bottom: 18px;
  border-radius: 0 8px 8px 0;
  font-style: italic;
}

/* ── Cookie Banner ───────────────────────────── */
#cookie-banner {
  display: none;
  position: fixed;
  bottom: 24px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--white);
  border: 2px solid var(--lavender);
  border-radius: var(--radius-md);
  padding: 20px 28px;
  box-shadow: 0 8px 32px rgba(74,25,66,0.15);
  z-index: 9999;
  max-width: 560px;
  width: calc(100% - 48px);
  align-items: center;
  gap: 20px;
}

#cookie-banner p {
  margin: 0;
  font-size: 0.88rem;
  color: var(--plum);
  flex: 1;
}

#cookie-banner button {
  background: var(--rose);
  color: var(--white);
  border: none;
  border-radius: var(--radius-sm);
  padding: 10px 22px;
  font-family: Georgia, serif;
  font-size: 0.9rem;
  cursor: pointer;
  white-space: nowrap;
  font-style: italic;
  transition: background 0.2s;
}

#cookie-banner button:hover { background: #b56b6b; }

/* ── WhatsApp Float ──────────────────────────── */
.wa-float {
  position: fixed;
  bottom: 28px;
  right: 28px;
  z-index: 9998;
  background: #25d366;
  border-radius: 50%;
  width: 60px;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 20px rgba(37,211,102,0.4);
  transition: transform 0.2s;
  text-decoration: none;
}

.wa-float:hover { transform: scale(1.1); text-decoration: none; }

.wa-float svg {
  width: 32px;
  height: 32px;
  fill: white;
}

/* ── Inner Pages ─────────────────────────────── */
.page-hero {
  background: linear-gradient(135deg, var(--white) 0%, var(--lavender-light) 60%, var(--lavender) 100%);
  padding: 64px 0 48px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.page-hero::before {
  content: '';
  position: absolute;
  width: 400px; height: 400px;
  top: -100px; right: -80px;
  background: radial-gradient(circle, rgba(196,122,122,0.15) 0%, transparent 65%);
  border-radius: 50%;
}

.page-hero h1 {
  position: relative; z-index: 1;
}

.page-hero p {
  position: relative; z-index: 1;
  font-style: italic;
  opacity: 0.75;
  max-width: 500px;
  margin: 0 auto;
}

.content-section {
  max-width: 820px;
  margin: 0 auto;
  padding: 72px 24px;
}

.content-section h2 {
  font-style: italic;
  margin: 36px 0 14px;
  font-size: 1.4rem;
}

.content-section h2:first-child { margin-top: 0; }

.content-section p, .content-section li {
  font-size: 0.97rem;
  line-height: 1.8;
  opacity: 0.85;
}

.content-section ul, .content-section ol {
  padding-left: 24px;
  margin-bottom: 1rem;
}

.content-section li { margin-bottom: 6px; }

/* Contact cards */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
  margin-bottom: 48px;
}

.contact-card {
  background: var(--lavender-light);
  border-radius: var(--radius-md);
  padding: 32px 28px;
  border-left: 4px solid var(--rose);
}

.contact-card h3 {
  font-style: italic;
  margin-bottom: 14px;
}

.contact-card p {
  margin-bottom: 6px;
  font-size: 0.95rem;
}

.contact-form-wrap {
  background: var(--ivory);
  border: 2px solid var(--lavender);
  border-radius: var(--radius-lg);
  padding: 40px 36px;
}

.contact-form-wrap h2 {
  font-style: italic;
  margin-bottom: 24px;
}

/* ── Responsive ──────────────────────────────── */
@media (max-width: 900px) {
  .hero-inner { grid-template-columns: 1fr; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .modules-grid { grid-template-columns: repeat(2, 1fr); }
  .photos-grid { grid-template-columns: repeat(2, 1fr); }
  .pricing-grid { grid-template-columns: 1fr; max-width: 420px; margin: 0 auto; }
  .footer-inner { grid-template-columns: 1fr; gap: 32px; }
  .contact-grid { grid-template-columns: 1fr; }
}

@media (max-width: 600px) {
  .nav-links { display: none; }
  .stats-grid { grid-template-columns: 1fr 1fr; }
  .modules-grid { grid-template-columns: 1fr; }
  .photos-grid { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .hero { padding: 48px 0; }
}
