/* ============================================
   ThriveWell Initiative — Main Stylesheet
   ============================================ */

@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,400;0,600;0,700;1,400&family=Nunito:wght@300;400;500;600;700&display=swap');

/* ---- CSS Variables ---- */
:root {
  --primary:       #2C6E5A;
  --primary-dark:  #1E4E3F;
  --primary-light: #4A8F76;
  --accent:        #D4845A;
  --accent-light:  #E8A87C;
  --bg:            #FBF8F4;
  --bg-alt:        #F3EDE5;
  --card-bg:       #FFFFFF;
  --text:          #2D2D2D;
  --text-muted:    #6B7280;
  --text-light:    #9CA3AF;
  --border:        #E5DDD5;
  --white:         #FFFFFF;
  --shadow-sm:     0 2px 8px rgba(44, 110, 90, 0.08);
  --shadow-md:     0 6px 24px rgba(44, 110, 90, 0.12);
  --shadow-lg:     0 12px 40px rgba(44, 110, 90, 0.16);
  --radius:        12px;
  --radius-lg:     20px;
  --radius-xl:     32px;
  --transition:    0.3s ease;
}

/* ---- Reset & Base ---- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; font-size: 16px; }

body {
  font-family: 'Nunito', sans-serif;
  background-color: var(--bg);
  color: var(--text);
  line-height: 1.7;
  overflow-x: hidden;
}

h1, h2, h3, h4, h5 {
  font-family: 'Playfair Display', serif;
  line-height: 1.25;
  color: var(--text);
}

h1 { font-size: clamp(2rem, 5vw, 3.5rem); }
h2 { font-size: clamp(1.6rem, 3.5vw, 2.5rem); }
h3 { font-size: clamp(1.2rem, 2.5vw, 1.6rem); }
h4 { font-size: 1.15rem; }

p { color: var(--text-muted); margin-bottom: 1rem; }
p:last-child { margin-bottom: 0; }

a { color: var(--primary); text-decoration: none; transition: color var(--transition); }
a:hover { color: var(--primary-dark); }

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

ul { list-style: none; }

.container {
  max-width: 1160px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

section { padding: 5rem 0; }

/* ---- Buttons ---- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.85rem 2rem;
  border-radius: 50px;
  font-family: 'Nunito', sans-serif;
  font-weight: 700;
  font-size: 0.95rem;
  cursor: pointer;
  border: 2px solid transparent;
  transition: all var(--transition);
  text-decoration: none;
  white-space: nowrap;
}

.btn-primary {
  background: var(--primary);
  color: var(--white);
  border-color: var(--primary);
}
.btn-primary:hover {
  background: var(--primary-dark);
  border-color: var(--primary-dark);
  color: var(--white);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

.btn-outline {
  background: transparent;
  color: var(--white);
  border-color: rgba(255,255,255,0.7);
}
.btn-outline:hover {
  background: var(--white);
  color: var(--primary);
  border-color: var(--white);
  transform: translateY(-2px);
}

.btn-outline-green {
  background: transparent;
  color: var(--primary);
  border-color: var(--primary);
}
.btn-outline-green:hover {
  background: var(--primary);
  color: var(--white);
  transform: translateY(-2px);
}

.btn-accent {
  background: var(--accent);
  color: var(--white);
  border-color: var(--accent);
}
.btn-accent:hover {
  background: #c27048;
  border-color: #c27048;
  color: var(--white);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

/* ---- Section Header ---- */
.section-header {
  text-align: center;
  max-width: 640px;
  margin: 0 auto 3.5rem;
}

.section-label {
  display: inline-block;
  font-size: 0.78rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--accent);
  margin-bottom: 0.75rem;
}

.section-header h2 { margin-bottom: 1rem; }
.section-header p { font-size: 1.05rem; }

/* ---- Badge / Tag ---- */
.badge {
  display: inline-block;
  padding: 0.3rem 0.85rem;
  border-radius: 50px;
  font-size: 0.78rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}
.badge-green { background: rgba(44,110,90,0.1); color: var(--primary); }
.badge-accent { background: rgba(212,132,90,0.15); color: var(--accent); }

/* ============================================
   NAVIGATION
   ============================================ */
.navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  padding: 1rem 0;
  background: var(--white);
  box-shadow: 0 2px 16px rgba(0,0,0,0.06);
  transition: all var(--transition);
}

