/* pages.css — per-page sections, namespaced under body.vv-<slug> */

/* ===== index ===== */
body.vv-index .hero { height: 100vh; display: flex; align-items: center; justify-content: center; position: relative; overflow: hidden; background: linear-gradient(rgba(253, 252, 249, 0.7), rgba(245, 241, 232, 0.7)), var(--vv-hero-img, transparent); background-size: cover; background-position: center; }

body.vv-index .hero::before { content: ''; position: absolute; top: 0; left: 0; right: 0; bottom: 0; background: radial-gradient(circle at 30% 50%, rgba(139, 157, 131, 0.1) 0%, transparent 50%); }

body.vv-index .hero-content { text-align: center; z-index: 10; max-width: 900px; padding: 0 2rem; animation: fadeInUp 1s ease 0.3s both; }

body.vv-index .hero-subtitle { font-size: 1rem; letter-spacing: 3px; text-transform: uppercase; color: var(--primary-sage); margin-bottom: 1.5rem; font-weight: 400; }

body.vv-index .hero h1 { font-family: 'Cormorant Garamond', serif; font-size: 4.5rem; font-weight: 300; color: var(--deep-earth); line-height: 1.2; margin-bottom: 2rem; letter-spacing: 1px; text-shadow: 0 2px 20px rgba(255,255,255,0.8); }

body.vv-index .hero-description { font-size: 1.25rem; color: var(--deep-earth); opacity: 0.95; margin-bottom: 3rem; line-height: 1.8; text-shadow: 0 1px 10px rgba(255,255,255,0.8); }

body.vv-index .cta-buttons { display: flex; gap: 2rem; justify-content: center; flex-wrap: wrap; }

body.vv-index .btn-primary:hover { background: #B56D50; transform: translateY(-3px); box-shadow: 0 15px 40px rgba(201, 125, 96, 0.4); }

body.vv-index .btn-secondary { background: rgba(255,255,255,0.9); color: var(--deep-earth); border: 2px solid var(--primary-sage); }

body.vv-index .btn-secondary:hover { background: var(--primary-sage); color: white; transform: translateY(-3px); }

body.vv-index .scroll-indicator { position: absolute; bottom: 3rem; left: 50%; transform: translateX(-50%); animation: bounce 2s infinite; }

body.vv-index .services { padding: 8rem 5%; background: var(--soft-white); }

body.vv-index .section-header { text-align: center; margin-bottom: 5rem; animation: fadeInUp 0.8s ease; }

body.vv-index .section-title { font-family: 'Cormorant Garamond', serif; font-size: 3rem; font-weight: 300; color: var(--deep-earth); margin-bottom: 1rem; }

body.vv-index .section-subtitle { font-size: 1.1rem; color: var(--primary-sage); letter-spacing: 1px; }

body.vv-index .services-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 3rem; max-width: 1200px; margin: 0 auto; }

body.vv-index .service-category { max-width: 1200px; margin: 5rem auto 2rem; text-align: center; }

body.vv-index .category-title { font-family: 'Cormorant Garamond', serif; font-size: 2rem; font-weight: 400; color: var(--primary-sage); margin-bottom: 0; display: inline-block; position: relative; padding-bottom: 1rem; }

body.vv-index .category-title::after { content: ''; position: absolute; bottom: 0; left: 50%; transform: translateX(-50%); width: 60px; height: 2px; background: var(--accent-terracotta); }

body.vv-index .services-grid-full { max-width: 1200px; margin: 0 auto; }

body.vv-index .service-card { background: white; border-radius: 0; position: relative; overflow: hidden; transition: all 0.5s ease; box-shadow: 0 5px 30px rgba(0,0,0,0.08); }

body.vv-index .new-badge { position: absolute; top: 1rem; right: 1rem; background: var(--accent-terracotta); color: white; padding: 0.5rem 1.2rem; border-radius: 30px; font-size: 0.85rem; font-weight: 600; letter-spacing: 0.5px; z-index: 10; box-shadow: 0 4px 15px rgba(201, 125, 96, 0.4); text-transform: uppercase; }

body.vv-index .service-card::before { content: ''; position: absolute; top: 0; left: 0; width: 4px; height: 0; background: var(--accent-terracotta); transition: height 0.5s ease; z-index: 2; }

body.vv-index .service-card:hover { transform: translateY(-10px); box-shadow: 0 15px 50px rgba(0,0,0,0.15); }

body.vv-index .service-card:hover::before { height: 100%; }

body.vv-index .service-image { width: 100%; height: 220px; object-fit: cover; display: block; }

body.vv-index .service-content { padding: 2.5rem 2rem; }

body.vv-index .service-card h3 { font-family: 'Cormorant Garamond', serif; font-size: 1.8rem; margin-bottom: 1rem; color: var(--deep-earth); }

body.vv-index .service-card p { font-size: 1rem; line-height: 1.8; color: var(--deep-earth); opacity: 0.8; margin-bottom: 1.5rem; }

body.vv-index .service-link { color: var(--accent-terracotta); text-decoration: none; font-weight: 600; display: inline-flex; align-items: center; gap: 0.5rem; transition: gap 0.3s ease; }

body.vv-index .service-link:hover { gap: 1rem; }

body.vv-index .service-card.full-width { grid-column: 1 / -1; max-width: 100%; }

body.vv-index .service-card.full-width .service-image { height: 180px; }

body.vv-index .service-card.full-width .service-content { padding: 1.5rem 2rem; display: flex; align-items: center; gap: 3rem; }

body.vv-index .service-card.full-width h3 { font-size: 1.5rem; margin-bottom: 0.5rem; min-width: 200px; }

body.vv-index .service-card.full-width p { margin-bottom: 0; flex: 1; }

body.vv-index .featured { background: linear-gradient(135deg, var(--primary-sage) 0%, var(--muted-olive) 100%); padding: 8rem 5%; position: relative; overflow: hidden; }

body.vv-index .featured::before { content: ''; position: absolute; top: 0; left: 0; right: 0; bottom: 0; background-image: radial-gradient(circle at 20% 80%, rgba(255,255,255,0.1) 0%, transparent 50%), radial-gradient(circle at 80% 20%, rgba(255,255,255,0.15) 0%, transparent 50%); pointer-events: none; }

body.vv-index .featured-content { max-width: 1200px; margin: 0 auto; display: grid; grid-template-columns: 1fr 1fr; gap: 5rem; align-items: center; position: relative; z-index: 1; }

body.vv-index .featured-text h2 { font-family: 'Cormorant Garamond', serif; font-size: 3.5rem; color: white; margin-bottom: 1.5rem; font-weight: 300; }

body.vv-index .featured-text p { font-size: 1.2rem; color: rgba(255,255,255,0.95); line-height: 1.9; margin-bottom: 2rem; }

body.vv-index .podcast-badge { background: white; color: var(--primary-sage); padding: 0.5rem 1.5rem; display: inline-block; border-radius: 50px; font-size: 0.9rem; font-weight: 600; letter-spacing: 1px; margin-bottom: 2rem; }

body.vv-index .featured-visual { position: relative; height: 400px; border-radius: 20px; overflow: hidden; box-shadow: 0 20px 60px rgba(0,0,0,0.3); }

body.vv-index .featured-visual img { width: 100%; height: 100%; object-fit: cover; }

body.vv-index .testimonials { padding: 8rem 5%; background: var(--secondary-cream); }

body.vv-index .testimonial-slider { max-width: 900px; margin: 0 auto; text-align: center; }

body.vv-index .testimonial { background: white; padding: 4rem 3rem; border-radius: 10px; box-shadow: 0 10px 40px rgba(0,0,0,0.08); }

body.vv-index .testimonial-text { font-family: 'Cormorant Garamond', serif; font-size: 1.5rem; font-style: italic; color: var(--deep-earth); margin-bottom: 2rem; line-height: 1.8; }

body.vv-index .testimonial-author { font-size: 1rem; color: var(--primary-sage); font-weight: 600; }

body.vv-index .cta-section { background: var(--deep-earth); padding: 6rem 5%; text-align: center; color: white; }

body.vv-index .cta-section h2 { font-family: 'Cormorant Garamond', serif; font-size: 3rem; font-weight: 300; margin-bottom: 1.5rem; }

body.vv-index .cta-section p { font-size: 1.2rem; margin-bottom: 3rem; opacity: 0.9; }

body.vv-index .footer-section p, body.vv-index .footer-section a { color: var(--deep-earth); opacity: 0.7; text-decoration: none; display: block; margin-bottom: 0.8rem; transition: opacity 0.3s ease; }

body.vv-index .footer-section a:hover { opacity: 1; color: var(--accent-terracotta); }

@media (max-width: 768px) {
  body.vv-index .nav-links { display: none; } ; body.vv-index .hero h1 { font-size: 2.5rem; } ; body.vv-index .featured-content { grid-template-columns: 1fr; } ; body.vv-index .cta-buttons { flex-direction: column; align-items: center; } ; body.vv-index .services-grid { grid-template-columns: 1fr; } ; body.vv-index .category-title { font-size: 1.5rem; } ; body.vv-index .service-card.full-width .service-content { flex-direction: column; align-items: flex-start; } ; body.vv-index .service-card.full-width h3 { min-width: auto; }
}

/* ===== communication-animale ===== */
body.vv-communication-animale nav { position: fixed; top: 0; width: 100%; background: rgba(253, 252, 249, 0.95); backdrop-filter: blur(10px); z-index: 1000; padding: 1.5rem 5%; display: flex; justify-content: space-between; align-items: center; box-shadow: 0 2px 20px rgba(0,0,0,0.05); animation: slideDown 0.6s ease; }

body.vv-communication-animale .logo { font-family: 'Cormorant Garamond', serif; font-size: 1.8rem; font-weight: 300; color: var(--deep-earth); letter-spacing: 2px; text-decoration: none; }

body.vv-communication-animale .nav-links { display: flex; gap: 3rem; list-style: none; }

body.vv-communication-animale .nav-links a { color: var(--deep-earth); text-decoration: none; font-size: 0.95rem; letter-spacing: 0.5px; transition: color 0.3s ease; position: relative; }

body.vv-communication-animale .nav-links a::after { content: ''; position: absolute; bottom: -5px; left: 0; width: 0; height: 1px; background: var(--accent-terracotta); transition: width 0.3s ease; }

body.vv-communication-animale .nav-links a:hover { color: var(--accent-terracotta); }

body.vv-communication-animale .nav-links a:hover::after { width: 100%; }

