:root {
  --sage: #7CA06B;
  --sage-dark: #4A6B3E;
  --sage-light: #D6E8CE;
  --sage-pale: #E8F3E0;
  --beige: #F5F0E8;
  --beige-dark: #E8DFD0;
  --cream: #FAF7F2;
  --white: #FFFEFC;
  --terracotta: #C9A87C;
  --terracotta-dark: #B8935E;
  --gold: #D4A574;
  --text-dark: #2C2C2C;
  --text-muted: #6B6B6B;
  --text-light: #8A8A8A;
  --shadow-sm: 0 2px 8px rgba(74, 107, 62, 0.08);
  --shadow-md: 0 8px 30px rgba(74, 107, 62, 0.1);
  --shadow-lg: 0 20px 60px rgba(74, 107, 62, 0.12);
  --gradient-hero: linear-gradient(135deg, #E8F3E0 0%, #F5F0E8 40%, #E8DFD0 100%);
  --gradient-meditation: linear-gradient(135deg, #4A6B3E 0%, #7CA06B 50%, #B8935E 100%);
  --gradient-sage: linear-gradient(135deg, #7CA06B, #4A6B3E);
  --gradient-warm: linear-gradient(135deg, #C9A87C, #D4A574);
  --font-heading: 'Playfair Display', Georgia, serif;
  --font-body: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  --transition: 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  --transition-fast: 0.25s ease;
  --radius: 16px;
  --radius-sm: 8px;
}

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

html {
  scroll-behavior: smooth;
  scroll-padding-top: 80px;
}

body {
  font-family: var(--font-body);
  color: var(--text-dark);
  background: var(--cream);
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

img { max-width: 100%; height: auto; display: block; }
a { text-decoration: none; color: inherit; transition: var(--transition-fast); }
ul { list-style: none; }

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

.section {
  padding: 100px 0;
  position: relative;
}

.section-header {
  text-align: center;
  max-width: 650px;
  margin: 0 auto 60px;
}

.section-tag {
  display: inline-block;
  font-family: var(--font-body);
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--sage);
  background: var(--sage-pale);
  padding: 6px 20px;
  border-radius: 50px;
  margin-bottom: 16px;
}

.section-title {
  font-family: var(--font-heading);
  font-size: 2.8rem;
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 16px;
  color: var(--text-dark);
}

.section-desc {
  font-size: 1.1rem;
  color: var(--text-muted);
  line-height: 1.8;
}

.text-accent {
  color: var(--sage);
  font-style: italic;
}

.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-body);
  font-size: 0.95rem;
  font-weight: 500;
  padding: 14px 32px;
  background: var(--gradient-sage);
  color: var(--white);
  border: none;
  border-radius: 50px;
  cursor: pointer;
  transition: var(--transition);
  text-decoration: none;
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 30px rgba(74, 107, 62, 0.3);
}

.btn-outline {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-body);
  font-size: 0.95rem;
  font-weight: 500;
  padding: 14px 32px;
  background: transparent;
  color: var(--sage-dark);
  border: 2px solid var(--sage);
  border-radius: 50px;
  cursor: pointer;
  transition: var(--transition);
  text-decoration: none;
}

.btn-outline:hover {
  background: var(--sage);
  color: var(--white);
  transform: translateY(-2px);
}

.btn-lg { padding: 16px 40px; font-size: 1rem; }
