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

:root {
  /* Palette: Soft Organic Pastel */
  --c-bg: #FDFBF9;
  --c-surface: #FFFFFF;
  --c-surface-alt: #F5F4F0;
  --c-primary: #8BA888; /* Sage Green 108° */
  --c-primary-hover: #759273;
  --c-secondary: #D4B4B4; /* Dusty Rose */
  --c-accent: #C6C4D8; /* Soft Lavender */
  --c-text-main: #2D302E;
  --c-text-muted: #6B706C;
  --c-border: #E8E6E1;

  /* Typography */
  --font-sans: 'Manrope', sans-serif;
  --font-serif: 'DM Serif Display', serif;

  /* Spacing */
  --space-xs: 0.5rem;
  --space-sm: 1rem;
  --space-md: 2rem;
  --space-lg: 4rem;
  --space-xl: 6rem;
  --space-xxl: 8rem;

  /* UI Elements */
  --radius-sm: 6px;
  --radius-md: 16px;
  --radius-lg: 24px;
  --shadow-card: 0 12px 40px rgba(45, 48, 46, 0.06);
  --shadow-hover: 0 20px 50px rgba(45, 48, 46, 0.1);
  --container-width: 1240px;
}

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

html {
  scroll-behavior: smooth;
}

body {
  background-color: var(--c-bg);
  color: var(--c-text-main);
  font-family: var(--font-sans);
  line-height: 1.6;
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
}

/* --- Typography --- */
h1, h2, h3, h4, h5 {
  font-family: var(--font-serif);
  font-weight: 400;
  line-height: 1.1;
  color: var(--c-text-main);
}

h1 { font-size: clamp(2.5rem, 5vw, 4.5rem); letter-spacing: -0.02em; }
h2 { font-size: clamp(2rem, 4vw, 3rem); margin-bottom: var(--space-md); }
h3 { font-size: clamp(1.5rem, 2.5vw, 2rem); margin-bottom: var(--space-sm); }
p { margin-bottom: var(--space-md); color: var(--c-text-muted); }
a { text-decoration: none; color: inherit; transition: color 0.3s ease; }

/* --- Layout Engine --- */
/* The Core Container: Mandated by Prompt */
.wrap {
  width: 100%;
  max-width: var(--container-width);
  margin: 0 auto;
  padding: 0 clamp(1rem, 5vw, 3rem);
}

/* Generic Section Styling */
section {
  display: block;
  padding: var(--space-xl) 0;
}

/* --- Components: Buttons --- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 1rem 2rem;
  border-radius: var(--radius-sm);
  font-weight: 600;
  font-size: 1rem;
  transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
  cursor: pointer;
  border: 1px solid transparent;
}

.btn-primary {
  background-color: var(--c-primary);
  color: #fff;
}

.btn-primary:hover {
  background-color: var(--c-primary-hover);
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(139, 168, 136, 0.3);
}

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

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

/* --- Header / Nav --- */
.site-header {
  padding: var(--space-md) 0;
  position: sticky;
  top: 0;
  background-color: rgba(253, 251, 249, 0.9);
  backdrop-filter: blur(10px);
  z-index: 100;
  border-bottom: 1px solid var(--c-border);
}

.nav-inner {
  display: flex;
  flex-direction: column;
  gap: var(--space-sm);
}

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

.nav-row-bottom {
  display: flex;
  gap: var(--space-md);
  flex-wrap: wrap;
}

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

.logo span { color: var(--c-primary); }

.nav-link {
  font-size: 0.95rem;
  color: var(--c-text-muted);
  font-weight: 500;
}

.nav-link:hover { color: var(--c-primary); }

