:root {
  --bg-color: hsl(32,50%,98%);
  --text-color: hsl(20,15%,25%);
  --card-bg: hsl(32,40%,96%);
  --primary-color: hsl(150,25%,45%);
  --primary-light: hsl(150,35%,85%);
  --primary-bg: hsl(32,50%,98%);
  --secondary-color: hsl(15,40%,88%);
  --secondary-dark: hsl(20,15%,25%);
  --muted-color: hsl(20,8%,55%);
  --muted-bg: hsl(32,30%,92%);
  --accent-color: hsl(25,35%,75%);
  --nature-color: hsl(85,20%,50%);
  --gradient-primary: linear-gradient(135deg,hsl(150,35%,85%),hsl(15,40%,88%));
  --gradient-warm: linear-gradient(180deg,hsl(32,50%,98%),hsl(15,40%,92%));
  --gradient-nature: linear-gradient(135deg,hsl(85,25%,85%),hsl(150,30%,85%));
  --shadow-soft: 0 4px 20px -4px hsl(20,15%,25%,.1);
  --shadow-warm: 0 8px 30px -8px hsl(25,35%,75%,.15);
  --border-radius: 1rem;
}

* { box-sizing: border-box; }

body {
  font-family: 'Nunito', sans-serif;
  color: var(--text-color);
  background: var(--bg-color);
  line-height: 1.6;
  margin: 0;
  font-size: 16px;
}

.font-heading { font-family: 'Comfortaa', sans-serif; }

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

h1, h2, h3 {
  font-family: 'Comfortaa', sans-serif;
  line-height: 1.2;
  margin-bottom: 1rem;
}

h1 { font-size: 3rem; font-weight: 700; }
h2 { font-size: 2.5rem; font-weight: 600; }
h3 { font-size: 1.5rem; font-weight: 600; }

p, li { line-height: 1.75; }

.btn {
  display: inline-block;
  padding: 12px 32px;
  border-radius: 50px;
  font-weight: 500;
  text-decoration: none;
  transition: all .3s ease;
  cursor: pointer;
  border: none;
  font-size: 16px;
}

.btn-primary {
  background: var(--primary-color);
  color: var(--primary-bg);
  box-shadow: var(--shadow-soft);
}

.btn-primary:hover, .btn-primary:focus {
  background: hsl(150,30%,40%);
  transform: translateY(-2px);
  box-shadow: var(--shadow-warm);
}

.btn-outline {
  background: transparent;
  color: var(--primary-color);
  border: 2px solid hsl(150,25%,45%,.3);
}

.btn-outline:hover, .btn-outline:focus {
  background: var(--primary-light);
  transform: translateY(-2px);
}

.card {
  background: var(--card-bg);
  border-radius: var(--border-radius);
  padding: 2rem;
  box-shadow: var(--shadow-soft);
  border: 1px solid hsl(32,25%,88%);
  transition: all .3s ease;
  animation: gentleFade .5s ease-in;
}

.card:hover { transform: translateY(-4px); box-shadow: var(--shadow-warm); }

.card-image {
  width: 100%;
  height: 200px;
  object-fit: cover;
  border-radius: calc(var(--border-radius) - 4px);
  margin-bottom: 1rem;
}

.card-square { aspect-ratio: 1; }
.card-video { aspect-ratio: 16/9; }

.badge {
  display: inline-block;
  padding: 4px 12px;
  border-radius: 20px;
  font-size: .75rem;
  font-weight: 500;
}

.badge-primary { background: var(--primary-light); color: var(--primary-color); }
.badge-accent { background: hsl(25,35%,75%,.3); color: var(--secondary-dark); }
.badge-nature { background: hsl(85,20%,50%,.2); color: var(--nature-color); }

@keyframes gentleFade { from { opacity: 0; transform: translateY(20px); } to { opacity: 1; transform: translateY(0); } }
@keyframes breathe { 0%, 100% { transform: scale(1); } 50% { transform: scale(1.05); } }

.fade-in-up { animation: fade-in-up .6s ease-out; }
.breathe { animation: breathe 4s ease-in-out infinite; }