.navbar.scrolled {
  backdrop-filter: blur(12px);
  box-shadow: 0 2px 16px rgba(0,0,0,0.1);
  padding: 0.65rem 0;
}

/* Nav links — dark green always */
.navbar .nav-links a          { color: var(--primary-dark); }
.navbar .nav-links a:hover,
.navbar .nav-links a.active   { color: var(--primary); background: rgba(44,110,90,0.08); }
.navbar .hamburger span       { background: var(--primary-dark); }

.navbar-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
}

.logo {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  text-decoration: none;
  flex-shrink: 0;
}

/* Image logo (actual file) */
.logo-image {
  height: 48px;
  width: auto;
  display: block;
  transition: opacity var(--transition);
}
.logo-image:hover { opacity: 0.88; }

/* Fallback text-mark (used in footer and wherever the image is absent) */
.logo-mark {
  width: 44px;
  height: 44px;
  background: var(--primary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  color: var(--white);
  font-weight: 700;
  flex-shrink: 0;
}

.logo-text { line-height: 1.1; }
.logo-text strong {
  display: block;
  font-family: 'Playfair Display', serif;
  font-size: 1.05rem;
  color: var(--white);
}
.logo-text span {
  display: block;
  font-size: 0.72rem;
  color: rgba(255,255,255,0.5);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 0.25rem;
}

.nav-links a {
  padding: 0.45rem 0.85rem;
  border-radius: 50px;
  font-size: 0.9rem;
  font-weight: 600;
  transition: all var(--transition);
}

.nav-cta {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  flex-shrink: 0;
}

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 0.4rem;
  background: none;
  border: none;
}
.hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  border-radius: 2px;
  transition: all var(--transition);
}
.hamburger.open span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

.mobile-menu {
  display: none;
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  background: var(--bg);
  z-index: 999;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  padding: 5rem 2rem 2rem;
}
.mobile-menu.open { display: flex; }

.mobile-menu a {
  font-family: 'Playfair Display', serif;
  font-size: 1.6rem;
  color: var(--text);
  font-weight: 400;
  transition: color var(--transition);
}
.mobile-menu a:hover { color: var(--primary); }
.mobile-menu .mobile-cta { margin-top: 1.5rem; }

/* ============================================
   HERO — HOME
   ============================================ */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  background: linear-gradient(135deg, #1E4E3F 0%, #2C6E5A 45%, #3D7A68 100%);
  padding-top: 5rem;
}

.hero-bg-pattern {
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(circle at 15% 50%, rgba(255,255,255,0.04) 0%, transparent 50%),
    radial-gradient(circle at 85% 30%, rgba(212,132,90,0.12) 0%, transparent 40%),
    radial-gradient(circle at 50% 90%, rgba(255,255,255,0.03) 0%, transparent 50%);
}

.hero-rings {
  position: absolute;
  right: -5%;
  top: 50%;
  transform: translateY(-50%);
  width: 600px;
  height: 600px;
  opacity: 0.06;
}

.hero-rings circle { fill: none; stroke: white; }

.hero-content {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.hero-text { color: var(--white); }

.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.82rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--accent-light);
  margin-bottom: 1.5rem;
}
.hero-eyebrow::before {
  content: '';
  display: block;
  width: 28px;
  height: 2px;
  background: var(--accent-light);
}

.hero-text h1 {
  color: var(--white);
  margin-bottom: 1.25rem;
  font-style: italic;
}

.hero-text h1 em { font-style: normal; color: var(--accent-light); }

.hero-text p {
  color: rgba(255,255,255,0.82);
  font-size: 1.1rem;
  margin-bottom: 2.5rem;
  max-width: 480px;
}

.hero-actions {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

.hero-card {
  background: rgba(255,255,255,0.08);
  backdrop-filter: blur(20px);
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: var(--radius-xl);
  padding: 2.5rem;
  color: var(--white);
}

.hero-stat-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
  margin-bottom: 2rem;
}

.hero-stat {
  text-align: center;
  padding: 1.25rem;
  background: rgba(255,255,255,0.07);
  border-radius: var(--radius);
  border: 1px solid rgba(255,255,255,0.1);
}

.hero-stat strong {
  display: block;
  font-family: 'Playfair Display', serif;
  font-size: 2rem;
  color: var(--accent-light);
  line-height: 1;
  margin-bottom: 0.3rem;
}