/* --- Hero Section --- */
.hero-section {
  padding-top: var(--space-xxl);
  padding-bottom: var(--space-xl);
  background: radial-gradient(circle at 80% 20%, #F4F2F7 0%, transparent 40%);
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: var(--space-lg);
  align-items: center;
}

.hero-eyebrow {
  text-transform: uppercase;
  font-size: 0.85rem;
  letter-spacing: 0.1em;
  color: var(--c-primary);
  font-weight: 700;
  margin-bottom: var(--space-sm);
  display: block;
}

.hero-title {
  margin-bottom: var(--space-md);
}

.hero-subtitle {
  font-size: 1.15rem;
  max-width: 540px;
  margin-bottom: var(--space-lg);
}

.hero-actions {
  display: flex;
  gap: var(--space-sm);
  margin-bottom: var(--space-lg);
}

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

.hero-image-wrap img {
  width: 100%;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-card);
  aspect-ratio: 4/3;
  object-fit: cover;
}

/* --- Feature Cards --- */
.card-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: var(--space-md);
}

.card {
  background: var(--c-surface);
  padding: var(--space-md);
  border-radius: var(--radius-md);
  border: 1px solid var(--c-border);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-hover);
  border-color: var(--c-secondary);
}

.card-icon {
  width: 48px;
  height: 48px;
  background-color: var(--c-surface-alt);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: var(--space-sm);
  color: var(--c-primary);
}

/* --- Stats Section --- */
.stats-section {
  background-color: var(--c-primary);
  color: #fff;
  padding: var(--space-xl) 0;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-md);
  text-align: center;
}

.stat-number {
  font-family: var(--font-serif);
  font-size: clamp(2.5rem, 5vw, 4rem);
  display: block;
  margin-bottom: var(--space-xs);
}

.stat-label {
  font-size: 0.9rem;
  opacity: 0.9;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

/* --- CTA Band --- */
.cta-section {
  background-color: var(--c-surface-alt);
  border-radius: var(--radius-lg);
  margin: var(--space-xl) 0;
}

.cta-content {
  text-align: center;
  max-width: 700px;
  margin: 0 auto;
}

/* --- FAQ --- */
.faq-list {
  max-width: 800px;
  margin: 0 auto;
}

.faq-item {
  border-bottom: 1px solid var(--c-border);
  padding: var(--space-md) 0;
}

.faq-question {
  font-weight: 600;
  font-size: 1.1rem;
  margin-bottom: var(--space-xs);
  cursor: pointer;
}

.faq-answer {
  color: var(--c-text-muted);
  font-size: 0.95rem;
}

/* --- Footer --- */
.site-footer {
  background-color: var(--c-surface);
  padding: var(--space-xl) 0 var(--space-md);
  border-top: 1px solid var(--c-border);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: var(--space-lg);
  margin-bottom: var(--space-lg);
}

.footer-brand p {
  font-size: 0.9rem;
  max-width: 250px;
  margin-top: var(--space-sm);
}

.footer-col h4 {
  font-family: var(--font-sans);
  font-size: 0.85rem;
  text-transform: uppercase;
  color: var(--c-text-main);
  margin-bottom: var(--space-md);
  letter-spacing: 0.05em;
}

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

.footer-links li {
  margin-bottom: var(--space-xs);
}

.footer-links a {
  color: var(--c-text-muted);
  font-size: 0.95rem;
}

.footer-links a:hover {
  color: var(--c-primary);
}

.copyright {
  text-align: center;
  font-size: 0.8rem;
  color: var(--c-text-muted);
  border-top: 1px solid var(--c-border);
  padding-top: var(--space-md);
}

/* --- Responsive --- */
@media (max-width: 900px) {
  .nav-row-bottom { display: none; } /* Simplified for demo */
  .hero-grid { grid-template-columns: 1fr; text-align: center; }
  .hero-subtitle { margin-left: auto; margin-right: auto; }
  .hero-actions { justify-content: center; }
  .stats-grid { grid-template-columns: 1fr; gap: var(--space-lg); }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 480px) {
  .footer-grid { grid-template-columns: 1fr; }
  h1 { font-size: 2.5rem; }
}
html{-webkit-text-size-adjust:100%}
*{box-sizing:border-box}
img,svg,video{max-width:100%;height:auto}
