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

:root {
  /* Palette: Soft Muted Greens, Warm Sand, Deep Navy */
  --hue-primary: 162;
  
  --c-surface: #FDFDFB;
  --c-surface-alt: #F4F7F6; /* Very subtle green-tinted grey */
  --c-surface-card: #FFFFFF;
  
  --c-text-main: #1D2D3E; /* Deep Navy */
  --c-text-muted: #5C6B77;
  --c-text-inv: #FFFFFF;
  
  --c-primary: #2F6F58; /* Deep Muted Green */
  --c-primary-light: #E8F1EE;
  --c-primary-hover: #245745;
  
  --c-accent: #C2A889; /* Warm Sand */
  --c-accent-hover: #B09475;
  
  --c-border: #E6E9EB;
  
  /* Typography */
  --ff-display: 'Playfair Display', serif;
  --ff-body: 'Manrope', sans-serif;
  
  /* Spacing Scale */
  --sp-xs: clamp(0.5rem, 0.8vw, 0.75rem);
  --sp-sm: clamp(0.75rem, 1vw, 1rem);
  --sp-md: clamp(1rem, 2vw, 1.5rem);
  --sp-lg: clamp(1.5rem, 3vw, 2.5rem);
  --sp-xl: clamp(2rem, 5vw, 4rem);
  --sp-2xl: clamp(4rem, 8vw, 8rem);
  
  /* UI Physics */
  --radius-sm: 6px;
  --radius-md: 12px;
  --radius-lg: 24px;
  --shadow-card: 0 10px 40px -10px rgba(29, 45, 62, 0.08);
  --shadow-hover: 0 20px 40px -10px rgba(29, 45, 62, 0.12);
  --transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
}

/* Reset & Base */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  background-color: var(--c-surface);
  color: var(--c-text-main);
  font-family: var(--ff-body);
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

img, picture, video, canvas, svg { display: block; max-width: 100%; height: auto; }
input, button, textarea, select { font: inherit; }
a { text-decoration: none; color: inherit; transition: var(--transition); }
ul { list-style: none; }

/* Typography */
h1, h2, h3, h4 {
  font-family: var(--ff-display);
  color: var(--c-text-main);
  font-weight: 600;
  line-height: 1.2;
  letter-spacing: -0.02em;
}

h1 { font-size: clamp(2.5rem, 5vw, 4.5rem); margin-bottom: var(--sp-md); }
h2 { font-size: clamp(2rem, 4vw, 3rem); margin-bottom: var(--sp-sm); }
h3 { font-size: clamp(1.25rem, 2vw, 1.5rem); margin-bottom: var(--sp-xs); }
h4 { font-size: 1.125rem; font-weight: 600; margin-bottom: var(--sp-xs); }

p { margin-bottom: var(--sp-md); max-width: 65ch; }
.lead { font-size: clamp(1.1rem, 1.5vw, 1.35rem); color: var(--c-text-muted); line-height: 1.7; font-weight: 300; }
.text-center { text-align: center; }
.mx-auto { margin-left: auto; margin-right: auto; }

/* Utility: Container */
/* MANDATORY PATTERN: The container defines the width limits */
.w-container {
  width: 100%;
  max-width: 1280px;
  margin: 0 auto;
  padding-inline: clamp(1rem, 5vw, 2rem);
}

/* Layout: Grids */
.u-grid { display: grid; gap: var(--sp-lg); }
.u-grid--2 { grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); }
.u-grid--3 { grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); }
.u-grid--4 { grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); }
.u-grid--center { place-items: center; }

/* Header & Nav */
.s-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgba(253, 253, 251, 0.9);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--c-border);
  padding-block: var(--sp-sm);
}

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

.h-brand {
  font-family: var(--ff-display);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--c-primary);
  letter-spacing: -0.03em;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.h-nav { display: flex; gap: var(--sp-lg); align-items: center; }
.h-link {
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--c-text-main);
  position: relative;
}
.h-link::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0%;
  height: 1px;
  background-color: var(--c-primary);
  transition: var(--transition);
}
.h-link:hover { color: var(--c-primary); }
.h-link:hover::after { width: 100%; }

.h-cta-btn {
  background-color: var(--c-text-main);
  color: #fff;
  padding: 0.6em 1.2em;
  border-radius: var(--radius-sm);
  font-weight: 500;
  font-size: 0.9rem;
}
.h-cta-btn:hover { background-color: var(--c-primary); }