.hero-stat span {
  font-size: 0.8rem;
  color: rgba(255,255,255,0.7);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.hero-quote {
  border-top: 1px solid rgba(255,255,255,0.15);
  padding-top: 1.5rem;
  font-style: italic;
  color: rgba(255,255,255,0.8);
  font-size: 0.95rem;
  line-height: 1.6;
}

.hero-quote cite {
  display: block;
  margin-top: 0.5rem;
  font-style: normal;
  font-size: 0.82rem;
  color: var(--accent-light);
  font-weight: 700;
}

/* ============================================
   MISSION STRIP
   ============================================ */
.mission-strip {
  background: var(--primary);
  padding: 3rem 0;
  text-align: center;
}

.mission-strip h2 {
  color: var(--white);
  font-size: clamp(1.4rem, 3vw, 2.1rem);
  font-style: italic;
  margin-bottom: 0.75rem;
}

.mission-strip p {
  color: rgba(255,255,255,0.78);
  max-width: 600px;
  margin: 0 auto;
  font-size: 1.05rem;
}

/* ============================================
   SERVICES CARDS
   ============================================ */
.services-section { background: var(--white); }

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.75rem;
}

.service-card {
  background: var(--bg);
  border-radius: var(--radius-lg);
  padding: 2.25rem;
  border: 1px solid var(--border);
  transition: all var(--transition);
  position: relative;
  overflow: hidden;
}

.service-card::before {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--primary), var(--accent));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform var(--transition);
}

.service-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
  border-color: rgba(44,110,90,0.2);
}

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

.service-icon {
  width: 60px;
  height: 60px;
  background: rgba(44,110,90,0.1);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.5rem;
  font-size: 1.6rem;
}

.service-card h3 {
  margin-bottom: 0.75rem;
  color: var(--primary-dark);
}

.service-card p { font-size: 0.95rem; margin-bottom: 1.5rem; }

.service-card a {
  font-size: 0.88rem;
  font-weight: 700;
  color: var(--primary);
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
}
.service-card a:hover { gap: 0.65rem; }

/* ============================================
   FOUNDER STRIP
   ============================================ */
.founder-section {
  background: linear-gradient(135deg, var(--bg-alt) 0%, #EDE5DA 100%);
}

.founder-inner {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 5rem;
  align-items: center;
}

.founder-image-wrap {
  position: relative;
}

.founder-image-placeholder {
  width: 100%;
  aspect-ratio: 3/4;
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 100%);
  border-radius: var(--radius-xl);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-size: 5rem;
  position: relative;
  overflow: hidden;
}

.founder-photo {
  width: 100%;
  aspect-ratio: 3/4;
  object-fit: cover;
  border-radius: var(--radius-xl);
  display: block;
  box-shadow: var(--shadow-md);
}

.founder-image-placeholder::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 40%;
  background: linear-gradient(to top, rgba(30,78,63,0.6), transparent);
}

.founder-badge {
  position: absolute;
  bottom: -1rem;
  right: -1rem;
  background: var(--white);
  border-radius: var(--radius);
  padding: 1rem 1.25rem;
  box-shadow: var(--shadow-md);
  text-align: center;
}

.founder-badge strong {
  display: block;
  font-family: 'Playfair Display', serif;
  font-size: 1.5rem;
  color: var(--primary);
  line-height: 1;
}

.founder-badge span {
  font-size: 0.78rem;
  color: var(--text-muted);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.founder-content .section-label { text-align: left; }

.founder-content h2 { margin-bottom: 1.25rem; }

.founder-credentials {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
  margin: 1.5rem 0;
}

.cred-tag {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.45rem 0.9rem;
  background: rgba(44,110,90,0.1);
  border-radius: 50px;
  font-size: 0.82rem;
  font-weight: 700;
  color: var(--primary);
}

/* ============================================
   TESTIMONIALS
   ============================================ */
.testimonials-section { background: var(--white); }

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.75rem;
}

.testimonial-card {
  background: var(--bg);
  border-radius: var(--radius-lg);
  padding: 2rem;
  border: 1px solid var(--border);
  position: relative;
}

.quote-mark {
  font-family: 'Playfair Display', serif;
  font-size: 4rem;
  line-height: 0.8;
  color: var(--primary);
  opacity: 0.2;
  margin-bottom: 0.5rem;
}

