@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600&family=Playfair+Display:ital,wght@0,400;0,500;0,600;0,700;1,400;1,500&family=Cormorant+Garamond:ital,wght@0,300;0,400;0,500;0,600;1,300;1,400;1,500&display=swap');

:root {
    --primary: #3C2F2F;
    --primary-light: #5A4B4B;
    --primary-dark: #2A2020;
    --secondary: #C9A96E;
    --secondary-light: #D4BC8B;
    --secondary-glow: rgba(201,169,110,0.15);
    --accent: #8B6914;
    --accent-warm: #A0784C;
    --sage: #7A8B6F;
    --sage-light: #9BAF8E;
    --bg: #FAFAF7;
    --bg-warm: #F5F0E8;
    --bg-alt: #EDE7DB;
    --bg-cream: #F8F4ED;
    --text: #2D2824;
    --text-light: #6B635B;
    --text-muted: #9B9187;
    --white: #FFFFFF;
    --shadow-sm: 0 2px 12px rgba(60,47,47,0.06);
    --shadow: 0 8px 32px rgba(60,47,47,0.08);
    --shadow-lg: 0 16px 48px rgba(60,47,47,0.12);
    --shadow-xl: 0 24px 64px rgba(60,47,47,0.16);
    --shadow-warm: 0 8px 32px rgba(201,169,110,0.12);
    --radius: 16px;
    --radius-sm: 10px;
    --radius-xs: 6px;
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }

