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

/* --- RESET & VARIABLES --- */
:root {
  /* Palette */
  --c-bg-body: #F9F7F2; /* Warm Ivory */
  --c-bg-white: #FFFFFF;
  --c-bg-sage: #E8F0EB; /* Pastel Sage */
  --c-bg-lavender: #F0EFF4; /* Muted Lavender */
  --c-bg-terracotta: #F4EAE6; /* Soft Terracotta */
  
  --c-text-main: #2C3333; /* Charcoal */
  --c-text-muted: #5A6565;
  --c-text-accent: #4B3D66; /* Deep Lavender/Purple */
  
  --c-primary: #6C5B7B; /* Primary Hue ~252 */
  --c-primary-light: #8E7FA3;
  --c-primary-dark: #4B3D66;
  
  --c-success: #6B9080;
  --c-border: #E3E1DB;

  /* Typography */
  --font-serif: 'Playfair Display', serif;
  --font-sans: 'Manrope', sans-serif;
  
  --fs-h1: clamp(2.5rem, 5vw, 4.5rem);
  --fs-h2: clamp(2rem, 4vw, 3rem);
  --fs-h3: clamp(1.25rem, 2vw, 1.75rem);
  --fs-body: clamp(1rem, 1.2vw, 1.125rem);
  --fs-small: 0.875rem;

  /* Spacing */
  --space-section: clamp(4rem, 8vw, 8rem);
  --space-block: 2rem;
  
  /* UI Language */
  --radius-sm: 8px;
  --radius-md: 24px;
  --radius-lg: 40px;
  --radius-pill: 999px;
  
  --shadow-soft: 0 20px 40px -10px rgba(108, 91, 123, 0.08);
  --shadow-card: 0 4px 12px rgba(0,0,0,0.03);
  
  --container-width: 1200px;
  --container-pad: clamp(1.5rem, 5vw, 4rem);
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  background-color: var(--c-bg-body);
  color: var(--c-text-main);
  font-family: var(--font-sans);
  font-size: var(--fs-body);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

img, svg { display: block; max-width: 100%; height: auto; }
a { text-decoration: none; color: inherit; transition: color 0.3s ease; }
ul { list-style: none; }

/* --- UTILITIES --- */
.container {
  width: 100%;
  max-width: var(--container-width);
  margin-inline: auto;
  padding-inline: var(--container-pad);
}

.text-center { text-align: center; }
.text-accent { color: var(--c-text-accent); }
.text-muted { color: var(--c-text-muted); }

/* --- TYPOGRAPHY --- */
h1, h2, h3, h4 {
  font-family: var(--font-serif);
  font-weight: 600;
  color: var(--c-text-main);
  line-height: 1.2;
  margin-bottom: 1rem;
}

h1 { font-size: var(--fs-h1); letter-spacing: -0.02em; }
h2 { font-size: var(--fs-h2); }
h3 { font-size: var(--fs-h3); margin-bottom: 0.75rem; }

.eyebrow {
  font-family: var(--font-sans);
  text-transform: uppercase;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  color: var(--c-text-accent);
  margin-bottom: 1rem;
  display: block;
}

.lead {
  font-size: 1.25rem;
  line-height: 1.6;
  color: var(--c-text-muted);
  max-width: 65ch;
}

/* --- COMPONENTS --- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 1rem 2.5rem;
  border-radius: var(--radius-pill);
  font-weight: 600;
  font-size: 0.95rem;
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
  border: none;
}

.btn--primary {
  background-color: var(--c-primary);
  color: #fff;
  box-shadow: 0 8px 20px rgba(108, 91, 123, 0.25);
}
.btn--primary:hover {
  background-color: var(--c-primary-dark);
  transform: translateY(-2px);
  box-shadow: 0 12px 25px rgba(108, 91, 123, 0.35);
}

.btn--outline {
  background: transparent;
  border: 2px solid var(--c-primary);
  color: var(--c-primary);
}
.btn--outline:hover {
  background: var(--c-primary);
  color: #fff;
}

.card {
  background: var(--c-bg-white);
  border-radius: var(--radius-md);
  padding: 2.5rem;
  border: 1px solid var(--c-border);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  height: 100%;
  display: flex;
  flex-direction: column;
}
.card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-soft);
  border-color: var(--c-primary-light);
}
.card__icon {
  width: 48px;
  height: 48px;
  background: var(--c-bg-sage);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.5rem;
  color: var(--c-success);
}

/* --- HEADER & NAV --- */
.site-header {
  padding-block: 1.5rem;
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(249, 247, 242, 0.85);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(0,0,0,0.03);
}

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

.nav__logo {
  font-family: var(--font-serif);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--c-text-main);
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.nav__links {
  display: flex;
  gap: 2.5rem;
}

.nav__link {
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--c-text-muted);
  position: relative;
}
.nav__link::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--c-primary);
  transition: width 0.3s ease;
}
.nav__link:hover { color: var(--c-primary); }
.nav__link:hover::after { width: 100%; }

