:root {
  --primary: #4a2c0b;
  --accent: #c19a6b;
  --light: #f8f1e9;
  --dark: #2c1f14;
}

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

body {
  font-family: 'Inter', system_ui, sans-serif;
  line-height: 1.7;
  color: #333;
  background: var(--light);
}

.hero {
  height: 100vh;
  min-height: 600px;
  background: linear-gradient(rgba(0,0,0,0.35), rgba(0,0,0,0.45)), 
              url('https://images.unsplash.com/photo-1506905925346-21bda4d32df4?ixlib=rb-4.0.3&auto=format&fit=crop&q=80') center/cover no-repeat;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: white;
  position: relative;
}

.overlay {
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  background: linear-gradient(transparent, rgba(74, 44, 11, 0.6));
}

.hero-content {
  z-index: 2;
  max-width: 800px;
  padding: 2rem;
}

.title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(3.5rem, 8vw, 6.5rem);
  font-weight: 700;
  letter-spacing: -2px;
  margin-bottom: 0.2rem;
  text-shadow: 0 4px 20px rgba(0,0,0,0.6);
}

.subtitle {
  font-size: 1.8rem;
  font-weight: 300;
  letter-spacing: 8px;
  opacity: 0.95;
  margin-bottom: 2rem;
}

.kannel-icon {
  font-size: 4.5rem;
  opacity: 0.9;
  animation: gentleFloat 6s ease-in-out infinite;
}

@keyframes gentleFloat {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-15px); }
}

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

.about {
  padding: 100px 0;
  background: white;
  text-align: center;
}

.about h2 {
  font-family: 'Playfair Display', serif;
  font-size: 2.8rem;
  color: var(--primary);
  margin-bottom: 2rem;
}

.about p {
  max-width: 720px;
  margin: 0 auto 1.8rem;
  font-size: 1.15rem;
  color: #444;
}

.cta-button {
  display: inline-block;
  margin-top: 1rem;
  padding: 16px 42px;
  background: var(--primary);
  color: white;
  text-decoration: none;
  border-radius: 50px;
  font-weight: 600;
  font-size: 1.1rem;
  transition: all 0.3s ease;
  box-shadow: 0 8px 25px rgba(74, 44, 11, 0.25);
}

.cta-button:hover {
  background: #5c3a1c;
  transform: translateY(-4px);
  box-shadow: 0 12px 30px rgba(74, 44, 11, 0.35);
}

.features {
  padding: 100px 0;
  background: linear-gradient(#f8f1e9, #f0e6d8);
}

.features .container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
}

.card {
  background: white;
  padding: 2.5rem 2rem;
  border-radius: 16px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.08);
  transition: all 0.4s ease;
  opacity: 0;
  transform: translateY(40px);
}

.card h3 {
  font-family: 'Playfair Display', serif;
  font-size: 1.8rem;
  color: var(--primary);
  margin-bottom: 1rem;
}

footer {
  background: var(--dark);
  color: #ddd;
  text-align: center;
  padding: 3rem 0;
  font-size: 0.95rem;
}

footer a {
  color: var(--accent);
  text-decoration: none;
}

footer a:hover {
  text-decoration: underline;
}

/* Responsive */
@media (max-width: 768px) {
  .hero {
    min-height: 520px;
  }
  .about, .features {
    padding: 70px 0;
  }
}