body {
    font-family: 'Inter', sans-serif;
    background: var(--bg);
    color: var(--text);
    line-height: 1.75;
    font-weight: 400;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

h1, h2, h3, h4 {
    font-family: 'Playfair Display', serif;
    font-weight: 400;
    line-height: 1.15;
    color: var(--primary);
}

h1 { font-size: clamp(2.5rem, 5vw, 3.5rem); }
h2 { font-size: clamp(2rem, 3.5vw, 2.8rem); }
h3 { font-size: clamp(1.3rem, 2vw, 1.6rem); }

p { color: var(--text-light); line-height: 1.8; }

a { transition: all 0.2s ease; }

.container { max-width: 1240px; margin: 0 auto; padding: 0 32px; }

/* === HEADER === */
.header {
    position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
    padding: 20px 0; transition: all 0.4s ease;
}
.header.scrolled {
    background: rgba(255,255,255,0.92); backdrop-filter: blur(20px);
    box-shadow: var(--shadow-sm); padding: 14px 0;
}
.header-light { background: transparent; }
.header-light .logo { color: var(--white); }
.header-light .logo span { color: var(--secondary-light); }
.header-light .nav a { color: rgba(255,255,255,0.9); }
.header-light .nav a::after { background: var(--secondary-light); }
.header-light .nav a:hover { color: var(--white); }
.header-light .lang-btn { color: rgba(255,255,255,0.6); }
.header-light .lang-btn:hover { color: var(--white); background: rgba(255,255,255,0.1); }
.header-light .lang-btn.active { color: var(--white); background: rgba(255,255,255,0.1); }
.header-light .mobile-toggle span { background: var(--white); }
.header-light.scrolled { background: rgba(255,255,255,0.95); }
.header-light.scrolled .logo { color: var(--primary); }
.header-light.scrolled .logo span { color: var(--secondary); }
.header-light.scrolled .nav a { color: var(--text); }
.header-light.scrolled .nav a::after { background: var(--secondary); }
.header-light.scrolled .lang-btn { color: var(--text-muted); }
.header-light.scrolled .lang-btn:hover { color: var(--primary); background: var(--bg-warm); }
.header-light.scrolled .lang-btn.active { color: var(--primary); background: var(--bg-warm); }
.header-light.scrolled .mobile-toggle span { background: var(--primary); }
.header .container { display: flex; justify-content: space-between; align-items: center; }

.logo {
    font-family: 'Cormorant Garamond', serif; font-size: 1.7rem; font-weight: 500;
    color: var(--primary); text-decoration: none; letter-spacing: 0.5px;
}
.logo span { color: var(--secondary); font-style: italic; }

.nav { display: flex; gap: 40px; align-items: center; }
.nav a {
    color: var(--text); text-decoration: none; font-weight: 400;
    font-size: 0.9rem; letter-spacing: 0.3px; transition: color 0.2s;
    position: relative;
}
.nav a::after {
    content: ''; position: absolute; bottom: -4px; left: 0; width: 0; height: 1px;
    background: var(--secondary); transition: width 0.3s ease;
}
.nav a:hover { color: var(--primary); }
.nav a:hover::after { width: 100%; }
.nav a.btn-primary,
.header-light .nav a.btn-primary,
.header-light.scrolled .nav a.btn-primary { color: var(--white); }

.lang-switcher { display: flex; gap: 6px; margin-left: 32px; }
.lang-btn {
    padding: 5px 10px; border: none; background: transparent;
    color: var(--text-muted); border-radius: var(--radius-xs); font-weight: 500;
    font-size: 0.75rem; cursor: pointer; transition: all 0.2s; letter-spacing: 0.5px;
}
.lang-btn:hover { color: var(--primary); background: var(--bg-warm); }
.lang-btn.active { color: var(--primary); background: var(--bg-warm); }

/* === BUTTONS === */
.btn {
    display: inline-flex; align-items: center; justify-content: center; gap: 8px;
    padding: 14px 32px; border-radius: var(--radius-sm); font-weight: 500;
    font-size: 0.9rem; text-decoration: none; transition: all 0.3s ease;
    cursor: pointer; border: none; letter-spacing: 0.3px;
}
.btn-primary {
    background: var(--primary); color: var(--white);
    box-shadow: 0 4px 16px rgba(60,47,47,0.15);
}
.btn-primary:hover {
    background: var(--primary-light); transform: translateY(-2px); box-shadow: var(--shadow-lg);
}
.btn-secondary {
    background: transparent; color: var(--primary); border: 1px solid var(--primary);
}
.btn-secondary:hover { background: var(--primary); color: var(--white); }
.btn-white { background: var(--white); color: var(--primary-dark); box-shadow: 0 4px 20px rgba(0,0,0,0.2); font-weight: 600; }
.btn-white:hover { background: var(--bg-warm); transform: translateY(-2px); box-shadow: 0 8px 32px rgba(0,0,0,0.25); }
.btn-outline-white { background: transparent; color: var(--white); border: 1px solid rgba(255,255,255,0.5); }
.btn-outline-white:hover { background: var(--white); color: var(--primary); }

.mobile-toggle { display: none; background: none; border: none; cursor: pointer; padding: 8px; }
.mobile-toggle span { display: block; width: 24px; height: 1.5px; background: var(--primary); margin: 6px 0; transition: all 0.3s; }

/* === HERO === */
.hero {
    min-height: 100vh; display: flex; align-items: center;
    position: relative; overflow: hidden;
    background: var(--bg-warm);
}
.hero-bg {
    position: absolute; top: 0; left: 0; width: 100%; height: 100%;
    background-image: url('https://images.unsplash.com/photo-1506126613408-eca07ce68773?w=1920&q=80');
    background-size: cover; background-position: center;
    transition: background-image 1s ease;
    transform: scale(1.02);
}
.hero::after {
    content: ''; position: absolute; top: 0; left: 0; width: 100%; height: 100%;
    background: linear-gradient(135deg, rgba(250,250,247,0.97) 0%, rgba(250,250,247,0.85) 40%, rgba(250,250,247,0.3) 70%, rgba(250,250,247,0.05) 100%);
    z-index: 1;
}
.hero-content { position: relative; z-index: 2; max-width: 680px; }

.hero-slider { position: relative; max-width: 680px; }
.hero-slides-wrap { position: relative; }
.hero-slides { position: relative; min-height: 300px; }
.hero-slide {
    position: absolute; top: 0; left: 0; width: 100%;
    opacity: 0; transform: translateY(8px);
    transition: opacity 0.8s ease, transform 0.8s ease;
    pointer-events: none; visibility: hidden;
}
.hero-slide.active {
    opacity: 1; transform: translateY(0);
    pointer-events: auto; visibility: visible;
    position: relative;
}
.hero-slide-badge {
    display: inline-flex; align-items: center; gap: 6px;
    background: var(--secondary-glow); color: var(--sage);
    padding: 6px 14px; border-radius: 50px; font-weight: 500;
    font-size: 0.75rem; text-transform: uppercase; letter-spacing: 1.5px;
    margin-bottom: 24px; border: 1px solid var(--sage-light);
}
.hero-slide h1 { margin-bottom: 24px; font-weight: 400; }
.hero-slide h1 .highlight { color: var(--secondary); font-style: italic; position: relative; }
.hero-slide p {
    font-size: 1.1rem; margin-bottom: 36px; max-width: 500px;
    color: var(--text-light); line-height: 1.85; font-weight: 300;
}
.hero-buttons { display: flex; gap: 16px; flex-wrap: wrap; }

.slider-nav { display: flex; align-items: center; gap: 16px; margin-top: 40px; }
.slider-arrow {
    position: absolute; top: 50%; transform: translateY(-50%) scaleY(1.45); z-index: 5;
    background: none; border: none; color: var(--sage); font-size: 1.8rem; opacity: 0.55;
    cursor: pointer; transition: opacity 0.3s ease, color 0.3s ease; padding: 8px; line-height: 1;
}
.slider-arrow-prev { left: -120px; }
.slider-arrow-next { right: -120px; }
.slider-arrow:hover { opacity: 0.85; color: var(--secondary); }
.slider-dots { display: flex; gap: 8px; }
.slider-dot {
    width: 32px; height: 3px; border-radius: 2px; background: var(--sage-light);
    opacity: 0.5; cursor: pointer; transition: all 0.3s;
}
.slider-dot:hover { opacity: 0.8; }
.slider-dot.active { opacity: 1; background: var(--sage); width: 48px; }

/* === SECTIONS === */
.section { padding: 120px 0; }
.section-header { text-align: center; max-width: 640px; margin: 0 auto 72px; }
.section-header h2 { margin-bottom: 16px; }
.section-header p { font-size: 1.1rem; }

.section-label {
    display: inline-block; font-family: 'Inter', sans-serif;
    font-size: 0.7rem; font-weight: 500; text-transform: uppercase;
    letter-spacing: 2.5px; color: var(--sage); margin-bottom: 16px;
}

.divider {
    width: 48px; height: 2px; background: var(--secondary);
    margin: 0 auto 24px; border-radius: 2px;
}

.divider-ornament {
    display: flex; align-items: center; justify-content: center; gap: 16px;
    margin-bottom: 24px;
}
.divider-ornament::before, .divider-ornament::after {
    content: ''; width: 40px; height: 1px; background: var(--secondary-light); opacity: 0.5;
}
.divider-ornament::after { background: var(--secondary-light); }
.divider-dot {
    width: 6px; height: 6px; border-radius: 50%;
    background: var(--secondary); opacity: 0.6;
}

/* === WHY US === */
.why-us { background: var(--bg-cream); }
.benefits-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 40px; }
.benefit-card {
    padding: 40px 28px; text-align: center; transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    border-radius: var(--radius); position: relative;
}
.benefit-card::before {
    content: ''; position: absolute; top: 0; left: 50%; transform: translateX(-50%);
    width: 0; height: 2px; background: linear-gradient(90deg, transparent, var(--secondary), transparent);
    transition: width 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}