body.vv-communication-animale .page-hero { padding: 12rem 5% 6rem; background: linear-gradient(rgba(253, 252, 249, 0.85), rgba(245, 241, 232, 0.85)), var(--vv-hero-img, transparent); background-size: cover; background-position: center; text-align: center; position: relative; overflow: hidden; }

body.vv-communication-animale .page-hero::before { content: ''; position: absolute; top: 20%; left: 10%; width: 400px; height: 400px; border-radius: 50%; background: radial-gradient(circle, rgba(139, 157, 131, 0.1) 0%, transparent 70%); animation: float 15s ease-in-out infinite; }

body.vv-communication-animale .page-hero::after { content: ''; position: absolute; bottom: 20%; right: 10%; width: 350px; height: 350px; border-radius: 50%; background: radial-gradient(circle, rgba(201, 125, 96, 0.1) 0%, transparent 70%); animation: float 18s ease-in-out infinite reverse; }

body.vv-communication-animale .page-hero h1 { font-family: 'Cormorant Garamond', serif; font-size: 4rem; font-weight: 300; color: var(--deep-earth); margin-bottom: 1.5rem; letter-spacing: 1px; text-shadow: 0 2px 20px rgba(255,255,255,0.9); }

body.vv-communication-animale .page-hero p { font-size: 1.3rem; color: var(--deep-earth); opacity: 0.95; max-width: 800px; margin: 0 auto 3rem; line-height: 1.9; text-shadow: 0 1px 10px rgba(255,255,255,0.9); }

body.vv-communication-animale .breadcrumb { display: inline-flex; gap: 0.5rem; align-items: center; font-size: 0.9rem; color: var(--primary-sage); margin-bottom: 2rem; }

body.vv-communication-animale .breadcrumb a { color: var(--primary-sage); text-decoration: none; transition: color 0.3s ease; }

body.vv-communication-animale .breadcrumb a:hover { color: var(--accent-terracotta); }

body.vv-communication-animale .ca-understanding { padding: 6rem 5%; max-width: 1100px; margin: 0 auto; }

body.vv-communication-animale .content-box { background: white; padding: 4rem 3.5rem; border-radius: 8px; box-shadow: 0 10px 40px rgba(0,0,0,0.08); margin-bottom: 3rem; }

body.vv-communication-animale .content-box h2 { font-family: 'Cormorant Garamond', serif; font-size: 2.5rem; font-weight: 300; color: var(--deep-earth); margin-bottom: 2rem; }

body.vv-communication-animale .content-box p { font-size: 1.15rem; line-height: 1.9; color: var(--deep-earth); opacity: 0.9; margin-bottom: 1.5rem; }

body.vv-communication-animale .content-box h3 { font-family: 'Cormorant Garamond', serif; font-size: 1.8rem; color: var(--primary-sage); margin-top: 2.5rem; margin-bottom: 1.5rem; }

body.vv-communication-animale .services-options { padding: 6rem 5%; background: var(--secondary-cream); }

body.vv-communication-animale .section-title { font-family: 'Cormorant Garamond', serif; font-size: 3rem; font-weight: 300; color: var(--deep-earth); text-align: center; margin-bottom: 1rem; }

body.vv-communication-animale .section-subtitle { text-align: center; font-size: 1.1rem; color: var(--primary-sage); margin-bottom: 4rem; letter-spacing: 0.5px; }

body.vv-communication-animale .options-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(350px, 1fr)); gap: 3rem; max-width: 1200px; margin: 0 auto; }

body.vv-communication-animale .option-card { background: white; padding: 3.5rem 3rem; border-radius: 8px; box-shadow: 0 10px 40px rgba(0,0,0,0.08); position: relative; transition: all 0.4s ease; display: flex; flex-direction: column; }

body.vv-communication-animale .option-card::before { content: ''; position: absolute; top: 0; left: 0; right: 0; height: 5px; background: linear-gradient(90deg, var(--primary-sage), var(--accent-terracotta)); opacity: 0; transition: opacity 0.4s ease; }

body.vv-communication-animale .option-card:hover { transform: translateY(-8px); box-shadow: 0 20px 60px rgba(0,0,0,0.12); }

body.vv-communication-animale .option-card:hover::before { opacity: 1; }

body.vv-communication-animale .option-badge { display: inline-block; padding: 0.5rem 1.2rem; background: var(--primary-sage); color: white; border-radius: 30px; font-size: 0.85rem; font-weight: 600; letter-spacing: 1px; margin-bottom: 1.5rem; text-transform: uppercase; }

body.vv-communication-animale .option-card h3 { font-family: 'Cormorant Garamond', serif; font-size: 2rem; color: var(--deep-earth); margin-bottom: 1.5rem; }

body.vv-communication-animale .option-card p { font-size: 1.05rem; line-height: 1.8; color: var(--deep-earth); opacity: 0.85; margin-bottom: 1.5rem; }

body.vv-communication-animale .option-card ul { list-style: none; margin-bottom: 2rem; }

body.vv-communication-animale .option-card ul li { padding-left: 1.5rem; position: relative; margin-bottom: 0.8rem; color: var(--deep-earth); opacity: 0.85; }

body.vv-communication-animale .option-card ul li::before { content: '✓'; position: absolute; left: 0; color: var(--primary-sage); font-weight: bold; }

body.vv-communication-animale .option-card-footer { margin-top: auto; padding-top: 1rem; }

body.vv-communication-animale .price { font-family: 'Cormorant Garamond', serif; font-size: 2.5rem; color: var(--accent-terracotta); font-weight: 600; margin-bottom: 1.5rem; }

body.vv-communication-animale .btn { padding: 1rem 2.5rem; border: none; font-family: 'Philosopher', sans-serif; font-size: 1rem; letter-spacing: 1px; cursor: pointer; transition: all 0.4s ease; text-decoration: none; display: inline-block; width: 100%; text-align: center; }

body.vv-communication-animale .btn-primary { background: var(--accent-terracotta); color: white; box-shadow: 0 10px 30px rgba(201, 125, 96, 0.3); }

