/* Palette: Sage Green, Bamboo Beige, Earth Grey */
:root {
    --sage: #81C784;
    --dark-sage: #558B2F;
    --beige: #F9FBE7;
    --grey: #546E7A;
    --text: #37474F;
    --white: #FFFFFF;
    
    --font-heading: 'Spectral', serif;
    --font-body: 'Quicksand', sans-serif;
}

* { margin: 0; padding: 0; box-sizing: border-box; }

body {
    background-color: var(--beige);
    color: var(--text);
    font-family: var(--font-body);
    line-height: 1.7;
    font-weight: 400;
}

.container { width: 90%; max-width: 1000px; margin: 0 auto; }
.section-padding { padding: 100px 0; }
a { text-decoration: none; color: inherit; transition: 0.3s; }
img { max-width: 100%; height: auto; border-radius: 10px; }

/* Header */
.flow-header { background: var(--white); padding: 25px 0; position: sticky; top: 0; z-index: 1000; box-shadow: 0 5px 20px rgba(0,0,0,0.02); }
.header-flex { display: flex; justify-content: space-between; align-items: center; }

.logo { font-family: var(--font-body); font-size: 1.5rem; font-weight: 600; letter-spacing: 2px; color: var(--grey); }
.sage { color: var(--sage); font-weight: 300; }