.benefit-card:hover::before { width: 60%; }
.benefit-card:hover { transform: translateY(-4px); background: var(--white); box-shadow: var(--shadow-warm); }
.benefit-icon {
    width: 56px; height: 56px; border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    margin: 0 auto 24px; font-size: 1.4rem;
    background: var(--white); border: 1px solid var(--bg-alt);
    box-shadow: var(--shadow-sm); transition: all 0.4s ease;
}
.benefit-card:hover .benefit-icon { border-color: var(--secondary-light); box-shadow: var(--shadow-warm); }
.benefit-card h3 { font-size: 1.15rem; margin-bottom: 12px; }
.benefit-card p { font-size: 0.9rem; line-height: 1.7; }

/* === RETREATS === */
.retreats-preview { background: var(--bg); }
.retreats-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 32px; }
.retreat-card {
    border-radius: var(--radius); overflow: hidden;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1); text-decoration: none; color: inherit;
    background: var(--white); box-shadow: var(--shadow-sm);
}
.retreat-card:hover { transform: translateY(-8px); box-shadow: var(--shadow-xl); }
.retreat-image {
    height: 280px; background-size: cover; background-position: center;
    position: relative; overflow: hidden; transition: all 0.5s ease;
}
.retreat-image::before {
    content: ''; position: absolute; top: 0; left: 0; width: 100%; height: 100%;
    background: linear-gradient(180deg, transparent 40%, rgba(42,32,32,0.4) 100%);
    z-index: 1; transition: opacity 0.5s ease;
}
.retreat-card:hover .retreat-image::before { opacity: 0.7; }
.retreat-card:hover .retreat-image { transform: scale(1.03); }
.retreat-image::after { display: none; }
.retreat-category {
    position: absolute; top: 20px; left: 20px; padding: 5px 14px;
    border-radius: 50px; font-size: 0.7rem; font-weight: 500;
    text-transform: uppercase; letter-spacing: 1px; color: var(--white);
    backdrop-filter: blur(8px); z-index: 2;
    box-shadow: 0 2px 8px rgba(0,0,0,0.15);
}
.retreat-category.healing { background: rgba(122,139,111,0.85); }
.retreat-category.transition { background: rgba(201,169,110,0.85); }
.retreat-category.singles { background: rgba(139,105,20,0.85); }
.retreat-content { padding: 28px; }
.retreat-content h3 { font-size: 1.3rem; margin-bottom: 10px; transition: color 0.3s ease; }
.retreat-card:hover .retreat-content h3 { color: var(--accent-warm); }
.retreat-content p { font-size: 0.9rem; margin-bottom: 16px; }
.retreat-tags { display: flex; gap: 6px; flex-wrap: wrap; }
.retreat-tag {
    padding: 4px 10px; background: var(--bg-warm); border-radius: 50px;
    font-size: 0.7rem; color: var(--text-muted); letter-spacing: 0.3px;
    transition: all 0.3s ease;
}
.retreat-card:hover .retreat-tag { background: var(--secondary-glow); color: var(--accent-warm); }