body.vv-communication-animale .btn-primary:hover { background: #B56D50; transform: translateY(-3px); box-shadow: 0 15px 40px rgba(201, 125, 96, 0.4); }

body.vv-communication-animale .additional-services { padding: 6rem 5%; background: var(--soft-white); }

body.vv-communication-animale .services-list { max-width: 900px; margin: 0 auto; background: white; padding: 3rem; border-radius: 8px; box-shadow: 0 10px 40px rgba(0,0,0,0.08); }

body.vv-communication-animale .services-list p { font-size: 1.1rem; line-height: 1.8; margin-bottom: 2rem; color: var(--deep-earth); opacity: 0.9; }

body.vv-communication-animale .services-list ul { list-style: none; display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: 1.5rem; }

body.vv-communication-animale .services-list ul li { padding: 1rem 1.5rem; background: var(--secondary-cream); border-radius: 5px; text-align: center; color: var(--deep-earth); font-weight: 600; }

body.vv-communication-animale .payment-terms { padding: 6rem 5%; background: var(--secondary-cream); }

body.vv-communication-animale .terms-content { max-width: 900px; margin: 0 auto; }

body.vv-communication-animale .terms-box { background: white; padding: 3rem; border-radius: 8px; margin-bottom: 2rem; box-shadow: 0 5px 20px rgba(0,0,0,0.06); }

body.vv-communication-animale .terms-box h3 { font-family: 'Cormorant Garamond', serif; font-size: 1.8rem; color: var(--deep-earth); margin-bottom: 1.5rem; }

body.vv-communication-animale .terms-box p, body.vv-communication-animale .terms-box ul li { font-size: 1.05rem; line-height: 1.8; color: var(--deep-earth); opacity: 0.85; margin-bottom: 1rem; }

body.vv-communication-animale .terms-box ul { list-style: none; margin-left: 1rem; }

body.vv-communication-animale .terms-box ul li::before { content: '•'; color: var(--accent-terracotta); font-weight: bold; display: inline-block; width: 1.5rem; margin-left: -1.5rem; }

body.vv-communication-animale .bank-details { background: var(--primary-sage); color: white; padding: 1.5rem; border-radius: 5px; text-align: center; font-size: 1.1rem; font-weight: 600; letter-spacing: 0.5px; margin-top: 1rem; }

body.vv-communication-animale .cta-section { background: var(--deep-earth); padding: 6rem 5%; text-align: center; color: white; }

body.vv-communication-animale .cta-section h2 { font-family: 'Cormorant Garamond', serif; font-size: 3rem; font-weight: 300; margin-bottom: 1.5rem; }

body.vv-communication-animale .cta-section p { font-size: 1.2rem; margin-bottom: 3rem; opacity: 0.9; }

body.vv-communication-animale footer { background: var(--soft-white); padding: 4rem 5% 2rem; border-top: 1px solid rgba(139, 157, 131, 0.2); }

body.vv-communication-animale .footer-content { max-width: 1200px; margin: 0 auto; display: grid; grid-template-columns: repeat(auto-fit, minmin(250px, 1fr)); gap: 3rem; margin-bottom: 3rem; }

body.vv-communication-animale .footer-section h4 { font-family: 'Cormorant Garamond', serif; font-size: 1.5rem; margin-bottom: 1.5rem; color: var(--deep-earth); }

body.vv-communication-animale .footer-section p, body.vv-communication-animale .footer-section a { color: var(--deep-earth); opacity: 0.7; text-decoration: none; display: block; margin-bottom: 0.8rem; transition: opacity 0.3s ease; }

body.vv-communication-animale .footer-section a:hover { opacity: 1; color: var(--accent-terracotta); }

body.vv-communication-animale .footer-bottom { text-align: center; padding-top: 2rem; border-top: 1px solid rgba(139, 157, 131, 0.2); color: var(--deep-earth); opacity: 0.6; font-size: 0.9rem; }

@media (max-width: 768px) {
  body.vv-communication-animale .nav-links { display: none; } ; body.vv-communication-animale .page-hero h1 { font-size: 2.5rem; } ; body.vv-communication-animale .options-grid { grid-template-columns: 1fr; } ; body.vv-communication-animale .section-title { font-size: 2rem; }
}

/* ===== accompagnement-deuil ===== */
body.vv-accompagnement-deuil nav { position: fixed; top: 0; width: 100%; background: rgba(253, 252, 249, 0.95); backdrop-filter: blur(10px); z-index: 1000; padding: 1.5rem 5%; display: flex; justify-content: space-between; align-items: center; box-shadow: 0 2px 20px rgba(0,0,0,0.05); animation: slideDown 0.6s ease; }

body.vv-accompagnement-deuil .logo { font-family: 'Cormorant Garamond', serif; font-size: 1.8rem; font-weight: 300; color: var(--deep-earth); letter-spacing: 2px; text-decoration: none; }

body.vv-accompagnement-deuil .nav-links { display: flex; gap: 3rem; list-style: none; }

body.vv-accompagnement-deuil .nav-links a { color: var(--deep-earth); text-decoration: none; font-size: 0.95rem; letter-spacing: 0.5px; transition: color 0.3s ease; position: relative; }

body.vv-accompagnement-deuil .nav-links a::after { content: ''; position: absolute; bottom: -5px; left: 0; width: 0; height: 1px; background: var(--accent-terracotta); transition: width 0.3s ease; }

body.vv-accompagnement-deuil .nav-links a:hover { color: var(--accent-terracotta); }

body.vv-accompagnement-deuil .nav-links a:hover::after { width: 100%; }

body.vv-accompagnement-deuil .page-hero { padding: 12rem 5% 6rem; background: linear-gradient(rgba(232, 228, 217, 0.85), rgba(245, 241, 232, 0.85)), var(--vv-hero-img, transparent); background-size: cover; background-position: center; text-align: center; position: relative; overflow: hidden; }

body.vv-accompagnement-deuil .page-hero::before { content: ''; position: absolute; top: 20%; left: 10%; width: 400px; height: 400px; border-radius: 50%; background: radial-gradient(circle, rgba(168, 181, 160, 0.1) 0%, transparent 70%); animation: float 15s ease-in-out infinite; }

body.vv-accompagnement-deuil .page-hero::after { content: ''; position: absolute; bottom: 20%; right: 10%; width: 350px; height: 350px; border-radius: 50%; background: radial-gradient(circle, rgba(212, 175, 55, 0.1) 0%, transparent 70%); animation: float 18s ease-in-out infinite reverse; }

body.vv-accompagnement-deuil .page-hero h1 { font-family: 'Cormorant Garamond', serif; font-size: 4rem; font-weight: 300; color: var(--deep-earth); margin-bottom: 1.5rem; letter-spacing: 1px; text-shadow: 0 2px 20px rgba(255,255,255,0.9); }

body.vv-accompagnement-deuil .page-hero p { font-size: 1.3rem; color: var(--deep-earth); opacity: 0.95; max-width: 800px; margin: 0 auto 3rem; line-height: 1.9; text-shadow: 0 1px 10px rgba(255,255,255,0.9); }

body.vv-accompagnement-deuil .breadcrumb { display: inline-flex; gap: 0.5rem; align-items: center; font-size: 0.9rem; color: var(--primary-sage); margin-bottom: 2rem; }

body.vv-accompagnement-deuil .breadcrumb a { color: var(--primary-sage); text-decoration: none; transition: color 0.3s ease; }

body.vv-accompagnement-deuil .breadcrumb a:hover { color: var(--accent-terracotta); }

body.vv-accompagnement-deuil .grief-understanding { padding: 6rem 5%; max-width: 1100px; margin: 0 auto; }

body.vv-accompagnement-deuil .content-box { background: white; padding: 4rem 3.5rem; border-radius: 8px; box-shadow: 0 10px 40px rgba(0,0,0,0.08); margin-bottom: 3rem; }

body.vv-accompagnement-deuil .content-box h2 { font-family: 'Cormorant Garamond', serif; font-size: 2.5rem; font-weight: 300; color: var(--deep-earth); margin-bottom: 2rem; }

body.vv-accompagnement-deuil .content-box p { font-size: 1.15rem; line-height: 1.9; color: var(--deep-earth); opacity: 0.9; margin-bottom: 1.5rem; }

body.vv-accompagnement-deuil .content-box h3 { font-family: 'Cormorant Garamond', serif; font-size: 1.8rem; color: var(--primary-sage); margin-top: 2.5rem; margin-bottom: 1.5rem; }

body.vv-accompagnement-deuil .content-box ul { list-style: none; margin: 1.5rem 0; }

body.vv-accompagnement-deuil .content-box ul li { padding-left: 2rem; position: relative; margin-bottom: 1rem; font-size: 1.1rem; line-height: 1.8; color: var(--deep-earth); opacity: 0.9; }

body.vv-accompagnement-deuil .content-box ul li::before { content: '✓'; position: absolute; left: 0; color: var(--light-gold); font-weight: bold; font-size: 1.2rem; }

body.vv-accompagnement-deuil .important-note { background: linear-gradient(135deg, var(--light-gold) 0%, #C9A962 100%); color: white; padding: 3rem; border-radius: 8px; margin-top: 3rem; box-shadow: 0 10px 30px rgba(212, 175, 55, 0.3); }

body.vv-accompagnement-deuil .important-note strong { display: block; font-size: 1.3rem; margin-bottom: 1rem; }

body.vv-accompagnement-deuil .important-note p { font-size: 1.1rem; line-height: 1.8; color: white; opacity: 0.95; }

body.vv-accompagnement-deuil .connection-section { padding: 6rem 5%; background: var(--secondary-cream); }

body.vv-accompagnement-deuil .section-title { font-family: 'Cormorant Garamond', serif; font-size: 3rem; font-weight: 300; color: var(--deep-earth); text-align: center; margin-bottom: 1rem; }

body.vv-accompagnement-deuil .section-subtitle { text-align: center; font-size: 1.1rem; color: var(--primary-sage); margin-bottom: 4rem; letter-spacing: 0.5px; }

body.vv-accompagnement-deuil .connection-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 3rem; max-width: 1200px; margin: 0 auto; }

body.vv-accompagnement-deuil .connection-card { background: white; padding: 3rem; border-radius: 8px; box-shadow: 0 10px 40px rgba(0,0,0,0.08); }

body.vv-accompagnement-deuil .connection-card h3 { font-family: 'Cormorant Garamond', serif; font-size: 2rem; color: var(--deep-earth); margin-bottom: 1.5rem; }

body.vv-accompagnement-deuil .connection-card p { font-size: 1.1rem; line-height: 1.9; color: var(--deep-earth); opacity: 0.9; margin-bottom: 1.2rem; }

body.vv-accompagnement-deuil .connection-card ul { list-style: none; margin-top: 1.5rem; }

body.vv-accompagnement-deuil .connection-card ul li { padding-left: 2rem; position: relative; margin-bottom: 1rem; font-size: 1.05rem; line-height: 1.7; color: var(--deep-earth); opacity: 0.9; }

body.vv-accompagnement-deuil .connection-card ul li::before { content: '•'; position: absolute; left: 0.5rem; color: var(--accent-terracotta); font-weight: bold; font-size: 1.5rem; }

body.vv-accompagnement-deuil .how-it-works { padding: 6rem 5%; max-width: 1000px; margin: 0 auto; }

body.vv-accompagnement-deuil .how-it-works h2 { font-family: 'Cormorant Garamond', serif; font-size: 3rem; font-weight: 300; color: var(--deep-earth); text-align: center; margin-bottom: 3rem; }

body.vv-accompagnement-deuil .steps { display: grid; gap: 2rem; }

body.vv-accompagnement-deuil .step { background: white; padding: 2.5rem; border-radius: 8px; box-shadow: 0 5px 20px rgba(0,0,0,0.06); display: flex; gap: 2rem; align-items: flex-start; }

body.vv-accompagnement-deuil .step-number { font-family: 'Cormorant Garamond', serif; font-size: 3rem; color: var(--primary-sage); font-weight: 300; line-height: 1; min-width: 60px; }

body.vv-accompagnement-deuil .step-content h3 { font-family: 'Cormorant Garamond', serif; font-size: 1.8rem; color: var(--deep-earth); margin-bottom: 1rem; }

body.vv-accompagnement-deuil .step-content p { font-size: 1.1rem; line-height: 1.8; color: var(--deep-earth); opacity: 0.85; }

body.vv-accompagnement-deuil .pricing-section { padding: 6rem 5%; background: var(--secondary-cream); }

body.vv-accompagnement-deuil .pricing-card { max-width: 700px; margin: 0 auto; background: white; padding: 4rem 3rem; border-radius: 8px; box-shadow: 0 10px 40px rgba(0,0,0,0.08); text-align: center; }

body.vv-accompagnement-deuil .pricing-card h3 { font-family: 'Cormorant Garamond', serif; font-size: 2rem; color: var(--deep-earth); margin-bottom: 1.5rem; }

body.vv-accompagnement-deuil .pricing-card p { font-size: 1.1rem; line-height: 1.8; color: var(--deep-earth); opacity: 0.85; margin-bottom: 2rem; }

body.vv-accompagnement-deuil .price { font-family: 'Cormorant Garamond', serif; font-size: 3rem; color: var(--accent-terracotta); font-weight: 600; margin-bottom: 2rem; }

body.vv-accompagnement-deuil .btn { padding: 1rem 2.5rem; border: none; font-family: 'Philosopher', sans-serif; font-size: 1rem; letter-spacing: 1px; cursor: pointer; transition: all 0.4s ease; text-decoration: none; display: inline-block; }

body.vv-accompagnement-deuil .btn-primary { background: var(--accent-terracotta); color: white; box-shadow: 0 10px 30px rgba(201, 125, 96, 0.3); }

body.vv-accompagnement-deuil .btn-primary:hover { background: #B56D50; transform: translateY(-3px); box-shadow: 0 15px 40px rgba(201, 125, 96, 0.4); }

body.vv-accompagnement-deuil .cta-section { background: var(--deep-earth); padding: 6rem 5%; text-align: center; color: white; }

body.vv-accompagnement-deuil .cta-section h2 { font-family: 'Cormorant Garamond', serif; font-size: 3rem; font-weight: 300; margin-bottom: 1.5rem; }

body.vv-accompagnement-deuil .cta-section p { font-size: 1.2rem; margin-bottom: 3rem; opacity: 0.9; }

body.vv-accompagnement-deuil footer { background: var(--soft-white); padding: 4rem 5% 2rem; border-top: 1px solid rgba(139, 157, 131, 0.2); }

body.vv-accompagnement-deuil .footer-content { max-width: 1200px; margin: 0 auto; display: grid; grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); gap: 3rem; margin-bottom: 3rem; }

body.vv-accompagnement-deuil .footer-section h4 { font-family: 'Cormorant Garamond', serif; font-size: 1.5rem; margin-bottom: 1.5rem; color: var(--deep-earth); }

body.vv-accompagnement-deuil .footer-section p, body.vv-accompagnement-deuil .footer-section a { color: var(--deep-earth); opacity: 0.7; text-decoration: none; display: block; margin-bottom: 0.8rem; transition: opacity 0.3s ease; }

body.vv-accompagnement-deuil .footer-section a:hover { opacity: 1; color: var(--accent-terracotta); }

body.vv-accompagnement-deuil .footer-bottom { text-align: center; padding-top: 2rem; border-top: 1px solid rgba(139, 157, 131, 0.2); color: var(--deep-earth); opacity: 0.6; font-size: 0.9rem; }

@media (max-width: 768px) {
  body.vv-accompagnement-deuil .nav-links { display: none; } ; body.vv-accompagnement-deuil .page-hero h1 { font-size: 2.5rem; } ; body.vv-accompagnement-deuil .connection-grid { grid-template-columns: 1fr; } ; body.vv-accompagnement-deuil .section-title { font-size: 2rem; } ; body.vv-accompagnement-deuil .step { flex-direction: column; } ; body.vv-accompagnement-deuil .step-number { min-width: auto; }
}

/* ===== coupe-energetique ===== */
body.vv-coupe-energetique nav { position: fixed; top: 0; width: 100%; background: rgba(253, 252, 249, 0.95); backdrop-filter: blur(10px); z-index: 1000; padding: 1.5rem 5%; display: flex; justify-content: space-between; align-items: center; box-shadow: 0 2px 20px rgba(0,0,0,0.05); animation: slideDown 0.6s ease; }

body.vv-coupe-energetique .logo { font-family: 'Cormorant Garamond', serif; font-size: 1.8rem; font-weight: 300; color: var(--deep-earth); letter-spacing: 2px; text-decoration: none; }

body.vv-coupe-energetique .nav-links { display: flex; gap: 3rem; list-style: none; }

body.vv-coupe-energetique .nav-links a { color: var(--deep-earth); text-decoration: none; font-size: 0.95rem; letter-spacing: 0.5px; transition: color 0.3s ease; position: relative; }

body.vv-coupe-energetique .nav-links a::after { content: ''; position: absolute; bottom: -5px; left: 0; width: 0; height: 1px; background: var(--accent-terracotta); transition: width 0.3s ease; }

body.vv-coupe-energetique .nav-links a:hover { color: var(--accent-terracotta); }

body.vv-coupe-energetique .nav-links a:hover::after { width: 100%; }

body.vv-coupe-energetique .page-hero { padding: 12rem 5% 6rem; background: linear-gradient(rgba(253, 252, 249, 0.85), rgba(245, 241, 232, 0.85)), var(--vv-hero-img, transparent); background-size: cover; background-position: center; text-align: center; position: relative; overflow: hidden; }

body.vv-coupe-energetique .page-hero::before { content: ''; position: absolute; top: 20%; left: 10%; width: 400px; height: 400px; border-radius: 50%; background: radial-gradient(circle, rgba(139, 157, 131, 0.1) 0%, transparent 70%); animation: float 15s ease-in-out infinite; }

body.vv-coupe-energetique .page-hero::after { content: ''; position: absolute; bottom: 20%; right: 10%; width: 350px; height: 350px; border-radius: 50%; background: radial-gradient(circle, rgba(201, 125, 96, 0.1) 0%, transparent 70%); animation: float 18s ease-in-out infinite reverse; }

body.vv-coupe-energetique .page-hero h1 { font-family: 'Cormorant Garamond', serif; font-size: 4rem; font-weight: 300; color: var(--deep-earth); margin-bottom: 1.5rem; letter-spacing: 1px; text-shadow: 0 2px 20px rgba(255,255,255,0.9); }

body.vv-coupe-energetique .page-hero p { font-size: 1.3rem; color: var(--deep-earth); opacity: 0.95; max-width: 800px; margin: 0 auto 3rem; line-height: 1.9; text-shadow: 0 1px 10px rgba(255,255,255,0.9); }

body.vv-coupe-energetique .breadcrumb { display: inline-flex; gap: 0.5rem; align-items: center; font-size: 0.9rem; color: var(--primary-sage); margin-bottom: 2rem; }

body.vv-coupe-energetique .breadcrumb a { color: var(--primary-sage); text-decoration: none; transition: color 0.3s ease; }

body.vv-coupe-energetique .breadcrumb a:hover { color: var(--accent-terracotta); }

body.vv-coupe-energetique .understanding-section { padding: 6rem 5%; max-width: 1100px; margin: 0 auto; }

body.vv-coupe-energetique .content-box { background: white; padding: 4rem 3.5rem; border-radius: 8px; box-shadow: 0 10px 40px rgba(0,0,0,0.08); margin-bottom: 3rem; }

body.vv-coupe-energetique .content-box h2 { font-family: 'Cormorant Garamond', serif; font-size: 2.5rem; font-weight: 300; color: var(--deep-earth); margin-bottom: 2rem; }

body.vv-coupe-energetique .content-box p { font-size: 1.15rem; line-height: 1.9; color: var(--deep-earth); opacity: 0.9; margin-bottom: 1.5rem; }

body.vv-coupe-energetique .content-box h3 { font-family: 'Cormorant Garamond', serif; font-size: 1.8rem; color: var(--primary-sage); margin-top: 2.5rem; margin-bottom: 1.5rem; }

body.vv-coupe-energetique .content-box strong { color: var(--accent-terracotta); }

body.vv-coupe-energetique .services-section { padding: 6rem 5%; background: var(--secondary-cream); }

body.vv-coupe-energetique .section-title { font-family: 'Cormorant Garamond', serif; font-size: 3rem; font-weight: 300; color: var(--deep-earth); text-align: center; margin-bottom: 1rem; }

body.vv-coupe-energetique .section-subtitle { text-align: center; font-size: 1.1rem; color: var(--primary-sage); margin-bottom: 4rem; letter-spacing: 0.5px; }

body.vv-coupe-energetique .services-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(350px, 1fr)); gap: 3rem; max-width: 1200px; margin: 0 auto; }

