* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Inter', sans-serif;
  background: #f8f5f0;
  color: #2c2c2c;
  line-height: 1.6;
}

.container {
  width: 90%;
  max-width: 1100px;
  margin: auto;
  padding: 80px 0;
  text-align: center;
}

h1, h2, h3 {
  font-family: 'Playfair Display', serif;
  font-weight: 600;
  margin-bottom: 20px;
}

h1 {
  font-size: 3rem;
}

h2 {
  font-size: 2.2rem;
}

p {
  max-width: 700px;
  margin: 10px auto;
  font-weight: 300;
}

.hero {
  background: #f8f5f0;
  padding: 120px 0;
}

.subtext {
  font-size: 1.1rem;
  margin-bottom: 30px;
}

.btn {
  display: inline-block;
  padding: 12px 30px;
  background: #b89b5e;
  color: white;
  text-decoration: none;
  border-radius: 30px;
  font-size: 0.9rem;
  letter-spacing: 1px;
  transition: 0.3s;
}

.btn:hover {
  background: #9d834d;
}

.btn-outline {
  padding: 12px 30px;
  border: 1px solid #b89b5e;
  background: transparent;
  color: #b89b5e;
  border-radius: 30px;
  cursor: pointer;
  transition: 0.3s;
}

.btn-outline:hover {
  background: #b89b5e;
  color: white;
}

.chakra-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 20px;
  margin-top: 40px;
}

.chakra-card {
  background: white;
  padding: 30px;
  border-radius: 12px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.05);
  transition: 0.3s;
}

.chakra-card:hover {
  transform: translateY(-5px);
}

.ritual-steps {
  display: flex;
  justify-content: center;
  gap: 40px;
  font-family: 'Playfair Display', serif;
  font-size: 1.3rem;
  margin-top: 40px;
}

footer {
  padding: 40px 0;
  background: #efeae2;
  font-size: 0.9rem;
}