/* === WORKSHOPS === */
.workshops-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 32px; }
.workshop-card {
    background: var(--white); border-radius: var(--radius); padding: 48px 40px;
    box-shadow: var(--shadow-sm); transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    text-decoration: none; color: inherit; position: relative; overflow: hidden;
    border: 1px solid var(--bg-alt);
}
.workshop-card::before {
    content: ''; position: absolute; top: 0; left: 0; width: 4px; height: 100%;
    background: linear-gradient(180deg, var(--secondary), var(--accent-warm));
    border-radius: 0 4px 4px 0; transition: width 0.4s ease;
}
.workshop-card::after {
    content: ''; position: absolute; top: 0; left: 0; width: 0; height: 100%;
    background: linear-gradient(90deg, var(--secondary-glow), transparent);
    transition: width 0.5s ease; z-index: 0;
}
.workshop-card:hover::after { width: 100%; }
.workshop-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); border-color: var(--secondary-light); }
.workshop-card h3 { font-size: 1.4rem; margin-bottom: 12px; padding-left: 16px; position: relative; z-index: 1; }
.workshop-card p { font-size: 0.95rem; margin-bottom: 24px; padding-left: 16px; position: relative; z-index: 1; }
.workshop-link {
    color: var(--accent-warm); font-weight: 500; text-decoration: none;
    display: inline-flex; align-items: center; gap: 8px; padding-left: 16px;
    font-size: 0.9rem; letter-spacing: 0.3px; position: relative; z-index: 1;
    transition: all 0.3s ease;
}
.workshop-link:hover { gap: 14px; color: var(--secondary); }

/* === BLOG === */
.blog-preview { background: var(--bg-cream); }
.blog-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 32px; }
.blog-card {
    border-radius: var(--radius); overflow: hidden;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1); text-decoration: none; color: inherit;
    background: var(--white); box-shadow: var(--shadow-sm);
}
.blog-card:hover { transform: translateY(-8px); box-shadow: var(--shadow-xl); }
.blog-image {
    height: 200px; background-size: cover; background-position: center;
    transition: transform 0.5s ease;
}
.blog-card:hover .blog-image { transform: scale(1.05); }
.blog-content { padding: 28px; }
.blog-content h3 { font-size: 1.15rem; margin-bottom: 10px; line-height: 1.35; transition: color 0.3s ease; }
.blog-card:hover .blog-content h3 { color: var(--accent-warm); }
.blog-content p { font-size: 0.85rem; margin-bottom: 16px; line-height: 1.7; }
.blog-meta { display: flex; justify-content: space-between; font-size: 0.75rem; color: var(--text-muted); letter-spacing: 0.3px; }