body.vv-coupe-energetique .service-card { background: white; padding: 3.5rem 3rem; border-radius: 8px; box-shadow: 0 10px 40px rgba(0,0,0,0.08); position: relative; display: flex; flex-direction: column; transition: all 0.4s ease; }

body.vv-coupe-energetique .service-card::before { content: ''; position: absolute; top: 0; left: 0; right: 0; height: 5px; background: linear-gradient(90deg, var(--primary-sage), var(--accent-terracotta)); opacity: 0; transition: opacity 0.4s ease; }

body.vv-coupe-energetique .service-card:hover { transform: translateY(-8px); box-shadow: 0 20px 60px rgba(0,0,0,0.12); }

body.vv-coupe-energetique .service-card:hover::before { opacity: 1; }

body.vv-coupe-energetique .service-card h3 { font-family: 'Cormorant Garamond', serif; font-size: 2rem; color: var(--deep-earth); margin-bottom: 1rem; }

body.vv-coupe-energetique .duration { font-size: 0.95rem; color: var(--primary-sage); margin-bottom: 1.5rem; font-weight: 600; }

body.vv-coupe-energetique .service-card p { font-size: 1.05rem; line-height: 1.8; color: var(--deep-earth); opacity: 0.85; margin-bottom: 1.5rem; flex: 1; }

body.vv-coupe-energetique .price { font-family: 'Cormorant Garamond', serif; font-size: 2.5rem; color: var(--accent-terracotta); font-weight: 600; margin-bottom: 1.5rem; }

body.vv-coupe-energetique .btn { padding: 1rem 2.5rem; border: none; font-family: 'Philosopher', sans-serif; font-size: 1rem; letter-spacing: 1px; cursor: pointer; transition: all 0.4s ease; text-decoration: none; display: inline-block; width: 100%; text-align: center; }

body.vv-coupe-energetique .btn-primary { background: var(--accent-terracotta); color: white; box-shadow: 0 10px 30px rgba(201, 125, 96, 0.3); }

body.vv-coupe-energetique .btn-primary:hover { background: #B56D50; transform: translateY(-3px); box-shadow: 0 15px 40px rgba(201, 125, 96, 0.4); }

body.vv-coupe-energetique .contact-section { padding: 6rem 5%; background: var(--soft-white); }

body.vv-coupe-energetique .testimonials-section { padding: 6rem 5%; background: var(--secondary-cream); }

body.vv-coupe-energetique .testimonials-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(350px, 1fr)); gap: 2rem; max-width: 1200px; margin: 0 auto 3rem; }

body.vv-coupe-energetique .testimonial-card { background: white; padding: 2.5rem; border-radius: 8px; box-shadow: 0 2px 10px rgba(0,0,0,0.08); transition: all 0.3s ease; }

body.vv-coupe-energetique .testimonial-card:hover { box-shadow: 0 8px 25px rgba(0,0,0,0.12); transform: translateY(-3px); }

body.vv-coupe-energetique .testimonial-header { display: flex; align-items: center; gap: 1rem; margin-bottom: 1.5rem; }

body.vv-coupe-energetique .avatar { width: 50px; height: 50px; border-radius: 50%; background: var(--primary-sage); color: white; display: flex; align-items: center; justify-content: center; font-size: 1.5rem; font-weight: 600; flex-shrink: 0; }

body.vv-coupe-energetique .testimonial-info { flex: 1; }

body.vv-coupe-energetique .testimonial-name { font-weight: 600; color: var(--deep-earth); margin-bottom: 0.3rem; font-size: 1.05rem; }

