:root {
  /* MAIN PALETTE: FRESH LIGHT (YELLOW + GREEN + WHITE) */
  --color-terracotta: #7DAA2F; /* Accent: Fresh Leaf Green */
  --color-straw: #F7D64F;      /* Accent: Light Sunny Yellow */
  --color-soil: #2E2E2E;       /* Text Primary: Charcoal */
  --color-cream: #FFFFFF;      /* Main Background: Clean White */
  --color-sage: #DFF0C6;       /* Secondary Background: Pale Green */
  --color-white: #FFFFFF;      /* Card Background: Pure White */
  --color-off-white: #F5F9F0;  /* Border Color: Soft Green-White */
  --color-text-muted: #5E6458; /* Text Secondary: Soft Olive Gray */
  --color-success: #A9D35D;    /* Soft Fresh Green */

  /* Typography */
  --font-display: 'Playfair Display', serif;
  --font-body: 'Nunito', 'Outfit', sans-serif;
  
  /* Shadows - Soft and Natural */
  --shadow-sm: 0 4px 12px rgba(59, 32, 9, 0.05);
  --shadow-md: 0 10px 30px rgba(59, 32, 9, 0.08);
  --shadow-lg: 0 20px 40px rgba(59, 32, 9, 0.12);
  --shadow-lift: 0 15px 35px rgba(59, 32, 9, 0.15);
  
  /* Transitions */
  --transition-fast: 0.2s ease-in-out;
  --transition-smooth: 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
  --transition-slow: 0.8s cubic-bezier(0.165, 0.84, 0.44, 1);
  
  /* Radii */
  --radius-sm: 4px;
  --radius-md: 12px;
  --radius-lg: 24px;
  --radius-pill: 100px;
}

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

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: var(--font-body);
  background-color: var(--color-cream);
  color: var(--color-soil);
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4, h5 {
  font-family: var(--font-display);
  font-weight: 700;
  color: var(--color-soil);
  line-height: 1.2;
}

h1 { font-size: 3rem; letter-spacing: -0.02em; margin-bottom: 1rem; }
h2 { font-size: 2.25rem; letter-spacing: -0.01em; margin-bottom: 1rem; }
h3 { font-size: 1.75rem; margin-bottom: 0.75rem; }

@media (min-width: 768px) {
  h1 { font-size: 4.5rem; }
  h2 { font-size: 3rem; }
  h3 { font-size: 2rem; }
}

p {
  margin-bottom: 1.5rem;
  font-size: 1.125rem;
  color: var(--color-text-muted);
}

a {
  text-decoration: none;
  color: var(--color-terracotta);
  transition: color var(--transition-fast);
}

a:hover {
  color: var(--color-soil);
}

.social-icon {
  color: var(--color-terracotta);
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}