/* === CTA === */
.cta-section {
    position: relative; padding: 140px 0; text-align: center;
    background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary) 50%, var(--primary-light) 100%);
    background-image: url('https://images.unsplash.com/photo-1506126613408-eca07ce68773?w=1920&q=80');
    background-size: cover; background-position: center; background-attachment: fixed;
    overflow: hidden;
}
.cta-section::before {
    content: ''; position: absolute; top: 0; left: 0; width: 100%; height: 100%;
    background: linear-gradient(135deg, rgba(42,32,32,0.85) 0%, rgba(60,47,47,0.75) 50%, rgba(90,75,75,0.8) 100%);
}
.cta-section::after {
    content: ''; position: absolute; top: 0; left: 0; width: 100%; height: 100%;
    background: radial-gradient(ellipse at center, transparent 0%, rgba(42,32,32,0.3) 100%);
    pointer-events: none;
}
.cta-section * { position: relative; z-index: 2; }
.cta-section h2 { color: var(--white); margin-bottom: 20px; }
.cta-section p { color: rgba(255,255,255,0.85); font-size: 1.15rem; margin-bottom: 36px; max-width: 560px; margin-left: auto; margin-right: auto; }

/* === FOOTER === */
.footer { background: var(--primary-dark); color: rgba(255,255,255,0.8); padding: 80px 0 40px; }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 56px; margin-bottom: 56px; }
.footer-brand h3 {
    font-family: 'Cormorant Garamond', serif; font-size: 1.6rem; font-weight: 500;
    margin-bottom: 16px; color: var(--white);
}
.footer-brand p { color: rgba(255,255,255,0.6); line-height: 1.8; font-size: 0.9rem; }
.footer-links h4 {
    font-family: 'Inter', sans-serif; font-size: 0.75rem; text-transform: uppercase;
    letter-spacing: 1.5px; margin-bottom: 24px; color: rgba(255,255,255,0.4); font-weight: 500;
}
.footer-links ul { list-style: none; }
.footer-links li { margin-bottom: 14px; }
.footer-links a {
    color: rgba(255,255,255,0.7); text-decoration: none; font-size: 0.9rem;
    transition: color 0.2s;
}
.footer-links a:hover { color: var(--secondary-light); }
.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.08); padding-top: 32px;
    display: flex; justify-content: space-between; align-items: center;
    color: rgba(255,255,255,0.4); font-size: 0.85rem;
}

/* === LANDING PAGES === */
.page-hero {
    min-height: 65vh; display: flex; align-items: center; position: relative;
    background-size: cover; background-position: center; padding-top: 80px;
}
.page-hero::before {
    content: ''; position: absolute; top: 0; left: 0; right: 0; bottom: 0;
    background: linear-gradient(135deg, rgba(42,32,32,0.65) 0%, rgba(60,47,47,0.55) 50%, rgba(42,32,32,0.7) 100%);
}
.page-hero-content { position: relative; z-index: 2; padding-bottom: 72px; max-width: 680px; }
.page-hero h1 { color: var(--white); margin-bottom: 20px; }
.page-hero p { color: rgba(255,255,255,0.9); font-size: 1.15rem; }

.page-content { padding: 100px 0; max-width: 760px; margin: 0 auto; }
.page-content > .container { max-width: 760px; }
.page-content h2 { font-size: 2rem; margin: 56px 0 24px; color: var(--primary); }
.page-content h3 { font-size: 1.3rem; margin: 40px 0 16px; color: var(--primary-light); }
.page-content p { margin-bottom: 20px; font-size: 1rem; }
.page-content ul { margin: 20px 0; padding-left: 20px; }
.page-content li { margin-bottom: 10px; color: var(--text-light); }
.page-content a { color: var(--accent-warm); text-decoration: underline; text-underline-offset: 3px; }

.page-cta {
    background: var(--bg-cream); padding: 64px 48px; border-radius: var(--radius);
    text-align: center; margin-top: 72px; border: 1px solid var(--bg-alt);
    position: relative; overflow: hidden;
}
.page-cta::before {
    content: ''; position: absolute; top: 0; left: 50%; transform: translateX(-50%);
    width: 60px; height: 2px; background: var(--secondary);
}
.page-cta h3 { font-size: 1.6rem; margin-bottom: 12px; }
.page-cta p { margin-bottom: 28px; }

/* === BLOG LISTING === */
.blog-hero {
    min-height: 35vh; display: flex; align-items: center;
    background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary) 100%);
    color: var(--white); padding-top: 80px;
}
.blog-hero h1 { color: var(--white); margin-bottom: 12px; }
.blog-hero p { color: rgba(255,255,255,0.7); font-size: 1.1rem; }
.blog-listing { padding: 80px 0; background: var(--bg-cream); }
.blog-listing-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 32px; }

