:root {
    --sand: #eae5d9;
    --clay: #d9c5b2;
    --sage: #7c8e7a;
    --text-dark: #3b3d36;
    --text-muted: #6e7268;
    --font-heading: 'Playfair Display', serif;
    --font-body: 'Outfit', sans-serif;
}

* { margin: 0; padding: 0; box-sizing: border-box; }
body { background: var(--sand); color: var(--text-dark); font-family: var(--font-body); line-height: 1.7; }

.nav { display: flex; justify-content: space-between; align-items: center; padding: 2rem 5%; }
.logo { font-family: var(--font-heading); font-size: 1.8rem; font-style: italic; color: var(--sage); }
.links a { color: var(--text-dark); text-decoration: none; margin-left: 2rem; font-size: 0.95rem; font-weight: 400; transition: color 0.3s; }
.links a:hover { color: var(--sage); }
.btn-zen { border: 1px solid var(--sage); padding: 0.5rem 1.5rem; border-radius: 30px; color: var(--sage) !important; transition: all 0.3s; }
.btn-zen:hover { background: var(--sage); color: var(--sand) !important; }

.hero { display: flex; padding: 4rem 5% 6rem; align-items: center; gap: 4rem; min-height: 80vh; }
.hero-content { flex: 1.2; }
.hero-content h1 { font-family: var(--font-heading); font-size: 4.5rem; line-height: 1.1; margin-bottom: 1.5rem; font-weight: 400; }
.hero-content h1 span { color: var(--sage); font-style: italic; }
.hero-content p { font-size: 1.15rem; color: var(--text-muted); margin-bottom: 3rem; max-width: 500px; font-weight: 300; }

.btn-primary-zen { background: var(--sage); color: var(--sand); text-decoration: none; padding: 0.9rem 2.2rem; border-radius: 30px; font-weight: 500; display: inline-block; transition: background 0.3s; }
.btn-primary-zen:hover { background: #647363; }

.hero-image { flex: 1; }
.hero-image img { width: 100%; height: 500px; object-fit: cover; border-radius: 120px 120px 0 0; }

/* Classes */
.classes { padding: 8rem 5%; background: rgba(255,255,255,0.25); }
.title { font-family: var(--font-heading); font-size: 3rem; text-align: center; margin-bottom: 4rem; font-weight: 400; }
.class-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2.5rem; }
.class-card { background: var(--sand); padding: 3rem 2rem; border-radius: 20px; transition: transform 0.3s, box-shadow 0.3s; }
.class-card:hover { transform: translateY(-5px); box-shadow: 0 15px 30px rgba(124, 142, 122, 0.1); }
.class-card h3 { font-family: var(--font-heading); font-size: 1.6rem; font-weight: 400; margin-bottom: 0.5rem; }
.time { color: var(--sage); font-weight: 500; font-size: 0.9rem; text-transform: uppercase; margin-bottom: 1.5rem; }
.desc { color: var(--text-muted); font-size: 0.95rem; margin-bottom: 2rem; }
.price { display: block; font-weight: 600; font-size: 1.1rem; }

/* About */
.about { padding: 8rem 5%; text-align: center; background-image: linear-gradient(rgba(234, 229, 217, 0.8), rgba(234, 229, 217, 0.8)), url('https://images.unsplash.com/photo-1506126613408-eca07ce68773?auto=format&fit=crop&w=1920&q=80'); background-size: cover; background-position: center; }
.about-text { max-width: 700px; margin: 0 auto; }
.about-text h2 { font-family: var(--font-heading); font-size: 3rem; margin-bottom: 2rem; font-weight: 400; }
.about-text p { font-size: 1.25rem; color: var(--text-muted); line-height: 1.8; font-weight: 300; }

/* Footer */
footer { padding: 8rem 5%; text-align: center; background: var(--sand); border-top: 1px solid rgba(0,0,0,0.05); }
footer h2 { font-family: var(--font-heading); font-size: 3rem; margin-bottom: 1rem; font-weight: 400; }
footer p { color: var(--text-muted); margin-bottom: 3rem; }

@media (max-width: 900px) {
    .hero { flex-direction: column; text-align: center; }
    .hero-image { width: 100%; }
    .class-grid { grid-template-columns: 1fr; }
}