/* Spiritual Professional Palette */
:root {
    --cosmic-dark: #1A1B3A;
    --cosmic-purple: #A86B94; /* Couleur rosée */
    --mystic-gold: #D4AF37;
    --sage-green: #8B9B7F;
    --moonlight: #F5F3F0;
    --crystal-white: #FFFFFF;
    --shadow-light: rgba(107, 91, 149, 0.08);
    --shadow-medium: rgba(107, 91, 149, 0.15);
    --shadow-dark: rgba(107, 91, 149, 0.25);
    --gradient-spiritual: linear-gradient(135deg, #A86B94 0%, #D4AF37 50%, #8B9B7F 100%);
    --gradient-aura: radial-gradient(ellipse at center, rgba(212, 175, 55, 0.1) 0%, transparent 70%);
    
    /* Spacing System */
    --space-xs: 0.5rem; --space-sm: 1rem; --space-md: 1.5rem; --space-lg: 2rem;
    --space-xl: 3rem; --space-2xl: 4rem; --space-3xl: 6rem; --space-4xl: 8rem;
    
    /* Container */
    --container-max: 1200px; --container-padding: 2rem;
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
    font-family: 'Nunito Sans', sans-serif; /* Police pour les textes */
    color: var(--cosmic-dark);
    line-height: 1.7; background: var(--moonlight); font-size: 16px;
    position: relative; overflow-x: hidden;
    -webkit-font-smoothing: antialiased; -moz-osx-font-smoothing: grayscale;
}
main { overflow: hidden; }

body::before {
    content: ''; position: fixed; top: 0; left: 0; width: 100%; height: 100%;
    background-image: 
        radial-gradient(circle at 20% 50%, rgba(168, 107, 148, 0.02) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(212, 175, 55, 0.02) 0%, transparent 50%),
        radial-gradient(circle at 40% 80%, rgba(139, 155, 127, 0.02) 0%, transparent 50%);
    pointer-events: none; z-index: -1;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Playfair Display', serif; /* Police pour les titres */
    font-weight: 500;
    line-height: 1.3; color: var(--cosmic-dark); margin-bottom: var(--space-md);
    letter-spacing: 0.02em; position: relative;
}
h1 { font-size: clamp(2.5rem, 5vw, 4rem); font-weight: 600; color: var(--crystal-white); line-height: 1.1; }
h2 { font-size: clamp(2rem, 4vw, 2.8rem); text-align: center; margin-bottom: var(--space-sm); font-weight: 500; }
h2::after { content: '◈'; display: block; font-size: 1rem; color: var(--mystic-gold); margin-top: var(--space-sm); }
h3 { font-size: clamp(1.5rem, 3vw, 1.9rem); font-weight: 500; color: var(--cosmic-purple); }
h4 { font-size: 1.2rem; font-weight: 600; }
p { margin-bottom: var(--space-sm); opacity: 0.9; }

.container { max-width: var(--container-max); margin: 0 auto; padding: 0 var(--container-padding); position: relative; z-index: 1; }
section { padding: var(--space-4xl) 0; position: relative; }
.section-header { text-align: center; margin-bottom: var(--space-3xl); max-width: 800px; margin-left: auto; margin-right: auto; }
.section-subtitle { font-size: 1.2rem; margin-top: var(--space-sm); font-style: italic; opacity: 0.8; line-height: 1.6; color: var(--cosmic-purple); font-family: 'Playfair Display', serif; }

header {
    background: rgba(255, 255, 255, 0.97); backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(168, 107, 148, 0.1);
    position: fixed; width: 100%; top: 0; z-index: 1000; transition: all 0.3s ease;
}
header.scrolled { box-shadow: 0 4px 20px var(--shadow-medium); }
nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.25rem 0;
    gap: var(--space-lg);
}
.logo { 
    font-size: 1.3rem; 
    font-weight: 500; 
    letter-spacing: 0.05em; 
    color: var(--cosmic-purple); 
    text-decoration: none; 
    display: flex; 
    align-items: center; 
    font-family: 'Playfair Display', serif; 
    white-space: nowrap; 
    flex-shrink: 0;
}
.logo:hover { color: var(--mystic-gold); }
.nav-wrapper { 
    display: flex; 
    align-items: center; 
    gap: var(--space-lg); 
}
.nav-menu { display: flex; list-style: none; gap: var(--space-lg); align-items: center; margin: 0; padding: 0; }
.nav-menu li { white-space: nowrap; }
.nav-link { color: var(--cosmic-dark); text-decoration: none; font-size: 0.9rem; font-weight: 600; letter-spacing: 0.05em; transition: all 0.3s ease; position: relative; padding: var(--space-xs) 0; text-transform: uppercase; }
.nav-link:hover { color: var(--cosmic-purple); }
.nav-link::after { content: ''; position: absolute; bottom: 0; left: 50%; transform: translateX(-50%); width: 0; height: 1px; background: var(--mystic-gold); transition: width 0.3s ease; }
.nav-link:hover::after { width: 100%; }
.btn-sacred { background: linear-gradient(135deg, var(--cosmic-purple) 0%, var(--mystic-gold) 100%); color: var(--crystal-white); padding: 0.75rem 2rem; text-decoration: none; font-size: 0.9rem; font-weight: 600; letter-spacing: 0.08em; text-transform: uppercase; transition: all 0.4s ease; border-radius: 30px; box-shadow: 0 4px 15px var(--shadow-medium); }
.btn-sacred:hover { transform: translateY(-2px); box-shadow: 0 6px 25px var(--shadow-dark); }