/* === BLOG POST === */
.blog-post { padding: 100px 0; max-width: 720px; margin: 0 auto; }
.blog-post-header { margin-bottom: 56px; }
.blog-post-meta { display: flex; gap: 24px; color: var(--text-muted); font-size: 0.85rem; margin-bottom: 28px; letter-spacing: 0.3px; }
.blog-post-body { line-height: 1.85; }
.blog-post-body h2 { font-size: 1.8rem; margin: 56px 0 24px; }
.blog-post-body h3 { font-size: 1.3rem; margin: 40px 0 16px; color: var(--primary-light); }
.blog-post-body p { margin-bottom: 24px; font-size: 1.05rem; }
.blog-post-body ul, .blog-post-body ol { margin: 24px 0; padding-left: 24px; }
.blog-post-body li { margin-bottom: 12px; font-size: 1.05rem; }
.blog-post-body a { color: var(--accent-warm); text-decoration: underline; text-underline-offset: 3px; }
.blog-post-body strong { color: var(--primary); font-weight: 500; }
.blog-post-body blockquote {
    border-left: 3px solid var(--secondary); padding: 24px 32px; margin: 40px 0;
    background: linear-gradient(135deg, var(--bg-cream), var(--bg-warm)); border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
    font-style: italic; color: var(--text-light); font-family: 'Cormorant Garamond', serif;
    font-size: 1.25rem; line-height: 1.7; box-shadow: var(--shadow-sm);
}

/* === ANIMATIONS === */
.fade-in {
    opacity: 0; transform: translateY(24px);
    transition: opacity 0.7s cubic-bezier(0.4, 0, 0.2, 1), transform 0.7s cubic-bezier(0.4, 0, 0.2, 1);
}
.fade-in.visible { opacity: 1; transform: translateY(0); }
.fade-in-delay-1 { transition-delay: 0.1s; }
.fade-in-delay-2 { transition-delay: 0.2s; }
.fade-in-delay-3 { transition-delay: 0.3s; }
.fade-in-delay-4 { transition-delay: 0.4s; }

/* === RESPONSIVE === */
@media (max-width: 1024px) {
    .benefits-grid { grid-template-columns: repeat(2, 1fr); gap: 32px; }
    .retreats-grid { grid-template-columns: repeat(2, 1fr); }
    .footer-grid { grid-template-columns: 1fr 1fr; gap: 40px; }
}

@media (max-width: 768px) {
    .container { padding: 0 20px; }
    .section { padding: 80px 0; }
    .section-header { margin-bottom: 48px; }

    .nav {
        display: none; position: fixed; top: 0; left: 0; right: 0; bottom: 0;
        background: rgba(255,255,255,0.98); backdrop-filter: blur(20px);
        flex-direction: column; justify-content: center; align-items: center; gap: 28px;
    }
    .nav.active { display: flex; }
    .mobile-toggle { display: block; z-index: 1001; }
    .mobile-toggle.active span:nth-child(1) { transform: rotate(45deg) translate(5px, 6px); }
    .mobile-toggle.active span:nth-child(2) { opacity: 0; }
    .mobile-toggle.active span:nth-child(3) { transform: rotate(-45deg) translate(5px, -6px); }

    .hero-bg { opacity: 0.25; }
    .hero::after { background: rgba(250,250,247,0.9); }
    .slider-arrow { display: none; }
    .hero-slide h1 { font-size: 2rem; }
    .hero-slide p { font-size: 1rem; }
    .hero-slides { min-height: 340px; }

    .benefits-grid { grid-template-columns: 1fr; gap: 24px; }
    .retreats-grid { grid-template-columns: 1fr; }
    .workshops-grid { grid-template-columns: 1fr; }
    .blog-grid { grid-template-columns: 1fr; }
    .blog-listing-grid { grid-template-columns: 1fr; }
    .footer-grid { grid-template-columns: 1fr; gap: 32px; }
    .footer-bottom { flex-direction: column; gap: 12px; text-align: center; }

    .page-hero h1 { font-size: 2rem; }
    .page-cta { padding: 40px 24px; }

    .cta-section h2 { font-size: 2rem; }
}

@media (max-width: 480px) {
    h1 { font-size: 2rem; }
    h2 { font-size: 1.6rem; }
    .hero-slide h1 { font-size: 1.75rem; }
    .btn { padding: 12px 24px; font-size: 0.85rem; }
}