.testimonial-card blockquote {
  font-size: 0.97rem;
  color: var(--text-muted);
  font-style: italic;
  line-height: 1.7;
  margin-bottom: 1.5rem;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 0.85rem;
}

.author-avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--primary), var(--accent));
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-weight: 700;
  font-size: 0.95rem;
  flex-shrink: 0;
}

.author-info strong { display: block; font-size: 0.9rem; color: var(--text); }
.author-info span { font-size: 0.8rem; color: var(--text-light); }

.star-rating { color: #F59E0B; font-size: 0.85rem; margin-bottom: 0.75rem; }

/* ============================================
   EVENTS PREVIEW
   ============================================ */
.events-section { background: var(--bg-alt); }

.events-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.75rem;
  margin-bottom: 2.5rem;
}

.event-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--border);
  transition: all var(--transition);
}

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

.event-date-band {
  background: var(--primary);
  padding: 1rem 1.5rem;
  display: flex;
  align-items: center;
  gap: 1rem;
}

.event-date-box {
  text-align: center;
  color: white;
}

.event-date-box strong { display: block; font-size: 1.8rem; line-height: 1; font-family: 'Playfair Display', serif; }
.event-date-box span { font-size: 0.78rem; text-transform: uppercase; letter-spacing: 0.1em; opacity: 0.8; }

.event-type-badge {
  margin-left: auto;
  padding: 0.3rem 0.75rem;
  background: rgba(255,255,255,0.15);
  border-radius: 50px;
  font-size: 0.75rem;
  font-weight: 700;
  color: white;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.event-body { padding: 1.5rem; }
.event-body h4 { color: var(--primary-dark); margin-bottom: 0.5rem; }
.event-body p { font-size: 0.88rem; margin-bottom: 1rem; }

.event-meta {
  display: flex;
  flex-direction: column;
  gap: 0.3rem;
  margin-bottom: 1.25rem;
}

.event-meta span {
  font-size: 0.82rem;
  color: var(--text-muted);
  display: flex;
  align-items: center;
  gap: 0.4rem;
  font-weight: 600;
}

.events-footer { text-align: center; }

/* ============================================
   FOOTER CTA STRIP
   ============================================ */
.footer-cta-strip {
  background: linear-gradient(135deg, #1E4E3F 0%, #2C6E5A 100%);
  padding: 5rem 0;
  text-align: center;
}

.footer-cta-strip h2 {
  color: var(--white);
  font-style: italic;
  margin-bottom: 1rem;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.footer-cta-strip p {
  color: rgba(255,255,255,0.78);
  max-width: 520px;
  margin: 0 auto 2.25rem;
  font-size: 1.05rem;
}

/* ============================================
   FOOTER
   ============================================ */
.site-footer {
  background: #141F1B;
  padding: 4rem 0 2rem;
  color: rgba(255,255,255,0.7);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.8fr 1fr 1fr 1fr;
  gap: 3rem;
  margin-bottom: 3rem;
}

.footer-brand .logo { margin-bottom: 1rem; }
.footer-brand .logo-text strong { color: rgba(255,255,255,0.9); }
.footer-brand .logo-text span { color: rgba(255,255,255,0.4); }

.footer-brand p {
  color: rgba(255,255,255,0.55);
  font-size: 0.9rem;
  margin-bottom: 1.5rem;
}

.social-links {
  display: flex;
  gap: 0.75rem;
}

.social-link {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,0.6);
  font-size: 0.95rem;
  transition: all var(--transition);
}
.social-link:hover {
  background: var(--primary);
  border-color: var(--primary);
  color: white;
  transform: translateY(-2px);
}

.footer-col h4 {
  font-family: 'Nunito', sans-serif;
  font-size: 0.82rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: rgba(255,255,255,0.9);
  margin-bottom: 1.25rem;
}

.footer-col ul { display: flex; flex-direction: column; gap: 0.6rem; }

.footer-col ul li a {
  color: rgba(255,255,255,0.55);
  font-size: 0.9rem;
  transition: color var(--transition);
}
.footer-col ul li a:hover { color: var(--accent-light); }

.footer-contact-item {
  display: flex;
  align-items: flex-start;
  gap: 0.6rem;
  font-size: 0.88rem;
  color: rgba(255,255,255,0.55);
  margin-bottom: 0.75rem;
}
.footer-contact-item span:first-child { font-size: 1rem; flex-shrink: 0; margin-top: 0.1rem; }

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.08);
  padding-top: 2rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
}