body.vv-coupe-energetique .stars { color: #FBBC04; font-size: 1.1rem; letter-spacing: 2px; }

body.vv-coupe-energetique .testimonial-text { font-size: 1rem; line-height: 1.7; color: var(--deep-earth); opacity: 0.85; }

body.vv-coupe-energetique .google-link { text-align: center; margin-top: 3rem; }

body.vv-coupe-energetique .google-link p { font-size: 1.05rem; color: var(--deep-earth); opacity: 0.8; }

body.vv-coupe-energetique .google-link a { color: var(--accent-terracotta); text-decoration: none; font-weight: 600; transition: color 0.3s ease; }

body.vv-coupe-energetique .google-link a:hover { color: #B56D50; text-decoration: underline; }

body.vv-coupe-energetique .contact-box { max-width: 800px; margin: 0 auto; background: white; padding: 4rem 3rem; border-radius: 8px; box-shadow: 0 10px 40px rgba(0,0,0,0.08); text-align: center; }

body.vv-coupe-energetique .contact-box h2 { font-family: 'Cormorant Garamond', serif; font-size: 2.5rem; color: var(--deep-earth); margin-bottom: 1.5rem; }

body.vv-coupe-energetique .contact-box p { font-size: 1.1rem; line-height: 1.8; color: var(--deep-earth); opacity: 0.85; margin-bottom: 2rem; }

body.vv-coupe-energetique .contact-info { display: flex; flex-direction: column; gap: 1rem; margin-bottom: 2rem; }

body.vv-coupe-energetique .contact-info a { font-size: 1.2rem; color: var(--accent-terracotta); text-decoration: none; font-weight: 600; transition: color 0.3s ease; }

body.vv-coupe-energetique .contact-info a:hover { color: #B56D50; }

body.vv-coupe-energetique .location { font-size: 1rem; color: var(--primary-sage); font-style: italic; }

body.vv-coupe-energetique .cta-section { background: var(--deep-earth); padding: 6rem 5%; text-align: center; color: white; }

body.vv-coupe-energetique .cta-section h2 { font-family: 'Cormorant Garamond', serif; font-size: 3rem; font-weight: 300; margin-bottom: 1.5rem; }

body.vv-coupe-energetique .cta-section p { font-size: 1.2rem; margin-bottom: 3rem; opacity: 0.9; }

body.vv-coupe-energetique footer { background: var(--soft-white); padding: 4rem 5% 2rem; border-top: 1px solid rgba(139, 157, 131, 0.2); }

body.vv-coupe-energetique .footer-content { max-width: 1200px; margin: 0 auto; display: grid; grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); gap: 3rem; margin-bottom: 3rem; }

body.vv-coupe-energetique .footer-section h4 { font-family: 'Cormorant Garamond', serif; font-size: 1.5rem; margin-bottom: 1.5rem; color: var(--deep-earth); }

body.vv-coupe-energetique .footer-section p, body.vv-coupe-energetique .footer-section a { color: var(--deep-earth); opacity: 0.7; text-decoration: none; display: block; margin-bottom: 0.8rem; transition: opacity 0.3s ease; }

body.vv-coupe-energetique .footer-section a:hover { opacity: 1; color: var(--accent-terracotta); }

body.vv-coupe-energetique .footer-bottom { text-align: center; padding-top: 2rem; border-top: 1px solid rgba(139, 157, 131, 0.2); color: var(--deep-earth); opacity: 0.6; font-size: 0.9rem; }

@media (max-width: 768px) {
  body.vv-coupe-energetique .nav-links { display: none; } ; body.vv-coupe-energetique .page-hero h1 { font-size: 2.5rem; } ; body.vv-coupe-energetique .services-grid { grid-template-columns: 1fr; } ; body.vv-coupe-energetique .section-title { font-size: 2rem; }
}

/* ===== coupe-itinerante ===== */
body.vv-coupe-itinerante nav { position: fixed; top: 0; width: 100%; background: rgba(253, 252, 249, 0.95); backdrop-filter: blur(10px); z-index: 1000; padding: 1.5rem 5%; display: flex; justify-content: space-between; align-items: center; box-shadow: 0 2px 20px rgba(0,0,0,0.05); animation: slideDown 0.6s ease; }

body.vv-coupe-itinerante .logo { font-family: 'Cormorant Garamond', serif; font-size: 1.8rem; font-weight: 300; color: var(--deep-earth); letter-spacing: 2px; text-decoration: none; }

body.vv-coupe-itinerante .nav-links { display: flex; gap: 3rem; list-style: none; }

body.vv-coupe-itinerante .nav-links a { color: var(--deep-earth); text-decoration: none; font-size: 0.95rem; letter-spacing: 0.5px; transition: color 0.3s ease; position: relative; }

body.vv-coupe-itinerante .nav-links a::after { content: ''; position: absolute; bottom: -5px; left: 0; width: 0; height: 1px; background: var(--accent-terracotta); transition: width 0.3s ease; }

body.vv-coupe-itinerante .nav-links a:hover { color: var(--accent-terracotta); }

body.vv-coupe-itinerante .nav-links a:hover::after { width: 100%; }

body.vv-coupe-itinerante .page-hero { padding: 12rem 5% 6rem; background: linear-gradient(rgba(245, 241, 232, 0.9), rgba(253, 252, 249, 0.9)), var(--vv-hero-img, transparent); background-size: cover; background-position: center; text-align: center; position: relative; overflow: hidden; }

body.vv-coupe-itinerante .page-hero::before { content: ''; position: absolute; top: 20%; left: 10%; width: 400px; height: 400px; border-radius: 50%; background: radial-gradient(circle, rgba(139, 157, 131, 0.1) 0%, transparent 70%); animation: float 15s ease-in-out infinite; }

body.vv-coupe-itinerante .page-hero h1 { font-family: 'Cormorant Garamond', serif; font-size: 4rem; font-weight: 300; color: var(--deep-earth); margin-bottom: 1.5rem; letter-spacing: 1px; text-shadow: 0 2px 20px rgba(255,255,255,0.9); }

body.vv-coupe-itinerante .page-hero p { font-size: 1.3rem; color: var(--deep-earth); opacity: 0.95; max-width: 800px; margin: 0 auto 3rem; line-height: 1.9; text-shadow: 0 1px 10px rgba(255,255,255,0.9); }

body.vv-coupe-itinerante .breadcrumb { display: inline-flex; gap: 0.5rem; align-items: center; font-size: 0.9rem; color: var(--primary-sage); margin-bottom: 2rem; }

body.vv-coupe-itinerante .breadcrumb a { color: var(--primary-sage); text-decoration: none; transition: color 0.3s ease; }

body.vv-coupe-itinerante .breadcrumb a:hover { color: var(--accent-terracotta); }

body.vv-coupe-itinerante .badge { display: inline-block; background: var(--accent-terracotta); color: white; padding: 0.5rem 1.5rem; border-radius: 30px; font-size: 0.9rem; font-weight: 600; letter-spacing: 1px; margin-bottom: 2rem; text-transform: uppercase; }

body.vv-coupe-itinerante .understanding-section { padding: 6rem 5%; max-width: 1100px; margin: 0 auto; }

body.vv-coupe-itinerante .content-box { background: white; padding: 4rem 3.5rem; border-radius: 8px; box-shadow: 0 10px 40px rgba(0,0,0,0.08); margin-bottom: 3rem; }

body.vv-coupe-itinerante .content-box h2 { font-family: 'Cormorant Garamond', serif; font-size: 2.5rem; font-weight: 300; color: var(--deep-earth); margin-bottom: 2rem; }

body.vv-coupe-itinerante .content-box p { font-size: 1.15rem; line-height: 1.9; color: var(--deep-earth); opacity: 0.9; margin-bottom: 1.5rem; }

body.vv-coupe-itinerante .content-box h3 { font-family: 'Cormorant Garamond', serif; font-size: 1.8rem; color: var(--primary-sage); margin-top: 2.5rem; margin-bottom: 1.5rem; }

body.vv-coupe-itinerante .content-box ul { list-style: none; margin: 1.5rem 0; }

body.vv-coupe-itinerante .content-box ul li { padding-left: 2rem; position: relative; margin-bottom: 1rem; font-size: 1.1rem; line-height: 1.8; color: var(--deep-earth); opacity: 0.9; }

body.vv-coupe-itinerante .content-box ul li::before { content: '✓'; position: absolute; left: 0; color: var(--primary-sage); font-weight: bold; font-size: 1.2rem; }

body.vv-coupe-itinerante .content-box strong { color: var(--accent-terracotta); }

body.vv-coupe-itinerante .highlight-box { background: linear-gradient(135deg, rgba(139, 157, 131, 0.1) 0%, rgba(168, 181, 160, 0.1) 100%); border-left: 4px solid var(--primary-sage); padding: 2rem; margin: 2rem 0; border-radius: 5px; }

body.vv-coupe-itinerante .pricing-section { padding: 6rem 5%; background: var(--secondary-cream); }

body.vv-coupe-itinerante .section-title { font-family: 'Cormorant Garamond', serif; font-size: 3rem; font-weight: 300; color: var(--deep-earth); text-align: center; margin-bottom: 1rem; }

body.vv-coupe-itinerante .section-subtitle { text-align: center; font-size: 1.1rem; color: var(--primary-sage); margin-bottom: 4rem; letter-spacing: 0.5px; }

body.vv-coupe-itinerante .pricing-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(350px, 1fr)); gap: 3rem; max-width: 900px; margin: 0 auto; }

body.vv-coupe-itinerante .pricing-card { background: white; padding: 3.5rem 3rem; border-radius: 8px; box-shadow: 0 10px 40px rgba(0,0,0,0.08); position: relative; display: flex; flex-direction: column; transition: all 0.4s ease; text-align: center; }

body.vv-coupe-itinerante .pricing-card::before { content: ''; position: absolute; top: 0; left: 0; right: 0; height: 5px; background: linear-gradient(90deg, var(--primary-sage), var(--accent-terracotta)); opacity: 0; transition: opacity 0.4s ease; }

body.vv-coupe-itinerante .pricing-card:hover { transform: translateY(-8px); box-shadow: 0 20px 60px rgba(0,0,0,0.12); }

body.vv-coupe-itinerante .pricing-card:hover::before { opacity: 1; }

body.vv-coupe-itinerante .pricing-card h3 { font-family: 'Cormorant Garamond', serif; font-size: 2rem; color: var(--deep-earth); margin-bottom: 1rem; }

body.vv-coupe-itinerante .pricing-card p { font-size: 1.05rem; line-height: 1.8; color: var(--deep-earth); opacity: 0.85; margin-bottom: 2rem; flex: 1; }

body.vv-coupe-itinerante .price { font-family: 'Cormorant Garamond', serif; font-size: 3rem; color: var(--accent-terracotta); font-weight: 600; margin-bottom: 2rem; }

body.vv-coupe-itinerante .price-note { font-size: 0.9rem; color: var(--primary-sage); font-style: italic; margin-top: -1rem; margin-bottom: 2rem; }

body.vv-coupe-itinerante .btn { padding: 1rem 2.5rem; border: none; font-family: 'Philosopher', sans-serif; font-size: 1rem; letter-spacing: 1px; cursor: pointer; transition: all 0.4s ease; text-decoration: none; display: inline-block; width: 100%; text-align: center; }

body.vv-coupe-itinerante .btn-primary { background: var(--accent-terracotta); color: white; box-shadow: 0 10px 30px rgba(201, 125, 96, 0.3); }

