@import url('https://fonts.googleapis.com/css2?family=Nunito:wght@400;600;800&display=swap');

:root {
  --bg-main: #F9F6F0; /* Soft Cream */
  --text-dark: #5C4033; /* Earth Brown */
  --accent-green: #8A9A5B; /* Sage Green */
  --accent-light: #E8E5D9;
  
  --font-main: 'Nunito', sans-serif;
  --radius-blob: 40% 60% 70% 30% / 40% 50% 60% 50%;
  --radius-blob-alt: 60% 40% 30% 70% / 60% 30% 70% 40%;
}

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

body {
  font-family: var(--font-main);
  background-color: var(--bg-main);
  color: var(--text-dark);
  line-height: 1.7;
}

h1, h2, h3 { font-weight: 800; color: var(--text-dark); margin-bottom: 1rem; }

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

/* Organic Nav */
nav {
  padding: 2rem 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo {
  font-size: 1.8rem;
  font-weight: 800;
  color: var(--accent-green);
  text-decoration: none;
}

/* Hero Organic */
.hero-organic {
  display: flex;
  align-items: center;
  gap: 4rem;
  padding: 4rem 0 8rem;
}

.hero-text { flex: 1; }
.hero-text h1 { font-size: 4rem; line-height: 1.1; }
.hero-text p { font-size: 1.2rem; margin-bottom: 2rem; opacity: 0.9; }

.btn-organic {
  display: inline-block;
  padding: 1rem 2.5rem;
  background-color: var(--accent-green);
  color: white;
  text-decoration: none;
  font-weight: 600;
  border-radius: 50px;
  box-shadow: 0 10px 20px rgba(138, 154, 91, 0.3);
  transition: transform 0.3s ease;
}

.btn-organic:hover { transform: translateY(-3px); }

.hero-img-wrapper {
  flex: 1;
  position: relative;
}

.hero-img {
  width: 100%;
  border-radius: var(--radius-blob);
  box-shadow: 0 20px 40px rgba(92, 64, 51, 0.1);
  animation: morph 8s ease-in-out infinite;
}

@keyframes morph {
  0% { border-radius: 40% 60% 70% 30% / 40% 50% 60% 50%; }
  50% { border-radius: 60% 40% 30% 70% / 60% 30% 70% 40%; }
  100% { border-radius: 40% 60% 70% 30% / 40% 50% 60% 50%; }
}

/* Organic Cards */
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 3rem;
  padding: 4rem 0;
}

.organic-card {
  background: white;
  padding: 3rem;
  border-radius: 30px;
  box-shadow: 0 10px 30px rgba(92, 64, 51, 0.05);
  position: relative;
  overflow: hidden;
}

.organic-card::before {
  content: '';
  position: absolute;
  top: -20px;
  right: -20px;
  width: 100px;
  height: 100px;
  background: var(--accent-light);
  border-radius: 50%;
  z-index: 0;
}

.organic-card * { position: relative; z-index: 1; }