.footer-bottom p {
  color: rgba(255,255,255,0.35);
  font-size: 0.82rem;
  margin: 0;
}

.footer-bottom-links {
  display: flex;
  gap: 1.5rem;
}
.footer-bottom-links a {
  color: rgba(255,255,255,0.35);
  font-size: 0.82rem;
  transition: color var(--transition);
}
.footer-bottom-links a:hover { color: rgba(255,255,255,0.7); }

/* ============================================
   PAGE HERO (inner pages)
   ============================================ */
.page-hero {
  background: linear-gradient(135deg, #1E4E3F 0%, #2C6E5A 100%);
  padding: 8rem 0 4.5rem;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.page-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(circle at 20% 80%, rgba(212,132,90,0.1) 0%, transparent 40%),
    radial-gradient(circle at 80% 20%, rgba(255,255,255,0.04) 0%, transparent 40%);
}

.page-hero-content { position: relative; z-index: 2; }

.page-hero .section-label { color: var(--accent-light); }

.page-hero h1 {
  color: var(--white);
  font-style: italic;
  margin-bottom: 1rem;
}

.page-hero p {
  color: rgba(255,255,255,0.78);
  font-size: 1.1rem;
  max-width: 580px;
  margin: 0 auto;
}

/* ============================================
   ABOUT PAGE
   ============================================ */
.about-story { background: var(--white); }

.about-inner {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 5rem;
  align-items: center;
}

.about-text .section-label { text-align: left; }
.about-text h2 { margin-bottom: 1.25rem; }

.about-pull-quote {
  background: var(--bg-alt);
  border-left: 4px solid var(--primary);
  border-radius: 0 var(--radius) var(--radius) 0;
  padding: 1.5rem 1.75rem;
  margin: 1.75rem 0;
  font-style: italic;
  font-size: 1.05rem;
  color: var(--text);
  font-family: 'Playfair Display', serif;
  line-height: 1.6;
}

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

.values-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.75rem;
  max-width: 900px;
  margin: 0 auto;
}

.value-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 2rem;
  border: 1px solid var(--border);
  display: flex;
  gap: 1.25rem;
  align-items: flex-start;
  transition: all var(--transition);
}

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

.value-icon {
  width: 52px;
  height: 52px;
  border-radius: var(--radius);
  background: rgba(44,110,90,0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  flex-shrink: 0;
}

.value-card h3 { color: var(--primary); margin-bottom: 0.4rem; font-size: 1.1rem; }
.value-card p { font-size: 0.92rem; margin: 0; }

/* ============================================
   SERVICES PAGE
   ============================================ */
.services-page { background: var(--white); }

.service-block {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 4rem;
  align-items: center;
  padding: 4rem 0;
  border-bottom: 1px solid var(--border);
}

.service-block:last-child { border-bottom: none; }

.service-block.reverse { direction: rtl; }
.service-block.reverse > * { direction: ltr; }

.service-block-image {
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 100%);
  border-radius: var(--radius-xl);
  aspect-ratio: 4/3;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 5rem;
  position: relative;
  overflow: hidden;
}

.service-block-image::after {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(255,255,255,0.05);
  background-image: radial-gradient(circle at 70% 30%, rgba(255,255,255,0.1) 0%, transparent 50%);
}

.service-block-content .badge { margin-bottom: 1rem; }
.service-block-content h2 { margin-bottom: 1rem; }

.service-features {
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
  margin: 1.5rem 0;
}

.service-feature {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 0.92rem;
  color: var(--text-muted);
  font-weight: 500;
}
.service-feature::before {
  content: '';
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: rgba(44,110,90,0.12);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 20 20' fill='%232C6E5A'%3E%3Cpath fill-rule='evenodd' d='M16.707 5.293a1 1 0 010 1.414l-8 8a1 1 0 01-1.414 0l-4-4a1 1 0 011.414-1.414L8 12.586l7.293-7.293a1 1 0 011.414 0z' clip-rule='evenodd'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-size: 12px;
  background-position: center;
}

.service-pricing {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(44,110,90,0.08);
  border-radius: 50px;
  padding: 0.5rem 1rem;
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--primary);
  margin-top: 0.5rem;
}

/* ============================================
   WORKSHOPS PAGE
   ============================================ */
.workshops-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
}