.hero {
    margin-top: 75px; min-height: calc(100vh - 75px); display: flex; align-items: center; justify-content: center;
    background: linear-gradient(135deg, rgba(26, 27, 58, 0.9), rgba(168, 107, 148, 0.7), rgba(212, 175, 55, 0.5)), url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1920 1080"><defs><pattern id="mandala" x="0" y="0" width="200" height="200" patternUnits="userSpaceOnUse"><circle cx="100" cy="100" r="50" fill="none" stroke="%23D4AF37" stroke-width="0.5" opacity="0.2"/><circle cx="100" cy="100" r="80" fill="none" stroke="%23A86B94" stroke-width="0.5" opacity="0.1"/></pattern></defs><rect width="1920" height="1080" fill="url(%23mandala)"/></svg>');
    color: var(--crystal-white); position: relative; overflow: hidden; padding: var(--space-3xl) 0;
}
.energy-orb { position: absolute; border-radius: 50%; filter: blur(40px); animation: float-orb 20s infinite ease-in-out; opacity: 0.3; pointer-events: none; }
.orb-1 { width: 300px; height: 300px; background: var(--mystic-gold); top: 10%; left: -150px; }
.orb-2 { width: 200px; height: 200px; background: var(--cosmic-purple); bottom: 20%; right: -100px; animation-delay: 5s; }
.orb-3 { width: 250px; height: 250px; background: var(--sage-green); top: 50%; right: 10%; animation-delay: 10s; }
@keyframes float-orb { 0%, 100% { transform: translate(0, 0) scale(1); } 33% { transform: translate(30px, -30px) scale(1.1); } 66% { transform: translate(-20px, 20px) scale(0.9); } }
.hero-content { display: grid; grid-template-columns: 1fr; gap: var(--space-2xl); align-items: center; position: relative; z-index: 2; text-align: center; }
.hero-subtitle { color: var(--mystic-gold); font-family: 'Playfair Display', serif; }
.hero-description { max-width: 700px; margin: 0 auto var(--space-xl); color: rgba(255, 255, 255, 0.95); font-size: 1.1rem; }
.hero-buttons { display: flex; gap: var(--space-md); flex-wrap: wrap; justify-content: center; }
.btn-primary, .btn-secondary { padding: 1rem 2.5rem; text-decoration: none; font-weight: 600; letter-spacing: 0.08em; text-transform: uppercase; font-size: 0.9rem; transition: all 0.4s ease; display: inline-block; border-radius: 30px; }
.btn-primary { background: linear-gradient(135deg, var(--mystic-gold) 0%, var(--cosmic-purple) 100%); color: var(--crystal-white); box-shadow: 0 5px 20px rgba(212, 175, 55, 0.3); }
.btn-primary:hover { transform: translateY(-3px); box-shadow: 0 8px 30px rgba(212, 175, 55, 0.4); }
.btn-secondary { background: transparent; color: var(--crystal-white); border: 1px solid rgba(255, 255, 255, 0.5); }
.btn-secondary:hover { background: rgba(255, 255, 255, 0.1); border-color: var(--mystic-gold); color: var(--mystic-gold); }
.hero-image { position: relative; margin-top: var(--space-xl); display: flex; align-items: center; justify-content: center; }
.sacred-circle { width: 450px; height: 450px; border-radius: 50%; background: radial-gradient(circle at center, rgba(212, 175, 55, 0.1) 0%, transparent 70%), radial-gradient(circle at center, rgba(168, 107, 148, 0.1) 0%, transparent 70%); display: flex; align-items: center; justify-content: center; position: relative; animation: pulse-aura 4s ease-in-out infinite; }
@keyframes pulse-aura { 0%, 100% { transform: scale(1); opacity: 0.8; } 50% { transform: scale(1.05); opacity: 1; } }
.sacred-circle::before, .sacred-circle::after { content: ''; position: absolute; border-radius: 50%; border: 1px solid var(--mystic-gold); opacity: 0.3; animation: rotate-slow 20s linear infinite; }
.sacred-circle::before { width: 100%; height: 100%; }
.sacred-circle::after { width: 120%; height: 120%; animation-direction: reverse; border-color: var(--cosmic-purple); }
.hero-image-inner { width: 350px; height: 350px; border-radius: 50%; overflow: hidden; position: relative; border: 3px solid rgba(212, 175, 55, 0.3); box-shadow: 0 10px 40px rgba(168, 107, 148, 0.3); }
.hero-photo { width: 100%; height: 100%; object-fit: cover; display: block; }

