/* ================================================
   YOUR DATA — Nature-Centric Minimalist Design
   Earth tones. Clean type. Organic warmth.
================================================ */

:root {
  --earth-dark:    #2A3A2E;
  --earth-medium:  #3D5240;
  --earth-light:   #4F6B53;
  --earth-moss:    #6B8E6F;
  --beige-card:    #C9C4B2;
  --beige-light:   #F5F5F0;
  --beige-warm:    #EAE7DC;
  --cream:         #FFFEF7;
  --text-white:    #FFFFFF;
  --text-dark:     #2A3A2E;
  --text-muted:    #6B7566;
  --accent-terra:  #C97D60;
  --accent-sage:   #A4B494;
  --shadow-sm: 0 2px 8px rgba(42,58,46,0.08);
  --shadow-md: 0 4px 20px rgba(42,58,46,0.14);
  --shadow-lg: 0 8px 40px rgba(42,58,46,0.18);
  --font: 'Space Grotesk', -apple-system, BlinkMacSystemFont, sans-serif;
  --r-sm: 8px;
  --r-md: 16px;
  --r-lg: 24px;
  --r-xl: 32px;
  --r-full: 9999px;
}

*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--font);
  background: var(--earth-dark);
  color: var(--text-white);
  line-height: 1.6;
  min-height: 100vh;
  -webkit-font-smoothing: antialiased;
}

.btn-primary {
  padding: 0.9rem 2.25rem;
  background: var(--beige-warm);
  color: var(--text-dark);
  border: none;
  border-radius: var(--r-full);
  font-weight: 700;
  font-size: 1rem;
  cursor: pointer;
  font-family: var(--font);
  text-decoration: none;
  display: inline-block;
  transition: all 0.25s ease;
}
.btn-primary:hover { background: var(--cream); transform: translateY(-3px); box-shadow: 0 10px 30px rgba(0,0,0,0.25); }

.logo-icon { width: 40px; height: 40px; object-fit: contain; flex-shrink: 0; border-radius: var(--r-sm); }