body.vv-coupe-itinerante .btn-primary:hover { background: #B56D50; transform: translateY(-3px); box-shadow: 0 15px 40px rgba(201, 125, 96, 0.4); }

body.vv-coupe-itinerante .how-it-works { padding: 6rem 5%; background: var(--soft-white); }

body.vv-coupe-itinerante .steps-grid { display: grid; gap: 2rem; max-width: 1000px; margin: 0 auto; }

body.vv-coupe-itinerante .step { background: white; padding: 2.5rem; border-radius: 8px; box-shadow: 0 5px 20px rgba(0,0,0,0.06); display: flex; gap: 2rem; align-items: flex-start; }

body.vv-coupe-itinerante .step-number { font-family: 'Cormorant Garamond', serif; font-size: 3rem; color: var(--primary-sage); font-weight: 300; line-height: 1; min-width: 60px; }

body.vv-coupe-itinerante .step-content h3 { font-family: 'Cormorant Garamond', serif; font-size: 1.8rem; color: var(--deep-earth); margin-bottom: 1rem; }

body.vv-coupe-itinerante .step-content p { font-size: 1.1rem; line-height: 1.8; color: var(--deep-earth); opacity: 0.85; }

body.vv-coupe-itinerante .contact-section { padding: 6rem 5%; background: var(--secondary-cream); }

body.vv-coupe-itinerante .contact-box { max-width: 800px; margin: 0 auto; background: white; padding: 4rem 3rem; border-radius: 8px; box-shadow: 0 10px 40px rgba(0,0,0,0.08); text-align: center; }

body.vv-coupe-itinerante .contact-box h2 { font-family: 'Cormorant Garamond', serif; font-size: 2.5rem; color: var(--deep-earth); margin-bottom: 1.5rem; }

body.vv-coupe-itinerante .contact-box p { font-size: 1.1rem; line-height: 1.8; color: var(--deep-earth); opacity: 0.85; margin-bottom: 2rem; }

body.vv-coupe-itinerante .contact-info { display: flex; flex-direction: column; gap: 1rem; margin-bottom: 2rem; }

body.vv-coupe-itinerante .contact-info a { font-size: 1.2rem; color: var(--accent-terracotta); text-decoration: none; font-weight: 600; transition: color 0.3s ease; }

body.vv-coupe-itinerante .contact-info a:hover { color: #B56D50; }

body.vv-coupe-itinerante .cta-section { background: var(--deep-earth); padding: 6rem 5%; text-align: center; color: white; }

body.vv-coupe-itinerante .cta-section h2 { font-family: 'Cormorant Garamond', serif; font-size: 3rem; font-weight: 300; margin-bottom: 1.5rem; }

body.vv-coupe-itinerante .cta-section p { font-size: 1.2rem; margin-bottom: 3rem; opacity: 0.9; }

body.vv-coupe-itinerante footer { background: var(--soft-white); padding: 4rem 5% 2rem; border-top: 1px solid rgba(139, 157, 131, 0.2); }

body.vv-coupe-itinerante .footer-content { max-width: 1200px; margin: 0 auto; display: grid; grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); gap: 3rem; margin-bottom: 3rem; }

body.vv-coupe-itinerante .footer-section h4 { font-family: 'Cormorant Garamond', serif; font-size: 1.5rem; margin-bottom: 1.5rem; color: var(--deep-earth); }

body.vv-coupe-itinerante .footer-section p, body.vv-coupe-itinerante .footer-section a { color: var(--deep-earth); opacity: 0.7; text-decoration: none; display: block; margin-bottom: 0.8rem; transition: opacity 0.3s ease; }

body.vv-coupe-itinerante .footer-section a:hover { opacity: 1; color: var(--accent-terracotta); }

body.vv-coupe-itinerante .footer-bottom { text-align: center; padding-top: 2rem; border-top: 1px solid rgba(139, 157, 131, 0.2); color: var(--deep-earth); opacity: 0.6; font-size: 0.9rem; }

@media (max-width: 768px) {
  body.vv-coupe-itinerante .nav-links { display: none; } ; body.vv-coupe-itinerante .page-hero h1 { font-size: 2.5rem; } ; body.vv-coupe-itinerante .pricing-grid { grid-template-columns: 1fr; } ; body.vv-coupe-itinerante .section-title { font-size: 2rem; } ; body.vv-coupe-itinerante .step { flex-direction: column; } ; body.vv-coupe-itinerante .step-number { min-width: auto; }
}

/* ===== danse-5-rythmes ===== */
body.vv-danse-5-rythmes nav { position: fixed; top: 0; width: 100%; background: rgba(253, 252, 249, 0.95); backdrop-filter: blur(10px); z-index: 1000; padding: 1.5rem 5%; display: flex; justify-content: space-between; align-items: center; box-shadow: 0 2px 20px rgba(0,0,0,0.05); animation: slideDown 0.6s ease; }

body.vv-danse-5-rythmes .logo { font-family: 'Cormorant Garamond', serif; font-size: 1.8rem; font-weight: 300; color: var(--deep-earth); letter-spacing: 2px; text-decoration: none; }

body.vv-danse-5-rythmes .nav-links { display: flex; gap: 3rem; list-style: none; }

body.vv-danse-5-rythmes .nav-links a { color: var(--deep-earth); text-decoration: none; font-size: 0.95rem; letter-spacing: 0.5px; transition: color 0.3s ease; position: relative; }

body.vv-danse-5-rythmes .nav-links a::after { content: ''; position: absolute; bottom: -5px; left: 0; width: 0; height: 1px; background: var(--accent-terracotta); transition: width 0.3s ease; }

body.vv-danse-5-rythmes .nav-links a:hover { color: var(--accent-terracotta); }

body.vv-danse-5-rythmes .nav-links a:hover::after { width: 100%; }

body.vv-danse-5-rythmes .page-hero { padding: 12rem 5% 6rem; background: linear-gradient(rgba(139, 157, 131, 0.85), rgba(168, 181, 160, 0.85)), var(--vv-hero-img, transparent); background-size: cover; background-position: center; text-align: center; position: relative; overflow: hidden; }

body.vv-danse-5-rythmes .page-hero::before { content: ''; position: absolute; top: 20%; left: 10%; width: 400px; height: 400px; border-radius: 50%; background: radial-gradient(circle, rgba(139, 157, 131, 0.2) 0%, transparent 70%); animation: float 15s ease-in-out infinite; }

body.vv-danse-5-rythmes .page-hero h1 { font-family: 'Cormorant Garamond', serif; font-size: 4rem; font-weight: 300; color: var(--soft-white); margin-bottom: 1.5rem; letter-spacing: 1px; text-shadow: 0 2px 20px rgba(0,0,0,0.3); }

body.vv-danse-5-rythmes .page-hero p { font-size: 1.3rem; color: var(--soft-white); max-width: 800px; margin: 0 auto 3rem; line-height: 1.9; text-shadow: 0 1px 10px rgba(0,0,0,0.3); }

body.vv-danse-5-rythmes .breadcrumb { display: inline-flex; gap: 0.5rem; align-items: center; font-size: 0.9rem; color: var(--soft-white); margin-bottom: 2rem; }

body.vv-danse-5-rythmes .breadcrumb a { color: var(--soft-white); text-decoration: none; transition: color 0.3s ease; }

body.vv-danse-5-rythmes .breadcrumb a:hover { color: var(--accent-terracotta); }

body.vv-danse-5-rythmes .understanding-section { padding: 6rem 5%; max-width: 1100px; margin: 0 auto; }

body.vv-danse-5-rythmes .content-box { background: white; padding: 4rem 3.5rem; border-radius: 8px; box-shadow: 0 10px 40px rgba(0,0,0,0.08); margin-bottom: 3rem; }

body.vv-danse-5-rythmes .content-box h2 { font-family: 'Cormorant Garamond', serif; font-size: 2.5rem; font-weight: 300; color: var(--deep-earth); margin-bottom: 2rem; }

body.vv-danse-5-rythmes .content-box p { font-size: 1.15rem; line-height: 1.9; color: var(--deep-earth); opacity: 0.9; margin-bottom: 1.5rem; }

body.vv-danse-5-rythmes .content-box h3 { font-family: 'Cormorant Garamond', serif; font-size: 1.8rem; color: var(--primary-sage); margin-top: 2.5rem; margin-bottom: 1.5rem; }

body.vv-danse-5-rythmes .content-box strong { color: var(--accent-terracotta); }

body.vv-danse-5-rythmes .rhythms-section { padding: 6rem 5%; background: var(--secondary-cream); }

body.vv-danse-5-rythmes .section-title { font-family: 'Cormorant Garamond', serif; font-size: 3rem; font-weight: 300; color: var(--deep-earth); text-align: center; margin-bottom: 1rem; }

body.vv-danse-5-rythmes .section-subtitle { text-align: center; font-size: 1.1rem; color: var(--primary-sage); margin-bottom: 4rem; letter-spacing: 0.5px; }

body.vv-danse-5-rythmes .rhythms-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 2.5rem; max-width: 1200px; margin: 0 auto; }

body.vv-danse-5-rythmes .rhythm-card { background: white; padding: 3rem 2.5rem; border-radius: 8px; box-shadow: 0 5px 20px rgba(0,0,0,0.08); transition: all 0.3s ease; text-align: center; }

body.vv-danse-5-rythmes .rhythm-card:hover { transform: translateY(-5px); box-shadow: 0 10px 30px rgba(0,0,0,0.12); }

body.vv-danse-5-rythmes .rhythm-number { font-family: 'Cormorant Garamond', serif; font-size: 3.5rem; color: var(--primary-sage); font-weight: 300; line-height: 1; margin-bottom: 1rem; }

body.vv-danse-5-rythmes .rhythm-card h3 { font-family: 'Cormorant Garamond', serif; font-size: 1.8rem; color: var(--deep-earth); margin-bottom: 1rem; }

body.vv-danse-5-rythmes .rhythm-card p { font-size: 1.05rem; line-height: 1.8; color: var(--deep-earth); opacity: 0.85; }

body.vv-danse-5-rythmes .benefits-section { padding: 6rem 5%; background: var(--soft-white); }

body.vv-danse-5-rythmes .benefits-content { max-width: 900px; margin: 0 auto; background: white; padding: 4rem 3.5rem; border-radius: 8px; box-shadow: 0 10px 40px rgba(0,0,0,0.08); }