.zen-nav a { margin-left: 25px; font-size: 0.9rem; color: #78909C; font-weight: 600; }
.zen-nav a:hover, .zen-nav a.active { color: var(--sage); }

/* Mobile Menu */
.menu-trigger { display: none; flex-direction: column; gap: 6px; background: none; border: none; cursor: pointer; }
.menu-trigger span { width: 25px; height: 2px; background: var(--grey); border-radius: 2px; }

.mobile-menu { position: fixed; top: 0; right: -100%; width: 250px; height: 100%; background: var(--white); z-index: 2000; display: flex; flex-direction: column; padding: 30px; transition: 0.4s; }
.mobile-menu.active { right: 0; }
.close-menu { align-self: flex-end; font-size: 2rem; background: none; border: none; cursor: pointer; color: var(--grey); margin-bottom: 20px; }
.mobile-menu a { font-family: var(--font-heading); font-size: 1.5rem; margin-bottom: 20px; color: var(--text); border-bottom: 1px solid #eee; }

@media (max-width: 900px) {
    .zen-nav { display: none; }
    .menu-trigger { display: flex; }
}

/* Hero */
.hero-flow { height: 85vh; background-size: cover; background-position: center; position: relative; }
.zen-overlay { width: 100%; height: 100%; background: rgba(249, 251, 231, 0.6); display: flex; align-items: center; justify-content: center; text-align: center; }
.hero-content { max-width: 700px; padding: 40px; background: rgba(255,255,255,0.8); border-radius: 50% 50% 0 0; backdrop-filter: blur(5px); border-bottom: 5px solid var(--sage); }
.motto { letter-spacing: 3px; font-size: 0.8rem; color: var(--grey); text-transform: uppercase; display: block; margin-bottom: 20px; }
.hero-content h1 { font-family: var(--font-heading); font-size: 3.5rem; line-height: 1.2; color: var(--text); margin-bottom: 30px; font-style: italic; }
.hero-content p { font-size: 1.1rem; color: #546E7A; margin-bottom: 40px; }

.cta-group { display: flex; justify-content: center; gap: 20px; }
.btn-sage { background: var(--sage); color: var(--white); padding: 12px 35px; border-radius: 30px; font-weight: 600; }
.btn-calm { background: transparent; border: 1px solid var(--grey); color: var(--grey); padding: 11px 35px; border-radius: 30px; font-weight: 600; }
.btn-calm:hover { background: var(--grey); color: var(--white); }

/* Pillars */
.section-head h2 { font-family: var(--font-heading); font-size: 2.2rem; color: var(--text); }
.leaf-icon { font-size: 1.5rem; margin: 10px 0; }
.leaf-icon.left { margin: 15px 0; display: block; }
.text-center { text-align: center; }

.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 40px; margin-top: 50px; }
.pillar-card { background: var(--white); padding: 40px 30px; text-align: center; border-radius: 15px; transition: 0.3s; box-shadow: 0 5px 15px rgba(0,0,0,0.03); }
.pillar-card:hover { transform: translateY(-10px); }
.icon { font-size: 3rem; margin-bottom: 20px; display: block; }
.pillar-card h3 { font-family: var(--font-heading); color: var(--dark-sage); margin-bottom: 15px; font-size: 1.3rem; }
.pillar-card a { color: var(--grey); font-weight: 600; font-size: 0.9rem; border-bottom: 1px solid var(--sage); }

/* Affirmation Bar */
.affirmation-bar { background: var(--sage); padding: 50px 0; text-align: center; color: var(--white); margin-top: 50px; }
.aff-content h3 { font-family: var(--font-body); letter-spacing: 2px; font-size: 0.9rem; margin-bottom: 15px; opacity: 0.8; }
.aff-content p { font-family: var(--font-heading); font-size: 1.8rem; font-style: italic; }

/* Ritual Layout */
.ritual-layout { display: grid; grid-template-columns: 1fr 2.5fr; gap: 60px; }
.filter-sidebar h3 { font-family: var(--font-heading); color: var(--text); margin-bottom: 20px; border-bottom: 1px solid var(--sage); padding-bottom: 5px; }
.filter-sidebar ul { list-style: none; }
.filter-sidebar li { padding: 10px 0; border-bottom: 1px solid #eee; cursor: pointer; color: #78909C; }
.filter-sidebar li:hover, .filter-sidebar li.active { color: var(--dark-sage); font-weight: 600; }
.note { margin-top: 30px; font-size: 0.8rem; color: #999; font-style: italic; }

.ritual-grid { display: grid; gap: 40px; }
.ritual-card { display: flex; gap: 30px; background: var(--white); border-radius: 15px; overflow: hidden; align-items: center; box-shadow: 0 5px 15px rgba(0,0,0,0.02); }
.ritual-card img { width: 250px; height: 100%; object-fit: cover; border-radius: 0; }
.card-body { padding: 30px; }
.card-body h3 { font-family: var(--font-heading); color: var(--text); margin-bottom: 10px; font-size: 1.5rem; }
.tag { background: var(--beige); color: var(--dark-sage); padding: 5px 15px; border-radius: 20px; font-size: 0.8rem; font-weight: 600; display: inline-block; margin-top: 15px; }

/* Science / Wellness */
.wellness-block { display: grid; grid-template-columns: 1.2fr 1fr; gap: 60px; align-items: center; }
.text-content h1 { font-family: var(--font-heading); font-size: 2.8rem; color: var(--text); }
.zen-list { list-style: none; margin-top: 30px; }
.zen-list li { margin-bottom: 15px; font-size: 1.05rem; color: #546E7A; }
.img-content img { box-shadow: 20px 20px 0 var(--sage); border-radius: 20px; }

/* Contact */
.contact-box { display: grid; grid-template-columns: 1fr 1.5fr; gap: 60px; background: var(--white); padding: 60px; border-radius: 20px; box-shadow: 0 5px 30px rgba(0,0,0,0.03); }
.info-side h2 { font-family: var(--font-heading); color: var(--sage); margin-bottom: 20px; }
.contact-items { margin-top: 30px; color: #78909C; font-weight: 600; }

.zen-form .form-row { margin-bottom: 20px; display: flex; gap: 20px; }
.zen-form input, .zen-form select, .zen-form textarea { width: 100%; padding: 15px; border: 1px solid #ECEFF1; border-radius: 10px; background: var(--beige); font-family: var(--font-body); color: var(--text); }
.zen-form input:focus, .zen-form textarea:focus { border-color: var(--sage); background: var(--white); outline: none; }
.btn-submit { width: 100%; background: var(--sage); color: var(--white); border: none; padding: 15px; border-radius: 10px; font-weight: 600; cursor: pointer; transition: 0.3s; }
.btn-submit:hover { background: var(--dark-sage); }

/* Legal */
.legal-box { max-width: 800px; margin: 0 auto; background: var(--white); padding: 60px; border-radius: 20px; }
.legal-box h1 { font-family: var(--font-heading); color: var(--text); }
.legal-box h3 { color: var(--sage); margin-top: 30px; font-family: var(--font-heading); }

/* Footer */
.flow-footer { background: #37474F; color: #CFD8DC; padding: 60px 0 20px; margin-top: 80px; }
.footer-row { display: flex; justify-content: space-between; align-items: center; border-bottom: 1px solid #455A64; padding-bottom: 30px; margin-bottom: 20px; }
.f-brand h4 { color: var(--white); font-family: var(--font-heading); letter-spacing: 1px; }
.f-links a { color: #B0BEC5; margin-left: 20px; }
.f-links a:hover { color: var(--sage); }
.copyright { text-align: center; font-size: 0.8rem; }

/* Cookie */
.cookie-zen { position: fixed; bottom: 30px; left: 50%; transform: translateX(-50%); background: var(--white); padding: 15px 30px; border-radius: 30px; box-shadow: 0 10px 30px rgba(0,0,0,0.1); display: flex; align-items: center; gap: 20px; z-index: 3000; display: none; }
.cookie-zen.active { display: flex; }
.cookie-zen button { background: var(--sage); color: var(--white); border: none; padding: 8px 20px; border-radius: 20px; font-weight: 600; cursor: pointer; }

@media (max-width: 900px) {
    .grid-3, .wellness-block, .contact-box, .ritual-card, .zen-form .form-row { grid-template-columns: 1fr; }
    .hero-content h1 { font-size: 2.5rem; }
    .ritual-card { flex-direction: column; }
    .ritual-card img { width: 100%; height: 250px; }
    .footer-row { flex-direction: column; text-align: center; gap: 20px; }
}