.services { background: linear-gradient(180deg, var(--moonlight) 0%, rgba(168, 107, 148, 0.05) 100%); }

/* --- STYLES : Système d'onglets interactifs --- */
.service-tabs-container {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: var(--space-2xl);
    align-items: flex-start;
}
.service-tabs-nav {
    display: flex;
    flex-direction: column;
    gap: var(--space-sm);
    position: sticky;
    top: 120px;
}
.tab-nav-item {
    padding: var(--space-md) var(--space-lg);
    background: rgba(255, 255, 255, 0.5);
    border: 1px solid transparent;
    border-radius: 12px;
    cursor: pointer;
    transition: all 0.3s ease;
    border-left: 4px solid transparent;
}
.tab-nav-item:hover {
    transform: scale(1.05);
    box-shadow: var(--shadow-medium);
}
.tab-nav-item.active {
    background: var(--crystal-white);
    border-left-color: var(--cosmic-purple);
    box-shadow: var(--shadow-medium);
    transform: scale(1.05);
}
.tab-nav-item h4 {
    margin-bottom: 0;
    font-size: 1.1rem;
    font-weight: 500;
}
.tab-nav-item.active h4 {
    color: var(--cosmic-purple);
}
.service-tabs-content {
    background: var(--crystal-white);
    padding: var(--space-xl);
    border-radius: 15px;
    box-shadow: var(--shadow-light);
    min-height: 400px;
}
.tab-content-panel {
    display: none;
    animation: fadeIn 0.6s ease;
}
.tab-content-panel h3 {
    margin-bottom: var(--space-lg);
}
.tab-content-panel.active {
    display: block;
}
@keyframes fadeIn {
    from { opacity: 0; transform: translateY(10px); }
    to { opacity: 1; transform: translateY(0); }
}
.service-image {
    width: 100%;
    height: auto;
    border-radius: 10px;
    margin: var(--space-lg) 0;
    box-shadow: var(--shadow-light);
}