.workshop-card {
  background: var(--white);
  border-radius: var(--radius-xl);
  overflow: hidden;
  border: 1px solid var(--border);
  transition: all var(--transition);
}

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

.workshop-card-header {
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 100%);
  padding: 2rem;
  position: relative;
}

.workshop-card-header .event-date-box {
  text-align: left;
  margin-bottom: 1rem;
}

.workshop-card-header h3 {
  color: white;
  font-size: 1.3rem;
  margin-bottom: 0.5rem;
}

.workshop-card-header p {
  color: rgba(255,255,255,0.78);
  font-size: 0.88rem;
  margin: 0;
}

.workshop-card-body { padding: 1.75rem; }

.workshop-meta {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.75rem;
  margin-bottom: 1.5rem;
}

.workshop-meta-item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.85rem;
  color: var(--text-muted);
  font-weight: 500;
}

.workshop-topics {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-bottom: 1.5rem;
}

.workshop-topic-tag {
  padding: 0.3rem 0.75rem;
  background: rgba(44,110,90,0.08);
  border-radius: 50px;
  font-size: 0.78rem;
  font-weight: 700;
  color: var(--primary);
}

/* ============================================
   RESOURCES PAGE
   ============================================ */
.resources-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.75rem;
}

.resource-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 2rem;
  border: 1px solid var(--border);
  transition: all var(--transition);
  display: flex;
  flex-direction: column;
}

.resource-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
  border-color: rgba(44,110,90,0.2);
}

.resource-icon {
  width: 56px;
  height: 56px;
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  margin-bottom: 1.25rem;
}

.resource-icon.green { background: rgba(44,110,90,0.1); }
.resource-icon.amber { background: rgba(212,132,90,0.1); }
.resource-icon.blue  { background: rgba(59,130,246,0.1); }
.resource-icon.rose  { background: rgba(244,63,94,0.1); }
.resource-icon.purple { background: rgba(139,92,246,0.1); }

.resource-card h3 { font-size: 1.05rem; margin-bottom: 0.6rem; }
.resource-card p { font-size: 0.88rem; flex: 1; margin-bottom: 1.5rem; }

.resource-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.resource-type {
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--text-light);
}

.resource-download-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--primary);
  transition: all var(--transition);
}
.resource-download-btn:hover { gap: 0.65rem; color: var(--primary-dark); }

/* ============================================
   CONTACT / GET SUPPORT PAGE
   ============================================ */
.support-section { background: var(--white); }

.support-inner {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 5rem;
  align-items: start;
}

.support-info h2 { margin-bottom: 1rem; }

.support-cards {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-top: 2rem;
}

.support-card {
  background: var(--bg);
  border-radius: var(--radius);
  padding: 1.25rem 1.5rem;
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  border: 1px solid var(--border);
}

.support-card-icon {
  width: 42px;
  height: 42px;
  border-radius: var(--radius);
  background: rgba(44,110,90,0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  flex-shrink: 0;
}

.support-card h4 { font-size: 0.9rem; color: var(--primary); margin-bottom: 0.2rem; font-family: 'Nunito', sans-serif; font-weight: 700; }
.support-card p { font-size: 0.85rem; margin: 0; }

.support-card a { color: var(--text-muted); font-weight: 600; }
.support-card a:hover { color: var(--primary); }

.crisis-notice {
  background: rgba(212,132,90,0.1);
  border: 1px solid rgba(212,132,90,0.3);
  border-radius: var(--radius);
  padding: 1rem 1.25rem;
  font-size: 0.85rem;
  color: #7C4A2A;
  margin-top: 1.5rem;
  line-height: 1.6;
}

.crisis-notice strong { display: block; margin-bottom: 0.25rem; font-weight: 700; }

/* ---- Contact Form ---- */
.contact-form-wrap {
  background: var(--bg);
  border-radius: var(--radius-xl);
  padding: 2.5rem;
  border: 1px solid var(--border);
}

.contact-form-wrap h3 { margin-bottom: 0.4rem; }
.contact-form-wrap > p { margin-bottom: 2rem; font-size: 0.92rem; }

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

.form-group { margin-bottom: 1.25rem; }

.form-group label {
  display: block;
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 0.4rem;
}

.form-group .required { color: var(--accent); }

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 0.8rem 1rem;
  border: 1.5px solid var(--border);
  border-radius: var(--radius);
  font-family: 'Nunito', sans-serif;
  font-size: 0.92rem;
  color: var(--text);
  background: var(--white);
  transition: border-color var(--transition), box-shadow var(--transition);
  outline: none;
  appearance: none;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(44,110,90,0.1);
}