.bg-gradient-primary { background: var(--gradient-primary); }
.bg-gradient-warm { background: var(--gradient-warm); }
.bg-gradient-nature { background: var(--gradient-nature); }

.text-center { text-align: center; }
.text-primary { color: var(--primary-color); }
.text-muted { color: var(--muted-color); }
.text-nature { color: var(--nature-color); }

.mb-1 { margin-bottom: .5rem; }
.mb-2 { margin-bottom: 1rem; }
.mb-3 { margin-bottom: 1.5rem; }
.mb-4 { margin-bottom: 2rem; }
.mb-5 { margin-bottom: 3rem; }

.py-5 { padding: 3rem 0; }
.py-6 { padding: 4rem 0; }
.py-7 { padding: 5rem 0; }

.grid { display: grid; gap: 1.5rem; }
.grid-1 { grid-template-columns: 1fr; }
.grid-2 { grid-template-columns: repeat(2, 1fr); }
.grid-3 { grid-template-columns: repeat(3, 1fr); }

.flex { display: flex; }
.flex-center { display: flex; align-items: center; justify-content: center; }
.flex-between { display: flex; align-items: center; justify-content: space-between; }
.flex-wrap { flex-wrap: wrap; }

.gap-1 { gap: .5rem; }
.gap-2 { gap: 1rem; }
.gap-3 { gap: 1.5rem; }

.header {
  background: var(--bg-color);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid hsl(32,25%,88%);
  position: sticky;
  top: 0;
  z-index: 100;
}

.header-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 70px;
}

.logo {
  display: flex;
  align-items: center;
  gap: 8px;
  text-decoration: none;
  color: var(--primary-color);
}

.logo-icon {
  width: 32px;
  height: 32px;
  background: var(--gradient-primary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  color: var(--primary-bg);
  font-size: .8rem;
}

.nav {
  display: flex;
  gap: 2rem;
}

.nav-link {
  color: var(--muted-color);
  text-decoration: none;
  font-weight: 500;
  transition: color .3s ease;
}

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

.dropdown {
  position: relative;
}

.dropdown-content {
  display: none;
  position: absolute;
  background: var(--card-bg);
  box-shadow: 0 4px 8px rgba(0,0,0,.1);
  z-index: 1;
  min-width: 160px;
}

.dropdown-content a {
  display: block;
  padding: .5rem 1rem;
  color: var(--text-color);
  text-decoration: none;
}

.dropdown-content a:hover, .dropdown-content a:focus {
  background: var(--primary-light);
}

.dropdown:hover .dropdown-content { display: block; }

.footer {
  background: var(--card-bg);
  border-top: 1px solid hsl(32,25%,88%);
  padding: 3rem 0 2rem;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 2rem;
  margin-bottom: 2rem;
}

.footer-bottom {
  border-top: 1px solid hsl(32,25%,88%);
  padding-top: 2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
}

.footer-links {
  display: flex;
  gap: 1.5rem;
}

.footer-link {
  color: var(--muted-color);
  text-decoration: none;
  font-size: .9rem;
  transition: color .3s ease;
}

.footer-link:hover, .footer-link:focus { color: var(--primary-color); }

.t-container, .t-col { max-width: 100%; padding: 0; }

@media (max-width: 768px) {
  .container { padding: 0 16px; }
  h1 { font-size: 2.5rem; }
  h2 { font-size: 1.75rem; }
  .btn { padding: 12px 24px; font-size: 16px; }
  .grid-2, .grid-3 { grid-template-columns: 1fr; }
  .nav {
    display: none;
    flex-direction: column;
    position: absolute;
    top: 70px;
    left: 0;
    right: 0;
    background: var(--card-bg);
    padding: 1rem;
  }
  .nav.active { display: flex; }
  .dropdown-content {
    position: relative;
    box-shadow: none;
    background: transparent;
  }
  .footer-grid { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; text-align: center; }
  .menu-toggle {
    display: block;
    cursor: pointer;
    width: 30px;
    height: 30px;
  }
}
@media (max-width: 768px) {
  .hero .card-image {
    height: auto;
    max-width: 100%;
    margin: 1rem 0;
  }
  .hero h1 {
    font-size: 2rem;
  }
  .hero p {
    font-size: 1rem;
  }
}