/* --- Section "Autres Services" --- */
.sacred-practices { background: var(--cosmic-dark); color: var(--crystal-white); }
.sacred-practices::before { content: ''; position: absolute; width: 100%; height: 100%; background: var(--gradient-aura); opacity: 0.3; }

.autre-service-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--space-lg);
    margin-top: var(--space-2xl);
    align-items: stretch;
}
.service-card { 
    background: var(--crystal-white); 
    color: var(--cosmic-dark);
    padding: var(--space-xl) var(--space-lg); 
    border-radius: 10px; 
    box-shadow: 0 10px 30px var(--shadow-light); 
    transition: all 0.4s ease; 
    position: relative; 
    overflow: hidden; 
    display: flex; 
    flex-direction: column;
}
.service-card:hover { transform: translateY(-5px); box-shadow: 0 15px 40px var(--shadow-medium); }
.service-sacred-symbol { font-size: 2rem; color: var(--mystic-gold); margin-bottom: var(--space-md); }
.service-title { font-size: 1.5rem; color: var(--cosmic-purple); }
.service-description { flex-grow: 1; }
.service-offerings { list-style: none; margin: 0; padding: 0; margin-top: auto; }
.service-offerings li { padding: var(--space-xs) 0; padding-left: var(--space-md); position: relative; }
.service-offerings li::before { content: '✦'; position: absolute; left: 0; color: var(--mystic-gold); }
.service-divider {
    border: none;
    height: 1px;
    background-color: var(--cosmic-purple);
    opacity: 0.2;
    margin: var(--space-lg) 0;
}

/* About Section */
.about { background: var(--crystal-white); }
.profile-section { display: grid; grid-template-columns: 350px 1fr; gap: var(--space-3xl); align-items: start; margin-bottom: var(--space-3xl); padding: var(--space-xl); background: linear-gradient(135deg, rgba(168, 107, 148, 0.03) 0%, rgba(212, 175, 55, 0.03) 100%); border-radius: 20px; }
.profile-photo-container { position: relative; }
.profile-photo-frame { width: 100%; height: 450px; border-radius: 10px; overflow: hidden; box-shadow: 0 20px 50px var(--shadow-medium); position: relative; background: linear-gradient(135deg, var(--cosmic-purple), var(--mystic-gold)); }
.profile-photo-frame::before { content: ''; position: absolute; top: -5px; left: -5px; right: -5px; bottom: -5px; background: var(--gradient-spiritual); border-radius: 10px; z-index: -1; opacity: 0.5; }
.profile-photo { width: 100%; height: 100%; object-fit: cover; display: block; }
.profile-info { padding-top: var(--space-sm); }
.profile-info .tagline { font-family: 'Playfair Display', serif; font-size: 1.2rem; color: var(--mystic-gold); font-style: italic; margin-bottom: var(--space-lg); }
.journey-section { display: grid; grid-template-columns: 1fr 1fr; gap: var(--space-3xl); }
.journey-timeline { position: relative; padding-left: var(--space-xl); }
.journey-timeline::before { content: ''; position: absolute; left: 0; top: 0; height: 100%; width: 2px; background: linear-gradient(180deg, var(--cosmic-purple) 0%, var(--mystic-gold) 100%); }
.journey-item { position: relative; margin-bottom: var(--space-xl); }
.journey-item::before { content: '◆'; position: absolute; left: -3.4rem; font-size: 1.5rem; color: var(--mystic-gold); background: var(--crystal-white); padding: var(--space-xs) 0; }
.journey-year { color: var(--cosmic-purple); font-weight: 600; margin-bottom: var(--space-xs); font-size: 1.1rem; }
.spiritual-credentials { background: linear-gradient(135deg, rgba(168, 107, 148, 0.05) 0%, rgba(212, 175, 55, 0.05) 100%); padding: var(--space-lg); border-radius: 10px; }
.credentials-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); gap: var(--space-md); }
.credential-item { display: flex; align-items: flex-start; gap: var(--space-sm); }
.credential-icon { color: var(--mystic-gold); font-size: 1.2rem; margin-top: 2px; }