.form-group textarea { resize: vertical; min-height: 120px; }

.form-group input::placeholder,
.form-group textarea::placeholder { color: var(--text-light); }

.form-submit { margin-top: 0.5rem; }

.form-note {
  margin-top: 0.75rem;
  font-size: 0.78rem;
  color: var(--text-light);
  display: flex;
  align-items: center;
  gap: 0.35rem;
}

/* ============================================
   SUCCESS / ALERT
   ============================================ */
.alert {
  padding: 1rem 1.25rem;
  border-radius: var(--radius);
  margin-bottom: 1.5rem;
  font-size: 0.9rem;
  font-weight: 600;
}
.alert-success { background: rgba(44,110,90,0.1); color: var(--primary); border: 1px solid rgba(44,110,90,0.2); }
.alert-error   { background: rgba(220,38,38,0.08); color: #DC2626; border: 1px solid rgba(220,38,38,0.2); }

/* ============================================
   BREADCRUMB
   ============================================ */
.breadcrumb {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.82rem;
  color: rgba(255,255,255,0.55);
  margin-bottom: 1rem;
}
.breadcrumb a { color: rgba(255,255,255,0.55); }
.breadcrumb a:hover { color: rgba(255,255,255,0.9); }
.breadcrumb span { color: rgba(255,255,255,0.35); }

/* ============================================
   UTILITIES
   ============================================ */
.text-center { text-align: center; }
.text-left   { text-align: left; }
.mt-1  { margin-top: 0.5rem; }
.mt-2  { margin-top: 1rem; }
.mt-3  { margin-top: 1.5rem; }
.mt-4  { margin-top: 2rem; }
.mb-0  { margin-bottom: 0; }

/* ============================================
   RESPONSIVE
   ============================================ */
@media (max-width: 1024px) {
  .hero-content { grid-template-columns: 1fr; gap: 3rem; }
  .hero-card { display: none; }
  .hero-text { text-align: center; }
  .hero-text p { max-width: 100%; }
  .hero-actions { justify-content: center; }
  .hero-eyebrow { display: flex; justify-content: center; }

  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .founder-inner { grid-template-columns: 1fr; gap: 3rem; }
  .founder-image-wrap { max-width: 380px; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .testimonials-grid { grid-template-columns: repeat(2, 1fr); }
  .about-inner { grid-template-columns: 1fr; gap: 3rem; }
  .service-block { grid-template-columns: 1fr; gap: 2.5rem; }
  .service-block.reverse { direction: ltr; }
  .support-inner { grid-template-columns: 1fr; gap: 3rem; }
  .resources-grid { grid-template-columns: repeat(2, 1fr); }
  .workshops-grid { grid-template-columns: 1fr; }
}

@media (max-width: 768px) {
  section { padding: 3.5rem 0; }
  .nav-links, .nav-cta { display: none; }
  .hamburger { display: flex; }
  .services-grid { grid-template-columns: 1fr; }
  .events-grid { grid-template-columns: 1fr; }
  .testimonials-grid { grid-template-columns: 1fr; }
  .values-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; gap: 2rem; }
  .footer-bottom { flex-direction: column; text-align: center; }
  .form-row { grid-template-columns: 1fr; }
  .resources-grid { grid-template-columns: 1fr; }
  .workshop-meta { grid-template-columns: 1fr; }
}

/* ============================================
   SCROLL TO TOP BUTTON
   ============================================ */
.scroll-top {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  z-index: 900;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--primary);
  color: var(--white);
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 16px rgba(44,110,90,0.35);
  opacity: 0;
  visibility: hidden;
  transform: translateY(12px);
  transition: opacity 0.3s ease, visibility 0.3s ease, transform 0.3s ease, background 0.3s ease;
}

.scroll-top.visible {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.scroll-top:hover {
  background: var(--primary-dark);
  box-shadow: 0 6px 22px rgba(44,110,90,0.45);
  transform: translateY(-3px);
}

.scroll-top svg {
  width: 20px;
  height: 20px;
  stroke: currentColor;
  fill: none;
  stroke-width: 2.5;
  stroke-linecap: round;
  stroke-linejoin: round;
}