body.vv-danse-5-rythmes .benefits-content p { font-size: 1.15rem; line-height: 1.9; color: var(--deep-earth); opacity: 0.9; margin-bottom: 1.8rem; }

body.vv-danse-5-rythmes .benefits-content strong { color: var(--accent-terracotta); }

body.vv-danse-5-rythmes .booking-section { padding: 6rem 5%; background: linear-gradient(135deg, var(--primary-sage) 0%, var(--muted-olive) 100%); color: white; }

body.vv-danse-5-rythmes .booking-content { max-width: 900px; margin: 0 auto; text-align: center; }

body.vv-danse-5-rythmes .booking-section h2 { font-family: 'Cormorant Garamond', serif; font-size: 3rem; font-weight: 300; margin-bottom: 1.5rem; }

body.vv-danse-5-rythmes .booking-section p { font-size: 1.2rem; line-height: 1.9; margin-bottom: 1.5rem; opacity: 0.95; }

body.vv-danse-5-rythmes .booking-list { text-align: left; max-width: 700px; margin: 3rem auto; background: rgba(255, 255, 255, 0.1); padding: 3rem; border-radius: 8px; }

body.vv-danse-5-rythmes .booking-list ul { list-style: none; }

body.vv-danse-5-rythmes .booking-list ul li { padding-left: 2rem; position: relative; margin-bottom: 1.2rem; font-size: 1.1rem; line-height: 1.8; }

body.vv-danse-5-rythmes .booking-list ul li::before { content: '✓'; position: absolute; left: 0; color: var(--soft-white); font-weight: bold; font-size: 1.3rem; }

body.vv-danse-5-rythmes .btn-white { background: white; color: var(--primary-sage); box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2); }

body.vv-danse-5-rythmes .btn-white:hover { background: var(--soft-white); color: var(--deep-earth); }

body.vv-danse-5-rythmes .practical-section { padding: 6rem 5%; background: var(--secondary-cream); }

body.vv-danse-5-rythmes .info-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(350px, 1fr)); gap: 3rem; max-width: 1000px; margin: 0 auto; }

body.vv-danse-5-rythmes .info-box { background: white; padding: 3rem; border-radius: 8px; box-shadow: 0 5px 20px rgba(0,0,0,0.06); }

body.vv-danse-5-rythmes .info-box h3 { font-family: 'Cormorant Garamond', serif; font-size: 1.8rem; color: var(--deep-earth); margin-bottom: 1.5rem; }

body.vv-danse-5-rythmes .info-box ul { list-style: none; margin: 1rem 0; }

body.vv-danse-5-rythmes .info-box ul li { padding-left: 1.5rem; position: relative; margin-bottom: 0.8rem; font-size: 1.05rem; line-height: 1.8; color: var(--deep-earth); opacity: 0.85; }

body.vv-danse-5-rythmes .info-box ul li::before { content: '✓'; position: absolute; left: 0; color: var(--primary-sage); font-weight: bold; }

body.vv-danse-5-rythmes .info-box p { font-size: 1.05rem; line-height: 1.8; color: var(--deep-earth); opacity: 0.85; margin-bottom: 1rem; }

body.vv-danse-5-rythmes .contact-section { padding: 6rem 5%; background: var(--soft-white); }

body.vv-danse-5-rythmes .contact-box { max-width: 800px; margin: 0 auto; background: white; padding: 4rem 3rem; border-radius: 8px; box-shadow: 0 10px 40px rgba(0,0,0,0.08); text-align: center; }

body.vv-danse-5-rythmes .contact-box h2 { font-family: 'Cormorant Garamond', serif; font-size: 2.5rem; color: var(--deep-earth); margin-bottom: 1.5rem; }

body.vv-danse-5-rythmes .contact-box p { font-size: 1.1rem; line-height: 1.8; color: var(--deep-earth); opacity: 0.85; margin-bottom: 2rem; }

body.vv-danse-5-rythmes .contact-info { display: flex; flex-direction: column; gap: 1rem; margin-bottom: 2rem; }

body.vv-danse-5-rythmes .contact-info a { font-size: 1.2rem; color: var(--accent-terracotta); text-decoration: none; font-weight: 600; transition: color 0.3s ease; }