/* Contact Section */
.contact { background: var(--crystal-white); }
.contact-content { display: grid; grid-template-columns: 1fr 1fr; gap: var(--space-3xl); margin-top: var(--space-2xl); }
.sacred-space-info { background: linear-gradient(135deg, rgba(168, 107, 148, 0.05) 0%, rgba(212, 175, 55, 0.05) 100%); padding: var(--space-lg); border-radius: 10px; margin-bottom: var(--space-lg); }
.info-item { display: flex; align-items: flex-start; margin-bottom: var(--space-lg); }
.info-icon { width: 45px; height: 45px; background: linear-gradient(135deg, var(--cosmic-purple) 0%, var(--mystic-gold) 100%); border-radius: 50%; display: flex; align-items: center; justify-content: center; margin-right: var(--space-md); color: var(--crystal-white); font-size: 1.2rem; flex-shrink: 0; }
.contact-link { text-decoration: none; color: inherit; transition: color 0.3s ease; }
.contact-link:hover { color: var(--mystic-gold); }
.contact-form { background: linear-gradient(135deg, rgba(168, 107, 148, 0.03) 0%, rgba(212, 175, 55, 0.03) 100%); padding: var(--space-xl); border-radius: 10px; border: 1px solid rgba(168, 107, 148, 0.1); }
.form-group { margin-bottom: var(--space-lg); }
.form-group label { display: block; color: var(--cosmic-purple); font-size: 0.95rem; font-weight: 600; margin-bottom: var(--space-xs); letter-spacing: 0.05em; }
.form-group input, .form-group select, .form-group textarea { width: 100%; padding: var(--space-sm); border: 1px solid rgba(168, 107, 148, 0.2); background: var(--crystal-white); font-size: 1rem; color: var(--cosmic-dark); transition: all 0.3s ease; border-radius: 5px; font-family: inherit; }
.form-group input:focus, .form-group select:focus, .form-group textarea:focus { outline: none; border-color: var(--mystic-gold); box-shadow: 0 0 0 3px rgba(212, 175, 55, 0.1); }
.form-group textarea { resize: vertical; min-height: 120px; }
.form-submit { background: linear-gradient(135deg, var(--cosmic-purple) 0%, var(--mystic-gold) 100%); color: var(--crystal-white); padding: var(--space-sm) var(--space-xl); border: none; font-size: 1rem; font-weight: 600; letter-spacing: 0.08em; text-transform: uppercase; cursor: pointer; transition: all 0.4s ease; width: 100%; border-radius: 30px; box-shadow: 0 5px 20px var(--shadow-medium); }
.form-submit:hover { transform: translateY(-2px); box-shadow: 0 8px 30px var(--shadow-dark); }