/* Mobile Toggle (Hidden on Desktop) */
.nav__toggle { display: none; background: none; border: none; font-size: 1.5rem; }

/* --- HERO SECTION --- */
.hero {
  padding-block: var(--space-section);
  background: radial-gradient(circle at top right, var(--c-bg-lavender) 0%, transparent 40%),
              radial-gradient(circle at bottom left, var(--c-bg-sage) 0%, transparent 40%);
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 4rem;
  align-items: center;
}

.hero__content {
  max-width: 600px;
}

.hero__buttons {
  display: flex;
  gap: 1rem;
  margin-top: 2rem;
}

.hero__visual {
  position: relative;
}

.hero__img {
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-soft);
  /* Organic blob shape */
  clip-path: polygon(10% 0, 100% 0, 100% 90%, 90% 100%, 0 100%, 0 10%);
}

/* --- SECTIONS --- */
.section {
  padding-block: var(--space-section);
}
.section--alt { background-color: var(--c-bg-white); }

/* --- STATS --- */
.stats-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  text-align: center;
}
.stat__number {
  font-family: var(--font-serif);
  font-size: 3.5rem;
  color: var(--c-primary);
  line-height: 1;
  margin-bottom: 0.5rem;
}
.stat__label {
  font-size: 0.9rem;
  color: var(--c-text-muted);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

/* --- FAQ --- */
.faq-list {
  max-width: 800px;
  margin: 0 auto;
}
.faq-item {
  border-bottom: 1px solid var(--c-border);
  padding-block: 1.5rem;
}
.faq-question {
  font-weight: 600;
  font-size: 1.1rem;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  color: var(--c-text-main);
}
.faq-answer {
  margin-top: 1rem;
  color: var(--c-text-muted);
  line-height: 1.6;
}

/* --- FOOTER --- */
.site-footer {
  background-color: #2A2E35; /* Dark soft contrast */
  color: #D1D5DB;
  padding-block: 5rem;
  border-top-left-radius: var(--radius-lg);
  border-top-right-radius: var(--radius-lg);
  margin-top: 4rem;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 4rem;
}
.footer__brand {
  font-family: var(--font-serif);
  font-size: 1.5rem;
  color: #fff;
  margin-bottom: 1rem;
  display: block;
}
.footer__col h4 {
  color: #fff;
  font-size: 1rem;
  margin-bottom: 1.5rem;
  font-family: var(--font-sans);
  text-transform: uppercase;
  letter-spacing: 0.1em;
}
.footer__link {
  display: block;
  margin-bottom: 0.75rem;
  font-size: 0.95rem;
  transition: color 0.2s;
}
.footer__link:hover { color: var(--c-primary-light); }

/* --- RESPONSIVE --- */
@media (max-width: 900px) {
  .nav__links { display: none; } /* Simplified for example */
  .nav__toggle { display: block; }
  
  .hero-grid { grid-template-columns: 1fr; text-align: center; }
  .hero__buttons { justify-content: center; }
  .hero__visual { order: -1; max-width: 80%; margin: 0 auto; }
  
  .stats-grid { grid-template-columns: 1fr; gap: 3rem; }
  
  .footer-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 600px) {
  .hero__buttons { flex-direction: column; width: 100%; }
  .btn { width: 100%; }
  .footer-grid { grid-template-columns: 1fr; }
}img,svg,video{max-width:100%;height:auto}html{-webkit-text-size-adjust:100%}*{box-sizing:border-box}