/* Mobile Menu Toggle (Hidden on desktop) */
.h-toggle { display: none; background: none; border: none; cursor: pointer; }

@media (max-width: 768px) {
  .h-nav { display: none; } /* Simplified for this output, ideally a drawer */
  .h-toggle { display: block; }
  .h-wrap { padding: 0; }
}

/* Components: Buttons */
.c-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 1em 2em;
  border-radius: var(--radius-sm);
  font-weight: 500;
  cursor: pointer;
  transition: var(--transition);
  border: 1px solid transparent;
}

.c-btn--primary {
  background-color: var(--c-primary);
  color: var(--c-text-inv);
}
.c-btn--primary:hover {
  background-color: var(--c-primary-hover);
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(47, 111, 88, 0.3);
}

.c-btn--outline {
  background-color: transparent;
  border-color: var(--c-text-main);
  color: var(--c-text-main);
}
.c-btn--outline:hover {
  background-color: var(--c-text-main);
  color: var(--c-text-inv);
}

/* Components: Cards */
.c-card {
  background: var(--c-surface-card);
  padding: var(--sp-lg);
  border-radius: var(--radius-md);
  border: 1px solid var(--c-border);
  transition: var(--transition);
  height: 100%;
  display: flex;
  flex-direction: column;
}
.c-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-card);
  border-color: var(--c-primary-light);
}

/* Sections General */
.s-section {
  padding-block: var(--sp-2xl);
}
.s-section--alt { background-color: var(--c-surface-alt); }

/* Hero Specifics */
.hero-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: var(--sp-xl);
  align-items: center;
  min-height: 80vh;
}
.hero-content { display: flex; flex-direction: column; align-items: flex-start; }
.hero-eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-size: 0.85rem;
  color: var(--c-primary);
  font-weight: 700;
  margin-bottom: var(--sp-sm);
}
.hero-img-wrap {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-card);
}
.hero-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Stats Row */
.stat-item { text-align: center; }
.stat-number {
  display: block;
  font-family: var(--ff-display);
  font-size: clamp(2.5rem, 4vw, 3.5rem);
  color: var(--c-primary);
  line-height: 1;
  margin-bottom: var(--sp-xs);
}
.stat-label {
  font-size: 0.9rem;
  color: var(--c-text-muted);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

/* FAQ */
.c-faq-item {
  border-bottom: 1px solid var(--c-border);
  padding: var(--sp-md) 0;
}
.c-faq-q {
  font-family: var(--ff-display);
  font-size: 1.2rem;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
}
.c-faq-a {
  margin-top: var(--sp-sm);
  color: var(--c-text-muted);
  display: none; /* JS toggle needed usually, using details/summary in HTML */
}
details.c-faq-item summary {
  list-style: none;
  font-family: var(--ff-display);
  font-size: 1.2rem;
  padding-block: var(--sp-sm);
  cursor: pointer;
}
details.c-faq-item p {
  padding-bottom: var(--sp-md);
  color: var(--c-text-muted);
}

/* Footer */
.s-footer {
  background-color: var(--c-text-main);
  color: var(--c-surface-alt);
  padding-block: var(--sp-2xl);
}
.f-link { color: rgba(255,255,255,0.7); font-size: 0.9rem; display: block; margin-bottom: 0.5rem; }
.f-link:hover { color: #fff; transform: translateX(4px); }
.f-heading { color: #fff; font-family: var(--ff-body); font-size: 1rem; font-weight: 600; margin-bottom: var(--sp-md); }
.f-bottom {
  margin-top: var(--sp-xl);
  padding-top: var(--sp-lg);
  border-top: 1px solid rgba(255,255,255,0.1);
  display: flex;
  justify-content: space-between;
  font-size: 0.85rem;
  color: rgba(255,255,255,0.5);
}

/* Responsive Tweaks */
@media (max-width: 900px) {
  .hero-grid { grid-template-columns: 1fr; text-align: center; align-items: normal; }
  .hero-content { align-items: center; margin-bottom: var(--sp-lg); }
  .hero-buttons { justify-content: center; }
}
img,svg,video{max-width:100%;height:auto}
body{margin:0}
*{box-sizing:border-box}