/* Footer */
footer { background: var(--cosmic-dark); color: var(--crystal-white); padding: var(--space-3xl) 0 var(--space-lg); position: relative; overflow: hidden; text-align: center; }
footer::before { content: ''; position: absolute; width: 100%; height: 100%; background: var(--gradient-aura); opacity: 0.2; }
.footer-content { display: flex; flex-direction: column; align-items: center; gap: var(--space-md); margin-bottom: var(--space-xl); position: relative; z-index: 1; }
.footer-brand h3 { font-size: 1.4rem; margin-bottom: var(--space-md); font-weight: 500; color: var(--mystic-gold); font-family: 'Playfair Display', serif; }
.footer-quote { font-style: italic; color: rgba(255, 255, 255, 0.7); line-height: 1.8; margin-bottom: var(--space-lg); max-width: 600px; margin-left: auto; margin-right: auto; font-family: 'Playfair Display', serif; }
.social-links { display: flex; justify-content: center; gap: var(--space-sm); margin-top: var(--space-md); }
.social-link { width: 40px; height: 40px; border: 1px solid rgba(212, 175, 55, 0.3); border-radius: 50%; display: flex; align-items: center; justify-content: center; color: var(--mystic-gold); text-decoration: none; transition: all 0.3s ease; }
.social-link:hover { background: var(--mystic-gold); color: var(--cosmic-dark); transform: translateY(-3px); }
.footer-bottom { padding-top: var(--space-lg); border-top: 1px solid rgba(212, 175, 55, 0.2); position: relative; z-index: 1; }
.footer-legal-links { margin-bottom: var(--space-sm); }
.footer-legal-links a { color: rgba(255, 255, 255, 0.5); text-decoration: none; margin: 0 var(--space-sm); transition: color 0.3s ease; }
.footer-legal-links a:hover { color: var(--mystic-gold); }
.footer-copyright { color: rgba(255, 255, 255, 0.5); font-size: 0.9rem; }

/* Language Selector */
.language-selector { display: flex; gap: 0.75rem; }
.lang-btn { padding: 0.5rem 1rem; background: transparent; border: 1px solid rgba(168, 107, 148, 0.4); color: var(--cosmic-purple); font-size: 0.9rem; font-weight: 600; font-family: 'Nunito Sans', sans-serif; letter-spacing: 0.05em; cursor: pointer; transition: all 0.3s ease; border-radius: 20px; text-transform: uppercase; }
.lang-btn:hover { background: var(--cosmic-purple); color: var(--crystal-white); border-color: var(--cosmic-purple); }
.lang-btn.active { background: var(--mystic-gold); color: var(--crystal-white); border-color: var(--mystic-gold); box-shadow: inset 0 1px 4px rgba(0,0,0,0.15); }

/* Mobile Menu Toggle */
.menu-toggle { display: none; flex-direction: column; cursor: pointer; gap: 5px; z-index: 1001; padding: 8px; }
.menu-toggle span { width: 25px; height: 2px; background: var(--cosmic-purple); transition: all 0.3s ease; border-radius: 2px; }
.menu-toggle.active span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.menu-toggle.active span:nth-child(2) { opacity: 0; }
.menu-toggle.active span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

/* Cookie Banner */
.cookie-banner { position: fixed; bottom: 0; left: 50%; transform: translateX(-50%) translateY(100%); width: calc(100% - 40px); max-width: 600px; background: rgba(26, 27, 58, 0.95); color: var(--crystal-white); padding: var(--space-lg); border-radius: 10px 10px 0 0; box-shadow: 0 -5px 30px rgba(26, 27, 58, 0.2); z-index: 2000; display: flex; flex-direction: column; align-items: center; text-align: center; backdrop-filter: blur(10px); transition: transform 0.5s ease-in-out; }
.cookie-banner.show { transform: translateX(-50%) translateY(0); }
.cookie-banner p { color: var(--moonlight); margin-bottom: var(--space-md); opacity: 0.9; font-size: 0.95rem; }
.cookie-buttons { display: flex; gap: var(--space-sm); }
.cookie-btn { padding: 0.6rem 1.5rem; border-radius: 20px; border: 1px solid transparent; cursor: pointer; font-size: 0.9rem; font-weight: 600; transition: all 0.3s ease; }
#cookie-accept { background-color: var(--mystic-gold); color: var(--cosmic-dark); }
#cookie-accept:hover { background-color: #e9c152; }
#cookie-decline { background-color: transparent; color: var(--moonlight); border-color: rgba(255, 255, 255, 0.3); }
#cookie-decline:hover { background-color: rgba(255, 255, 255, 0.1); }