body.vv-danse-5-rythmes .contact-info a:hover { color: #B56D50; }

body.vv-danse-5-rythmes .btn { padding: 1rem 2.5rem; border: none; font-family: 'Philosopher', sans-serif; font-size: 1rem; letter-spacing: 1px; cursor: pointer; transition: all 0.4s ease; text-decoration: none; display: inline-block; }

body.vv-danse-5-rythmes .btn-primary { background: var(--accent-terracotta); color: white; box-shadow: 0 10px 30px rgba(201, 125, 96, 0.3); }

body.vv-danse-5-rythmes .btn-primary:hover { background: #B56D50; transform: translateY(-3px); box-shadow: 0 15px 40px rgba(201, 125, 96, 0.4); }

body.vv-danse-5-rythmes .cta-section { background: linear-gradient(135deg, var(--primary-sage) 0%, var(--muted-olive) 100%); padding: 6rem 5%; text-align: center; color: white; }

body.vv-danse-5-rythmes .cta-section h2 { font-family: 'Cormorant Garamond', serif; font-size: 3rem; font-weight: 300; margin-bottom: 1.5rem; }

body.vv-danse-5-rythmes .cta-section p { font-size: 1.2rem; margin-bottom: 3rem; opacity: 0.9; }

body.vv-danse-5-rythmes footer { background: var(--soft-white); padding: 4rem 5% 2rem; border-top: 1px solid rgba(139, 157, 131, 0.2); }

body.vv-danse-5-rythmes .footer-content { max-width: 1200px; margin: 0 auto; display: grid; grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); gap: 3rem; margin-bottom: 3rem; }

body.vv-danse-5-rythmes .footer-section h4 { font-family: 'Cormorant Garamond', serif; font-size: 1.5rem; margin-bottom: 1.5rem; color: var(--deep-earth); }

body.vv-danse-5-rythmes .footer-section p, body.vv-danse-5-rythmes .footer-section a { color: var(--deep-earth); opacity: 0.7; text-decoration: none; display: block; margin-bottom: 0.8rem; transition: opacity 0.3s ease; }

body.vv-danse-5-rythmes .footer-section a:hover { opacity: 1; color: var(--accent-terracotta); }

body.vv-danse-5-rythmes .footer-bottom { text-align: center; padding-top: 2rem; border-top: 1px solid rgba(139, 157, 131, 0.2); color: var(--deep-earth); opacity: 0.6; font-size: 0.9rem; }

@media (max-width: 768px) {
  body.vv-danse-5-rythmes .nav-links { display: none; } ; body.vv-danse-5-rythmes .page-hero h1 { font-size: 2.5rem; } ; body.vv-danse-5-rythmes .rhythms-grid { grid-template-columns: 1fr; } ; body.vv-danse-5-rythmes .section-title { font-size: 2rem; }
}

/* ===== podcast ===== */
body.vv-podcast nav { position: fixed; top: 0; width: 100%; background: rgba(253, 252, 249, 0.95); backdrop-filter: blur(10px); z-index: 1000; padding: 1.5rem 5%; display: flex; justify-content: space-between; align-items: center; box-shadow: 0 2px 20px rgba(0,0,0,0.05); animation: slideDown 0.6s ease; }

body.vv-podcast .logo { font-family: 'Cormorant Garamond', serif; font-size: 1.8rem; font-weight: 300; color: var(--deep-earth); letter-spacing: 2px; text-decoration: none; }

body.vv-podcast .nav-links { display: flex; gap: 3rem; list-style: none; }

body.vv-podcast .nav-links a { color: var(--deep-earth); text-decoration: none; font-size: 0.95rem; letter-spacing: 0.5px; transition: color 0.3s ease; position: relative; }

body.vv-podcast .nav-links a::after { content: ''; position: absolute; bottom: -5px; left: 0; width: 0; height: 1px; background: var(--accent-terracotta); transition: width 0.3s ease; }

body.vv-podcast .nav-links a:hover { color: var(--accent-terracotta); }

body.vv-podcast .nav-links a:hover::after { width: 100%; }

body.vv-podcast .page-hero { padding: 12rem 5% 6rem; background: linear-gradient(rgba(139, 157, 131, 0.88), rgba(253, 252, 249, 0.92)), var(--vv-hero-img, transparent); background-size: cover; background-position: center; text-align: center; position: relative; overflow: hidden; }

body.vv-podcast .page-hero::before { content: ''; position: absolute; top: 20%; left: 10%; width: 400px; height: 400px; border-radius: 50%; background: radial-gradient(circle, rgba(139, 157, 131, 0.15) 0%, transparent 70%); animation: float 15s ease-in-out infinite; }

body.vv-podcast .breadcrumb { display: inline-flex; gap: 0.5rem; align-items: center; font-size: 0.9rem; color: var(--primary-sage); margin-bottom: 2rem; }

body.vv-podcast .breadcrumb a { color: var(--primary-sage); text-decoration: none; transition: color 0.3s ease; }

body.vv-podcast .breadcrumb a:hover { color: var(--accent-terracotta); }

body.vv-podcast .podcast-badge { display: inline-block; background: var(--spotify-green); color: white; padding: 0.5rem 1.5rem; border-radius: 30px; font-size: 0.85rem; font-weight: 600; letter-spacing: 1px; margin-bottom: 2rem; text-transform: uppercase; }

body.vv-podcast .page-hero h1 { font-family: 'Cormorant Garamond', serif; font-size: 4rem; font-weight: 300; color: var(--deep-earth); margin-bottom: 1.5rem; letter-spacing: 1px; text-shadow: 0 2px 20px rgba(255,255,255,0.9); }

body.vv-podcast .page-hero p { font-size: 1.3rem; color: var(--deep-earth); opacity: 0.95; max-width: 750px; margin: 0 auto 3rem; line-height: 1.9; text-shadow: 0 1px 10px rgba(255,255,255,0.9); }

body.vv-podcast .btn { padding: 1rem 2.5rem; border: none; font-family: 'Philosopher', sans-serif; font-size: 1rem; letter-spacing: 1px; cursor: pointer; transition: all 0.4s ease; text-decoration: none; display: inline-flex; align-items: center; gap: 0.7rem; }

body.vv-podcast .btn-spotify { background: var(--spotify-green); color: white; box-shadow: 0 10px 30px rgba(29, 185, 84, 0.35); }

body.vv-podcast .btn-spotify:hover { background: #17a44a; transform: translateY(-3px); box-shadow: 0 15px 40px rgba(29, 185, 84, 0.45); }

body.vv-podcast .btn-instagram { background: linear-gradient(45deg, #f09433, #e6683c, #dc2743, #cc2366, #bc1888); color: white; box-shadow: 0 10px 30px rgba(220, 39, 67, 0.3); }

body.vv-podcast .btn-instagram:hover { transform: translateY(-3px); box-shadow: 0 15px 40px rgba(220, 39, 67, 0.4); }

body.vv-podcast .btn-outline-white { background: transparent; color: white; border: 2px solid rgba(255, 255, 255, 0.5); }

body.vv-podcast .btn-outline-white:hover { background: rgba(255, 255, 255, 0.15); border-color: white; transform: translateY(-3px); }

body.vv-podcast .hero-buttons { display: flex; gap: 1.2rem; justify-content: center; flex-wrap: wrap; }

body.vv-podcast .understanding-section { padding: 6rem 5%; max-width: 1000px; margin: 0 auto; }

body.vv-podcast .content-box { background: white; padding: 4rem 3.5rem; border-radius: 8px; box-shadow: 0 10px 40px rgba(0,0,0,0.08); }

body.vv-podcast .content-box h2 { font-family: 'Cormorant Garamond', serif; font-size: 2.5rem; font-weight: 300; color: var(--deep-earth); margin-bottom: 2rem; }

body.vv-podcast .content-box p { font-size: 1.15rem; line-height: 1.9; color: var(--deep-earth); opacity: 0.9; margin-bottom: 1.5rem; }

body.vv-podcast .content-box p:last-child { margin-bottom: 0; }

body.vv-podcast .content-box strong { color: var(--accent-terracotta); }

body.vv-podcast .episodes-section { padding: 6rem 5%; background: var(--secondary-cream); }

body.vv-podcast .section-title { font-family: 'Cormorant Garamond', serif; font-size: 3rem; font-weight: 300; color: var(--deep-earth); text-align: center; margin-bottom: 1rem; }

body.vv-podcast .section-subtitle { text-align: center; font-size: 1.1rem; color: var(--primary-sage); margin-bottom: 4rem; letter-spacing: 0.5px; }

body.vv-podcast .episodes-list { max-width: 850px; margin: 0 auto; display: flex; flex-direction: column; gap: 2rem; }

body.vv-podcast .episode-card { background: white; border-radius: 8px; box-shadow: 0 5px 20px rgba(0,0,0,0.06); padding: 2.5rem; display: flex; gap: 2rem; align-items: flex-start; transition: all 0.3s ease; position: relative; }

body.vv-podcast .episode-card:hover { box-shadow: 0 15px 40px rgba(0,0,0,0.1); transform: translateY(-3px); }

body.vv-podcast .episode-card.latest { border: 2px solid var(--spotify-green); }

body.vv-podcast .latest-badge { position: absolute; top: -14px; left: 2.5rem; background: var(--spotify-green); color: white; padding: 0.35rem 1.2rem; border-radius: 20px; font-size: 0.8rem; font-weight: 600; letter-spacing: 0.5px; text-transform: uppercase; }

body.vv-podcast .episode-number { font-family: 'Cormorant Garamond', serif; font-size: 3rem; color: var(--muted-olive); font-weight: 300; line-height: 1; min-width: 70px; text-align: center; }

body.vv-podcast .episode-content { flex: 1; }

body.vv-podcast .episode-meta { display: flex; gap: 1.2rem; align-items: center; margin-bottom: 0.8rem; font-size: 0.9rem; color: var(--primary-sage); letter-spacing: 0.3px; }

body.vv-podcast .episode-content h3 { font-family: 'Cormorant Garamond', serif; font-size: 1.7rem; color: var(--deep-earth); margin-bottom: 1rem; line-height: 1.3; }

body.vv-podcast .episode-content p { font-size: 1.02rem; line-height: 1.8; color: var(--deep-earth); opacity: 0.85; margin-bottom: 1.5rem; }

body.vv-podcast .episode-listen { display: inline-flex; align-items: center; gap: 0.5rem; color: var(--spotify-green); text-decoration: none; font-weight: 600; font-size: 0.98rem; transition: color 0.3s ease; }

body.vv-podcast .episode-listen:hover { color: #17a44a; }

body.vv-podcast .placeholder-note { display: inline-block; margin-top: 0.8rem; font-size: 0.85rem; color: var(--accent-terracotta); font-style: italic; opacity: 0.8; }

body.vv-podcast .subscribe-section { padding: 6rem 5%; background: var(--deep-earth); text-align: center; color: white; }

body.vv-podcast .subscribe-section h2 { font-family: 'Cormorant Garamond', serif; font-size: 3rem; font-weight: 300; margin-bottom: 1.5rem; }

body.vv-podcast .subscribe-section p { font-size: 1.2rem; margin-bottom: 3rem; opacity: 0.9; max-width: 650px; margin-left: auto; margin-right: auto; }

body.vv-podcast .platforms-note { margin-top: 2rem; font-size: 0.95rem; opacity: 0.7; }

body.vv-podcast footer { background: var(--soft-white); padding: 4rem 5% 2rem; border-top: 1px solid rgba(139, 157, 131, 0.2); }

body.vv-podcast .footer-content { max-width: 1200px; margin: 0 auto; display: grid; grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); gap: 3rem; margin-bottom: 3rem; }

body.vv-podcast .footer-section h4 { font-family: 'Cormorant Garamond', serif; font-size: 1.5rem; margin-bottom: 1.5rem; color: var(--deep-earth); }

body.vv-podcast .footer-section p, body.vv-podcast .footer-section a { color: var(--deep-earth); opacity: 0.7; text-decoration: none; display: block; margin-bottom: 0.8rem; transition: opacity 0.3s ease; }

body.vv-podcast .footer-section a:hover { opacity: 1; color: var(--accent-terracotta); }

body.vv-podcast .footer-bottom { text-align: center; padding-top: 2rem; border-top: 1px solid rgba(139, 157, 131, 0.2); color: var(--deep-earth); opacity: 0.6; font-size: 0.9rem; }

@media (max-width: 768px) {
  body.vv-podcast .nav-links { display: none; } ; body.vv-podcast .page-hero h1 { font-size: 2.5rem; } ; body.vv-podcast .section-title { font-size: 2rem; } ; body.vv-podcast .episode-card { flex-direction: column; gap: 1rem; } ; body.vv-podcast .episode-number { text-align: left; font-size: 2rem; } ; body.vv-podcast .latest-badge { left: 1.5rem; }
}

/* ==========================================================================
   FULL-BLEED BAND ESCAPE — let the "band" sections span the viewport edges
   --------------------------------------------------------------------------
   Why this exists:
     header.php wraps the_content() in <div class="container">
     <div class="site-main">. Neve's parent CSS caps .container with
     `max-width: var(--container); padding: 0 15px`. `--container` is a Neve
     dynamic variable (set from PHP, not a fixed px value), so we escape with
     the width-agnostic, self-referential centering below rather than a pixel calc.

     `width:100vw` + `margin-left:calc(50% - 50vw)` puts the element at exactly
     [0, viewport] in page coordinates (the ±15px container padding cancels),
     on every viewport width, without needing to know the container size.

   Which sections escape (the BANDS — they own a background + band padding and
   carry a self-capped inner child, e.g. .services-grid max-width:1200px):
     • index:                 .hero .services .featured .testimonials .cta-section
     • communication-animale: .page-hero .services-options .additional-services
                              .payment-terms .cta-section
     • accompagnement-deuil:  .page-hero .connection-section .pricing-section
                              .cta-section
     • coupe-energetique:     .page-hero .services-section .testimonials-section
                              .contact-section .cta-section
     • coupe-itinerante:      .page-hero .pricing-section .how-it-works
                              .contact-section .cta-section
     • danse-5-rythmes:       .page-hero .rhythms-section .benefits-section
                              .practical-section .booking-section .contact-section
                              .cta-section
     • podcast:               .page-hero .episodes-section .subscribe-section

   What must STAY capped (CONTENT sections — no background, self-capped via
   max-width + margin:0 auto, so leave them untouched):
     • communication-animale .ca-understanding
     • acompanhamento-deuil  .grief-understanding, .how-it-works (BAND on
                              coupe-itinerante — different slug, see above)
     • coupe-energetique     .understanding-section
     • coupe-itinerante      .understanding-section
     • danse-5-rythmes       .understanding-section
     • podcast               .understanding-section

   Note: selectors are scoped per body.vv-<slug> so `.how-it-works` only escapes
   on the slug(s) where it is actually a band.
   ========================================================================== */
body.vv-index .hero,
body.vv-index .services,
body.vv-index .featured,
body.vv-index .testimonials,
body.vv-index .cta-section,

body.vv-communication-animale .page-hero,
body.vv-communication-animale .services-options,
body.vv-communication-animale .additional-services,
body.vv-communication-animale .payment-terms,
body.vv-communication-animale .cta-section,

body.vv-accompagnement-deuil .page-hero,
body.vv-accompagnement-deuil .connection-section,
body.vv-accompagnement-deuil .pricing-section,
body.vv-accompagnement-deuil .cta-section,

body.vv-coupe-energetique .page-hero,
body.vv-coupe-energetique .services-section,
body.vv-coupe-energetique .testimonials-section,
body.vv-coupe-energetique .contact-section,
body.vv-coupe-energetique .cta-section,

body.vv-coupe-itinerante .page-hero,
body.vv-coupe-itinerante .pricing-section,
body.vv-coupe-itinerante .how-it-works,
body.vv-coupe-itinerante .contact-section,
body.vv-coupe-itinerante .cta-section,

body.vv-danse-5-rythmes .page-hero,
body.vv-danse-5-rythmes .rhythms-section,
body.vv-danse-5-rythmes .benefits-section,
body.vv-danse-5-rythmes .practical-section,
body.vv-danse-5-rythmes .booking-section,
body.vv-danse-5-rythmes .contact-section,
body.vv-danse-5-rythmes .cta-section,

body.vv-podcast .page-hero,
body.vv-podcast .episodes-section,
body.vv-podcast .subscribe-section {
  width: 100vw;
  margin-left: calc(50% - 50vw);
  margin-right: calc(50% - 50vw);
}

/* overflow-x guard: the 100vw bands are ~scrollbar-width larger than the
   viewport content box; clip that sliver so no horizontal scrollbar appears.
   No position:sticky in the content, so this is safe. */
html { overflow-x: hidden; }