/* Responsive Design */
@media (max-width: 968px) {
    :root { --container-padding: 1.5rem; }
    section { padding: var(--space-3xl) 0; }
    .menu-toggle { display: flex; }
    .nav-wrapper { display: none; position: fixed; left: 0; top: 75px; width: 100%; height: calc(100vh - 75px); flex-direction: column; background: var(--crystal-white); padding: var(--space-lg); box-shadow: 0 10px 40px var(--shadow-medium); border-top: 1px solid rgba(168, 107, 148, 0.1); gap: var(--space-lg); z-index: 999; overflow-y: auto; align-items: center; }
    .nav-wrapper.active { display: flex; }
    .nav-menu { flex-direction: column; gap: var(--space-md); width: 100%; }
    .nav-menu li { width: 100%; text-align: center; }
    .nav-link { display: block; padding: var(--space-sm); font-size: 1.2rem; }
    .btn-sacred { display: block; width: 100%; max-width: 300px; text-align: center; padding: var(--space-sm); margin: 0 auto; }
    .language-selector { justify-content: center; margin-top: var(--space-md); padding-top: var(--space-md); border-top: 1px solid var(--shadow-light); width: 100%; }
    h1 { font-size: 2.5rem; }
    .contact-content, .journey-section { grid-template-columns: 1fr; gap: var(--space-2xl); }
    .hero-image { margin-top: var(--space-xl); }
    .sacred-circle { width: 350px; height: 350px; }
    .hero-image-inner { width: 280px; height: 280px; }
    .profile-section { grid-template-columns: 1fr; text-align: center; }
    .profile-photo-container { max-width: 350px; margin: 0 auto; }
    
    .service-tabs-container { grid-template-columns: 1fr; }
    .service-tabs-nav { position: relative; top: 0; flex-direction: row; flex-wrap: wrap; justify-content: center; }
    .tab-nav-item { border-left: 1px solid transparent; border-bottom: 4px solid transparent; }
    .tab-nav-item.active { border-left-color: transparent; border-bottom-color: var(--cosmic-purple); }

    .autre-service-grid {
        grid-template-columns: 1fr 1fr;
    }
    .autre-service-grid .service-card:nth-child(3) {
        grid-column: 1 / -1; /* Prend toute la largeur */
    }
}
@media (max-width: 768px) {
    :root { --container-padding: 1rem; }
    h1 { font-size: 2rem; line-height: 1.2; } h2 { font-size: 1.8rem; } h3 { font-size: 1.4rem; }
    .sacred-circle { width: 300px; height: 300px; }
    .hero-image-inner { width: 240px; height: 240px; }
    .credentials-grid { grid-template-columns: 1fr; }
    .hero-buttons { flex-direction: column; width: 100%; max-width: 350px; margin: 0 auto; }
    .btn-primary, .btn-secondary { width: 100%; text-align: center; }

    .autre-service-grid { grid-template-columns: 1fr; }
    .autre-service-grid .service-card:nth-child(3) { grid-column: auto; }
}
@media (max-width: 480px) {
    h1 { font-size: 1.8rem; }
    .sacred-circle { width: 250px; height: 250px; }
    .hero-image-inner { width: 200px; height: 200px; }
    .tab-nav-item h4 { font-size: 1rem; }
}
@media print {
    header, footer, .hero-buttons, .energy-orb, .cookie-banner { display: none; }
    body { background: white; color: black; font-size: 12pt; }
    section { padding: 1.5rem 0; }
    h1, h2, h3, h4 { color: black; }
    a { text-decoration: none; color: black; }
    .hero-image, .profile-photo-frame, .service-tabs-container, .autre-service-grid { display: none; }
    .profile-section, .journey-section, .contact-content { grid-template-columns: 1fr; }
}