/*
Theme Name: Karin Loopuyt
Theme URI: https://karinloopuyt.com
Description: Thème sur mesure pour Karin Loopuyt — Sophrologie & Massages Bien-être à Clamart.
Version: 1.0
Author: Custom
License: GNU General Public License v2 or later
Text Domain: karin-loopuyt
*/

/* ═══════════════════════════════════════
   VARIABLES & RESET
═══════════════════════════════════════ */
:root {
    --forest: #2c3e2d;
    --forest-deep: #1a2b1b;
    --moss: #4a6741;
    --sage: #7a9a6d;
    --sage-light: #9bb88e;
    --leaf: #b5c9a8;
    --sand: #d4c5a9;
    --sand-light: #e6dcc6;
    --cream: #f5f1ea;
    --warm-white: #faf8f4;
    --stone: #c4b8a0;
    --clay: #b8a088;
    --earth: #6b5b4a;
    --bark: #3d3228;
    --text: #2d2a26;
    --text-soft: #5a5550;
    --text-muted: #8a857e;
    --white: #ffffff;
}

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

body {
    font-family: 'Mulish', sans-serif;
    color: var(--text);
    background: var(--warm-white);
    line-height: 1.8;
    overflow-x: hidden;
}

h1, h2, h3, h4 {
    font-family: 'Cormorant Garamond', serif;
    font-weight: 400;
    line-height: 1.25;
    color: var(--forest-deep);
}

h2 em, h1 em {
    font-family: 'Playfair Display', serif;
    font-style: italic;
    color: var(--moss);
    font-weight: 400;
}

img { max-width: 100%; display: block; }
a { color: inherit; }

/* ═══════════════════════════════════════
   COMMON ELEMENTS
═══════════════════════════════════════ */
.section-label {
    font-size: 0.72rem;
    letter-spacing: 4px;
    text-transform: uppercase;
    color: var(--sage);
    font-weight: 600;
    margin-bottom: 1.5rem;
    display: flex;
    align-items: center;
    gap: 1rem;
}

.section-label::before {
    content: '';
    width: 30px;
    height: 1.5px;
    background: var(--sage);
}

.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.section-header .section-label { justify-content: center; }

.section-desc {
    font-size: 1.05rem;
    color: var(--text-soft);
    max-width: 650px;
    margin: 1rem auto 0;
    text-align: center;
}

.btn-primary {
    display: inline-flex;
    align-items: center;
    gap: 0.8rem;
    padding: 1.1rem 2.5rem;
    background: var(--forest);
    color: var(--cream);
    text-decoration: none;
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    border-radius: 50px;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border: 2px solid var(--forest);
}

.btn-primary:hover {
    background: var(--moss);
    border-color: var(--moss);
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(44, 62, 45, 0.25);
}

.btn-secondary {
    display: inline-flex;
    align-items: center;
    gap: 0.6rem;
    padding: 1.1rem 2rem;
    background: transparent;
    color: var(--forest);
    text-decoration: none;
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    border-radius: 50px;
    transition: all 0.3s ease;
    border: 2px solid var(--stone);
}

.btn-secondary:hover {
    border-color: var(--forest);
    background: rgba(44, 62, 45, 0.03);
}

/* ═══════════════════════════════════════
   NAVIGATION
═══════════════════════════════════════ */
.nav-wrapper {
    position: fixed;
    top: 0; left: 0; right: 0;
    z-index: 1000;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.nav-wrapper.scrolled {
    background: rgba(250, 248, 244, 0.92);
    backdrop-filter: blur(20px);
    box-shadow: 0 1px 30px rgba(44, 62, 45, 0.06);
}

nav {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem 3rem;
    transition: padding 0.4s ease;
}

.nav-wrapper.scrolled nav { padding: 1rem 3rem; }

.site-logo {
    display: flex;
    flex-direction: column;
    text-decoration: none;
}

.logo-name {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.6rem;
    font-weight: 500;
    color: var(--forest);
    letter-spacing: 3px;
    text-transform: uppercase;
    line-height: 1.2;
}

.logo-tagline {
    font-size: 0.65rem;
    color: var(--sage);
    letter-spacing: 4px;
    text-transform: uppercase;
    font-weight: 400;
}

.nav-links {
    display: flex;
    gap: 2.8rem;
    list-style: none;
    align-items: center;
}

.nav-links a {
    text-decoration: none;
    color: var(--text-soft);
    font-size: 0.82rem;
    font-weight: 500;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    transition: color 0.3s;
    position: relative;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -6px; left: 0;
    width: 0; height: 1.5px;
    background: var(--sage);
    transition: width 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.nav-links a:hover { color: var(--forest); }
.nav-links a:hover::after { width: 100%; }
.nav-links a.active { color: var(--forest); }
.nav-links a.active::after { width: 100%; }

.nav-cta {
    padding: 0.7rem 1.8rem !important;
    background: var(--forest);
    color: var(--cream) !important;
    border-radius: 50px;
    font-size: 0.78rem !important;
    transition: all 0.3s ease !important;
}

.nav-cta::after { display: none !important; }
.nav-cta:hover {
    background: var(--moss) !important;
    color: var(--cream) !important;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(44, 62, 45, 0.2);
}

.mobile-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    background: none;
    border: none;
    padding: 5px;
    z-index: 1001;
}

.mobile-toggle span {
    width: 25px; height: 2px;
    background: var(--forest);
    transition: all 0.3s ease;
    display: block;
}

/* ═══════════════════════════════════════
   HERO (Accueil)
═══════════════════════════════════════ */
.hero {
    min-height: 100vh;
    display: grid;
    grid-template-columns: 1fr 1fr;
    position: relative;
    overflow: hidden;
}

.hero-visual {
    position: relative;
    background: var(--forest);
    overflow: hidden;
}

.hero-img-wrap {
    width: 100%; height: 100%;
    position: relative;
}

.hero-img-wrap img {
    width: 100%; height: 100%;
    object-fit: cover;
}

.hero-img-wrap::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(145deg, rgba(44, 62, 45, 0.15) 0%, rgba(26, 43, 27, 0.35) 100%);
}

.hero-image-placeholder {
    width: 100%; height: 100%;
    background:
        linear-gradient(145deg, rgba(44, 62, 45, 0.3) 0%, rgba(26, 43, 27, 0.6) 100%),
        linear-gradient(45deg, var(--moss) 0%, var(--forest) 50%, var(--forest-deep) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(255,255,255,0.4);
    font-style: italic;
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.2rem;
    text-align: center;
    padding: 2rem;
}

.hero-content {
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 6rem 5rem;
    background: var(--warm-white);
    position: relative;
}

.hero-content::before {
    content: '';
    position: absolute;
    top: 15%; right: 0;
    width: 1px; height: 0;
    background: linear-gradient(to bottom, transparent, var(--leaf), transparent);
    animation: lineGrow 2s ease-out 1s forwards;
}

@keyframes lineGrow { to { height: 70%; } }

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.8rem;
    padding: 0.5rem 1.2rem;
    background: rgba(122, 154, 109, 0.08);
    border: 1px solid rgba(122, 154, 109, 0.15);
    border-radius: 50px;
    font-size: 0.72rem;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--sage);
    font-weight: 600;
    margin-bottom: 2.5rem;
    width: fit-content;
    opacity: 0;
    animation: fadeSlideUp 0.8s ease-out 0.3s forwards;
}

.hero-badge::before {
    content: '';
    width: 6px; height: 6px;
    background: var(--sage);
    border-radius: 50%;
}

@keyframes fadeSlideUp {
    from { opacity: 0; transform: translateY(25px); }
    to { opacity: 1; transform: translateY(0); }
}

.hero h1 {
    font-size: 4.2rem;
    color: var(--forest-deep);
    line-height: 1.15;
    margin-bottom: 2rem;
    font-weight: 300;
    opacity: 0;
    animation: fadeSlideUp 1s ease-out 0.5s forwards;
}

.hero-text {
    font-size: 1.08rem;
    color: var(--text-soft);
    max-width: 480px;
    line-height: 1.9;
    margin-bottom: 3rem;
    opacity: 0;
    animation: fadeSlideUp 1s ease-out 0.7s forwards;
}

.hero-actions {
    display: flex;
    gap: 1.2rem;
    align-items: center;
    opacity: 0;
    animation: fadeSlideUp 1s ease-out 0.9s forwards;
}

.hero-scroll-indicator {
    position: absolute;
    bottom: 3rem; left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.8rem;
    color: var(--text-muted);
    font-size: 0.7rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    opacity: 0;
    animation: fadeSlideUp 1s ease-out 1.5s forwards;
}

.scroll-line {
    width: 1px; height: 40px;
    background: linear-gradient(to bottom, var(--stone), transparent);
    animation: scrollPulse 2s ease-in-out infinite;
}

@keyframes scrollPulse {
    0%, 100% { opacity: 1; transform: scaleY(1); }
    50% { opacity: 0.5; transform: scaleY(0.7); }
}

/* ═══════════════════════════════════════
   INTRO / PHILOSOPHY
═══════════════════════════════════════ */
.intro-section {
    padding: 9rem 3rem;
    background: var(--warm-white);
    position: relative;
}

.intro-section::before {
    content: '';
    position: absolute;
    top: 0; left: 50%;
    transform: translateX(-50%);
    width: 1px; height: 80px;
    background: linear-gradient(to bottom, var(--leaf), transparent);
}

.intro-wrapper {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 6rem;
    align-items: center;
}

.intro-visual { position: relative; }

.intro-image-main {
    width: 100%;
    aspect-ratio: 4/5;
    background: linear-gradient(135deg, var(--leaf) 0%, var(--sage) 100%);
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(255,255,255,0.5);
    font-style: italic;
    font-family: 'Cormorant Garamond', serif;
}

.intro-image-main img {
    width: 100%; height: 100%;
    object-fit: cover;
    position: absolute;
    inset: 0;
}

.intro-image-main::after {
    content: '';
    position: absolute;
    inset: 0;
    border: 1px solid rgba(255,255,255,0.1);
    margin: 12px;
    z-index: 1;
}

.intro-image-accent {
    position: absolute;
    bottom: -30px; right: -30px;
    width: 45%;
    aspect-ratio: 1;
    background: var(--sand-light);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-muted);
    font-style: italic;
    font-size: 0.85rem;
    box-shadow: 0 20px 60px rgba(0,0,0,0.1);
    overflow: hidden;
}

.intro-image-accent img {
    width: 100%; height: 100%;
    object-fit: cover;
    position: absolute;
    inset: 0;
}

.intro-content h2 {
    font-size: 3rem;
    margin-bottom: 2rem;
    font-weight: 300;
}

.intro-content p {
    font-size: 1.02rem;
    color: var(--text-soft);
    margin-bottom: 1.5rem;
    line-height: 1.9;
}

.intro-quote {
    margin-top: 2.5rem;
    padding: 2rem 2.5rem;
    background: rgba(122, 154, 109, 0.05);
    border-left: 3px solid var(--sage);
    font-family: 'Playfair Display', serif;
    font-style: italic;
    font-size: 1.15rem;
    color: var(--moss);
    line-height: 1.8;
}

/* ═══════════════════════════════════════
   SOINS PREVIEW (Accueil)
═══════════════════════════════════════ */
.soins-preview {
    padding: 8rem 3rem;
    background: var(--cream);
}

.soins-preview-wrapper {
    max-width: 1100px;
    margin: 0 auto;
}

.soins-preview h2 {
    font-size: 3rem;
    font-weight: 300;
    margin-bottom: 1rem;
}

.soins-preview-cards {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2.5rem;
    margin-top: 4rem;
}

.preview-card {
    position: relative;
    overflow: hidden;
    min-height: 420px;
    display: flex;
    align-items: flex-end;
    text-decoration: none;
    border-radius: 2px;
    transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.preview-card:hover { transform: translateY(-8px); }

.preview-card-bg {
    position: absolute;
    inset: 0;
    transition: transform 0.6s ease;
}

.preview-card:hover .preview-card-bg { transform: scale(1.05); }

.preview-card-bg--esprit {
    background: linear-gradient(180deg,
        rgba(26, 43, 27, 0.1) 0%,
        rgba(26, 43, 27, 0.85) 70%),
        linear-gradient(135deg, var(--sage-light) 0%, var(--sage) 50%, var(--moss) 100%);
}

.preview-card-bg--corps {
    background: linear-gradient(180deg,
        rgba(61, 50, 40, 0.1) 0%,
        rgba(61, 50, 40, 0.85) 70%),
        url('https://karinloopuyt.com/wp-content/uploads/2026/02/ChatGPT-Image-11-fevr.-2026-14_40_31.png') center/cover no-repeat;
}

.preview-card-content {
    position: relative;
    z-index: 1;
    padding: 2.5rem;
    color: var(--cream);
}

.preview-card-icon { font-size: 2rem; display: block; margin-bottom: 1rem; }

.preview-card h3 {
    font-size: 2rem;
    color: var(--white);
    margin-bottom: 0.8rem;
    font-weight: 400;
}

.preview-card p {
    color: rgba(245, 241, 234, 0.7);
    font-size: 0.95rem;
    line-height: 1.7;
    margin-bottom: 1.5rem;
}

.preview-card-link {
    font-size: 0.78rem;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--leaf);
    transition: letter-spacing 0.3s ease;
}

.preview-card:nth-child(2) .preview-card-link { color: var(--sand-light); }
.preview-card:hover .preview-card-link { letter-spacing: 4px; }

.soins-preview-cta { text-align: center; margin-top: 3.5rem; }

/* ═══════════════════════════════════════
   ABOUT
═══════════════════════════════════════ */
.about {
    padding: 8rem 3rem;
    background: var(--warm-white);
}

.about-wrapper {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1.3fr;
    gap: 6rem;
    align-items: start;
}

.about-image-col { position: relative; }

.about-image-main {
    width: 100%;
    aspect-ratio: 3/4;
    background: linear-gradient(135deg, var(--sage) 0%, var(--forest) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(255,255,255,0.4);
    font-style: italic;
    font-family: 'Cormorant Garamond', serif;
    position: relative;
    overflow: hidden;
}

.about-image-main img {
    width: 100%; height: 100%;
    object-fit: cover;
    position: absolute;
    inset: 0;
}

.about-image-main::before {
    content: '';
    position: absolute;
    top: -15px; left: -15px;
    right: 15px; bottom: 15px;
    border: 1px solid var(--stone);
    z-index: -1;
}

.about-content .section-label { margin-bottom: 1rem; }

.about-content h2 {
    font-size: 2.8rem;
    margin-bottom: 2rem;
    font-weight: 300;
}

.about-content p {
    font-size: 1.02rem;
    color: var(--text-soft);
    line-height: 1.9;
    margin-bottom: 1.5rem;
}

.credentials-box {
    margin-top: 3rem;
    padding: 2.5rem;
    background: var(--cream);
    border-left: 3px solid var(--sage);
}

.credentials-box h4 {
    font-size: 1.3rem;
    margin-bottom: 1.5rem;
    color: var(--forest);
}

.credential-list { list-style: none; }

.credential-list li {
    padding: 0.7rem 0;
    color: var(--text-soft);
    font-size: 0.92rem;
    display: flex;
    align-items: flex-start;
    gap: 0.8rem;
}

.credential-list li::before {
    content: '◈';
    color: var(--sage);
    font-size: 0.75rem;
    margin-top: 0.3rem;
    flex-shrink: 0;
}

/* ═══════════════════════════════════════
   CONTACT
═══════════════════════════════════════ */
.contact {
    padding: 0;
    display: grid;
    grid-template-columns: 1fr 1fr;
    min-height: 80vh;
}

.contact-info-side {
    background: var(--forest-deep);
    color: var(--cream);
    padding: 6rem 5rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

.contact-info-side::before {
    content: '';
    position: absolute;
    inset: 0;
    background: url("data:image/svg+xml,%3Csvg viewBox='0 0 400 400' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.75' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.03'/%3E%3C/svg%3E");
}

.contact-info-side > * { position: relative; z-index: 1; }
.contact-info-side .section-label { color: var(--sage-light); }
.contact-info-side .section-label::before { background: var(--sage-light); }

.contact-info-side h2 {
    font-size: 2.8rem;
    color: var(--cream);
    font-weight: 300;
    margin-bottom: 1.5rem;
}

.contact-info-side > p {
    color: rgba(245, 241, 234, 0.6);
    font-size: 1rem;
    margin-bottom: 3.5rem;
    max-width: 400px;
}

.contact-items { display: flex; flex-direction: column; gap: 2.5rem; }
.contact-item { display: flex; gap: 1.5rem; align-items: flex-start; }

.contact-item-icon {
    width: 50px; height: 50px;
    background: rgba(122, 154, 109, 0.15);
    border: 1px solid rgba(122, 154, 109, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    flex-shrink: 0;
}

.contact-item h4 { color: var(--cream); font-size: 1.1rem; margin-bottom: 0.3rem; }

.contact-item p,
.contact-item a {
    color: rgba(245, 241, 234, 0.6);
    text-decoration: none;
    font-size: 0.95rem;
    line-height: 1.7;
    transition: color 0.3s;
}
.about-list {
    list-style: none;
    margin: 1rem 0 1.5rem;
    padding-left: 0;
}

.about-list li {
    padding: 0.4rem 0;
    color: var(--text-soft);
    font-size: 1.02rem;
    display: flex;
    align-items: flex-start;
    gap: 0.8rem;
    line-height: 1.7;
}

.about-list li::before {
    content: '—';
    color: var(--sage);
    flex-shrink: 0;
    font-weight: 600;
}

.hero-subtitle-line {
    font-family: 'Playfair Display', serif;
    font-style: italic;
    font-size: 1.15rem;
    color: var(--moss);
    margin-bottom: 1.5rem;
    opacity: 0;
    animation: fadeSlideUp 1s ease-out 0.6s forwards;
}

.contact-item a:hover { color: var(--sage-light); }

.contact-form-side {
    background: var(--warm-white);
    padding: 6rem 5rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.contact-form-side h3 { font-size: 2rem; margin-bottom: 0.8rem; color: var(--forest); }
.contact-form-side > p { color: var(--text-muted); font-size: 0.92rem; margin-bottom: 2.5rem; }

.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1.2rem; }
.form-group { margin-bottom: 1.5rem; }

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    color: var(--earth);
    font-weight: 600;
    font-size: 0.78rem;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.form-group input,
.form-group textarea,
.form-group select {
    width: 100%;
    padding: 1rem 1.2rem;
    border: 1px solid var(--sand-light);
    background: var(--white);
    color: var(--text);
    font-family: 'Mulish', sans-serif;
    font-size: 0.95rem;
    transition: all 0.3s ease;
    border-radius: 0;
    -webkit-appearance: none;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
    outline: none;
    border-color: var(--sage);
    box-shadow: 0 0 0 3px rgba(122, 154, 109, 0.08);
}

.form-group textarea { resize: vertical; min-height: 140px; }

.btn-submit {
    width: 100%;
    padding: 1.2rem;
    background: var(--forest);
    color: var(--cream);
    border: 2px solid var(--forest);
    font-family: 'Mulish', sans-serif;
    font-weight: 600;
    font-size: 0.8rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    cursor: pointer;
    transition: all 0.4s ease;
    border-radius: 0;
}

.btn-submit:hover {
    background: var(--moss);
    border-color: var(--moss);
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(44, 62, 45, 0.2);
}

/* WPForms / CF7 overrides */
.wpcf7 input[type="text"],
.wpcf7 input[type="email"],
.wpcf7 input[type="tel"],
.wpcf7 textarea,
.wpcf7 select {
    width: 100%;
    padding: 1rem 1.2rem;
    border: 1px solid var(--sand-light);
    background: var(--white);
    font-family: 'Mulish', sans-serif;
    font-size: 0.95rem;
    border-radius: 0;
}

.wpcf7 input[type="submit"] {
    width: 100%;
    padding: 1.2rem;
    background: var(--forest);
    color: var(--cream);
    border: 2px solid var(--forest);
    font-family: 'Mulish', sans-serif;
    font-weight: 600;
    font-size: 0.8rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    cursor: pointer;
    border-radius: 0;
    transition: all 0.4s ease;
}

.wpcf7 input[type="submit"]:hover {
    background: var(--moss);
    border-color: var(--moss);
}

/* ═══════════════════════════════════════
   PAGE HERO (soins.html)
═══════════════════════════════════════ */
.page-hero {
    padding-top: 100px;
    background: var(--forest-deep);
    position: relative;
    overflow: hidden;
    text-align: center;
}

.page-hero-bg {
    position: absolute;
    inset: 0;
    background:
        url("data:image/svg+xml,%3Csvg viewBox='0 0 400 400' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.8' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.04'/%3E%3C/svg%3E"),
        radial-gradient(circle at 30% 50%, rgba(122, 154, 109, 0.1) 0%, transparent 60%),
        radial-gradient(circle at 70% 80%, rgba(212, 197, 169, 0.08) 0%, transparent 50%);
}

.page-hero-content {
    position: relative;
    z-index: 1;
    padding: 5rem 3rem 3rem;
}

.page-hero .hero-badge {
    color: var(--sage-light);
    background: rgba(122, 154, 109, 0.1);
    border-color: rgba(122, 154, 109, 0.2);
    margin: 0 auto 2rem;
}

.page-hero .hero-badge::before { background: var(--sage-light); }

.page-hero h1 {
    font-size: 4rem;
    color: var(--cream);
    font-weight: 300;
    margin-bottom: 1.5rem;
    opacity: 0;
    animation: fadeSlideUp 1s ease-out 0.3s forwards;
}

.page-hero > .page-hero-content > p {
    color: rgba(245, 241, 234, 0.6);
    font-size: 1.1rem;
    max-width: 600px;
    margin: 0 auto;
    opacity: 0;
    animation: fadeSlideUp 1s ease-out 0.5s forwards;
}

.page-hero-nav {
    position: relative;
    z-index: 1;
    display: flex;
    justify-content: center;
    margin-top: 3.5rem;
}

.page-hero-tab {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    padding: 1.3rem 2.5rem;
    color: rgba(245, 241, 234, 0.5);
    text-decoration: none;
    font-size: 0.82rem;
    font-weight: 600;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    border-bottom: 3px solid transparent;
    transition: all 0.3s ease;
    background: rgba(255,255,255,0.02);
}

.page-hero-tab:hover {
    color: var(--cream);
    background: rgba(255,255,255,0.05);
    border-bottom-color: var(--sage);
}

.page-hero-tab-icon { font-size: 1.2rem; }

/* ═══════════════════════════════════════
   SOINS SECTIONS (Page Soins)
═══════════════════════════════════════ */
.soins-section { padding: 7rem 3rem; }
.soins-section--esprit { background: var(--warm-white); }
.soins-section--corps { background: var(--cream); }

.soins-section-wrapper { max-width: 1200px; margin: 0 auto; }

.soins-section-header {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 5rem;
    align-items: center;
    margin-bottom: 5rem;
}

.soins-section-header.reverse { direction: rtl; }
.soins-section-header.reverse > * { direction: ltr; }

.soins-section-intro h2 {
    font-size: 2.8rem;
    margin-bottom: 1.5rem;
    font-weight: 300;
}

.soins-section-intro p {
    font-size: 1.02rem;
    color: var(--text-soft);
    line-height: 1.9;
}

.soins-img-placeholder {
    width: 100%;
    aspect-ratio: 4/3;
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(255,255,255,0.4);
    font-style: italic;
    font-family: 'Cormorant Garamond', serif;
    position: relative;
    overflow: hidden;
}

.soins-img--esprit {
    background: linear-gradient(135deg, var(--sage-light) 0%, var(--sage) 50%, var(--moss) 100%);
}

.soins-img--corps {
    background: linear-gradient(135deg, var(--sand-light) 0%, var(--clay) 50%, var(--earth) 100%);
}

.soins-img-placeholder img {
    width: 100%; height: 100%;
    object-fit: cover;
    position: absolute;
    inset: 0;
}

.soins-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
    gap: 2rem;
}

.soin-item {
    background: var(--white);
    padding: 2.5rem;
    border: 1px solid rgba(122, 154, 109, 0.08);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.soins-section--corps .soin-item { border-color: rgba(184, 160, 136, 0.12); }

.soin-item:hover {
    transform: translateY(-6px);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.06);
}

.soin-item--highlight {
    background: linear-gradient(135deg, rgba(122, 154, 109, 0.04) 0%, rgba(181, 201, 168, 0.06) 100%);
    border-color: rgba(122, 154, 109, 0.15);
}

.soins-section--corps .soin-item--highlight {
    background: linear-gradient(135deg, rgba(184, 160, 136, 0.06) 0%, rgba(212, 197, 169, 0.08) 100%);
    border-color: rgba(184, 160, 136, 0.2);
}

.soin-item-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 1.2rem;
}

.soin-item-icon {
    font-size: 1.5rem;
    width: 45px; height: 45px;
    background: rgba(122, 154, 109, 0.08);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.soins-section--corps .soin-item-icon { background: rgba(184, 160, 136, 0.1); }

.soin-item-meta { display: flex; gap: 0.8rem; align-items: center; }

.soin-duration {
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: var(--text-muted);
    padding: 0.3rem 0.8rem;
    background: var(--cream);
    border-radius: 50px;
}

.soin-price {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.4rem;
    font-weight: 600;
    color: var(--forest);
}

.soins-section--corps .soin-price { color: var(--earth); }

.soin-item h3 { font-size: 1.35rem; color: var(--forest); margin-bottom: 0.8rem; }
.soins-section--corps .soin-item h3 { color: var(--earth); }

.soin-item p { font-size: 0.92rem; color: var(--text-soft); line-height: 1.8; }

.soins-section-note {
    margin-top: 3rem;
    padding: 1.5rem 2rem;
    background: rgba(122, 154, 109, 0.06);
    border-left: 3px solid var(--sage);
    font-size: 0.92rem;
    color: var(--text-soft);
    line-height: 1.8;
}

/* Section divider */
.section-divider {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 2rem;
    padding: 1rem 3rem;
    background: var(--warm-white);
}

.divider-line { width: 80px; height: 1px; background: var(--stone); }
.divider-icon { font-size: 1.5rem; opacity: 0.6; }

/* ═══════════════════════════════════════
   TARIFS RECAP (Page Soins)
═══════════════════════════════════════ */
.tarifs-recap {
    padding: 7rem 3rem;
    background: var(--forest-deep);
    color: var(--cream);
    position: relative;
    overflow: hidden;
}

.tarifs-recap::before {
    content: '';
    position: absolute;
    inset: 0;
    background: url("data:image/svg+xml,%3Csvg viewBox='0 0 400 400' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.75' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.03'/%3E%3C/svg%3E");
}

.tarifs-recap-wrapper { max-width: 1100px; margin: 0 auto; position: relative; z-index: 1; }

.tarifs-recap .section-label { color: var(--sage-light); }
.tarifs-recap .section-label::before { background: var(--sage-light); }

.tarifs-recap h2 {
    font-size: 3rem;
    color: var(--cream);
    font-weight: 300;
    margin-bottom: 1rem;
}

.tarifs-recap h2 em { color: var(--leaf); }

.tarifs-table-container {
    display: flex;
    flex-direction: column;
    gap: 3rem;
    margin-top: 1rem;
}

.tarifs-table-category h3 {
    font-size: 1.4rem;
    color: var(--cream);
    margin-bottom: 1.2rem;
    font-weight: 400;
}

.tarifs-table {
    width: 100%;
    border-collapse: collapse;
}

.tarifs-table thead th {
    text-align: left;
    font-size: 0.72rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--sage-light);
    font-weight: 600;
    padding: 1rem 1.2rem;
    border-bottom: 1px solid rgba(255,255,255,0.1);
}

.tarifs-table thead th:last-child { text-align: right; }

.tarifs-table tbody td {
    padding: 1.1rem 1.2rem;
    border-bottom: 1px solid rgba(255,255,255,0.05);
    color: rgba(245, 241, 234, 0.8);
    font-size: 0.95rem;
}

.tarifs-table tbody tr:last-child td { border-bottom: none; }
.tarifs-table tbody tr:hover td { background: rgba(255,255,255,0.03); }

.table-price {
    text-align: right !important;
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.3rem !important;
    font-weight: 500;
    color: var(--cream) !important;
    white-space: nowrap;
}

.table-tag {
    display: inline-block;
    font-size: 0.68rem;
    letter-spacing: 1px;
    text-transform: uppercase;
    padding: 0.2rem 0.6rem;
    background: rgba(184, 160, 136, 0.15);
    color: var(--sand);
    border-radius: 3px;
    margin-left: 0.5rem;
    vertical-align: middle;
    font-weight: 600;
}

.table-tag--green {
    background: rgba(122, 154, 109, 0.2);
    color: var(--sage-light);
}

.table-highlight td { background: rgba(122, 154, 109, 0.08) !important; }

.tarifs-notes {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    margin-top: 3rem;
}

.tarif-note-item {
    padding: 1.5rem;
    background: rgba(255,255,255,0.03);
    border: 1px solid rgba(255,255,255,0.06);
    font-size: 0.88rem;
    color: rgba(245, 241, 234, 0.6);
    line-height: 1.7;
}

.tarif-note-item strong {
    display: block;
    margin-bottom: 0.5rem;
    color: var(--cream);
    font-size: 0.92rem;
}

.tarifs-cta { text-align: center; margin-top: 3.5rem; }

.tarifs-cta .btn-primary { background: var(--sage); border-color: var(--sage); }
.tarifs-cta .btn-primary:hover { background: var(--sage-light); border-color: var(--sage-light); }

/* ═══════════════════════════════════════
   FOOTER
═══════════════════════════════════════ */
footer {
    background: var(--bark);
    color: rgba(255, 255, 255, 0.4);
    padding: 3.5rem 3rem;
}

.footer-wrapper {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.footer-brand {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.6);
    letter-spacing: 2px;
}

.footer-links { display: flex; gap: 2rem; }

.footer-links a {
    color: rgba(255, 255, 255, 0.4);
    text-decoration: none;
    font-size: 0.82rem;
    letter-spacing: 1px;
    text-transform: uppercase;
    transition: color 0.3s;
}

.footer-links a:hover { color: rgba(255,255,255,0.7); }

footer p { font-size: 0.82rem; }

/* ═══════════════════════════════════════
   SCROLL ANIMATIONS
═══════════════════════════════════════ */
.reveal {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 0.9s cubic-bezier(0.4, 0, 0.2, 1),
                transform 0.9s cubic-bezier(0.4, 0, 0.2, 1);
}

.reveal.visible { opacity: 1; transform: translateY(0); }

.reveal-left {
    opacity: 0;
    transform: translateX(-40px);
    transition: opacity 0.9s ease, transform 0.9s ease;
}

.reveal-right {
    opacity: 0;
    transform: translateX(40px);
    transition: opacity 0.9s ease, transform 0.9s ease;
}

.reveal-left.visible, .reveal-right.visible {
    opacity: 1;
    transform: translateX(0);
}

.stagger-children > * {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.stagger-children.visible > *:nth-child(1) { transition-delay: 0s; }
.stagger-children.visible > *:nth-child(2) { transition-delay: 0.08s; }
.stagger-children.visible > *:nth-child(3) { transition-delay: 0.16s; }
.stagger-children.visible > *:nth-child(4) { transition-delay: 0.24s; }
.stagger-children.visible > *:nth-child(5) { transition-delay: 0.32s; }
.stagger-children.visible > *:nth-child(6) { transition-delay: 0.4s; }
.stagger-children.visible > *:nth-child(7) { transition-delay: 0.48s; }
.stagger-children.visible > *:nth-child(8) { transition-delay: 0.56s; }

.stagger-children.visible > * { opacity: 1; transform: translateY(0); }

/* ═══════════════════════════════════════
   RESPONSIVE
═══════════════════════════════════════ */
@media (max-width: 1024px) {
    .hero { grid-template-columns: 1fr; min-height: auto; }
    .hero-visual { min-height: 50vh; }
    .hero-content { padding: 4rem 2.5rem 5rem; }
    .hero h1 { font-size: 3rem; }
    .hero-scroll-indicator { display: none; }

    .intro-wrapper { grid-template-columns: 1fr; gap: 3rem; }
    .soins-preview-cards { grid-template-columns: 1fr; }
    .about-wrapper { grid-template-columns: 1fr; gap: 3rem; }
    .contact { grid-template-columns: 1fr; }
    .contact-info-side { padding: 4rem 2.5rem; }
    .contact-form-side { padding: 4rem 2.5rem; }

    .soins-section-header { grid-template-columns: 1fr; gap: 3rem; }
    .soins-section-header.reverse { direction: ltr; }
    .tarifs-notes { grid-template-columns: 1fr; }

    .page-hero h1 { font-size: 3rem; }
    .page-hero-nav { flex-wrap: wrap; }
}

@media (max-width: 768px) {
    nav { padding: 1rem 1.5rem; }
    .mobile-toggle { display: flex; }

    .nav-links {
        position: fixed;
        top: 0; left: 0;
        width: 100%; height: 100vh;
        background: var(--warm-white);
        flex-direction: column;
        align-items: center;
        justify-content: center;
        gap: 2rem;
        opacity: 0;
        pointer-events: none;
        transition: opacity 0.4s ease;
        z-index: 999;
    }

    .nav-links.active { opacity: 1; pointer-events: auto; }
    .nav-links a { font-size: 1.1rem; letter-spacing: 3px; }

    .hero-content { padding: 3rem 1.5rem 4rem; }
    .hero h1 { font-size: 2.4rem; }
    .hero-actions { flex-direction: column; width: 100%; }
    .btn-primary, .btn-secondary { width: 100%; justify-content: center; text-align: center; }

    .intro-section, .soins-preview, .about, .soins-section { padding: 5rem 1.5rem; }
    .intro-content h2, .about-content h2, .soins-section-intro h2 { font-size: 2.2rem; }

    .soins-grid { grid-template-columns: 1fr; }
    .form-row { grid-template-columns: 1fr; }

    .page-hero-content { padding: 3rem 1.5rem 2rem; }
    .page-hero h1 { font-size: 2.5rem; }
    .page-hero-tab { padding: 1rem 1.2rem; font-size: 0.72rem; }

    .tarifs-recap { padding: 5rem 1.5rem; }
    .tarifs-table thead th, .tarifs-table tbody td { padding: 0.8rem; }

    .footer-wrapper { flex-direction: column; gap: 1rem; text-align: center; }
    .footer-links { flex-wrap: wrap; justify-content: center; gap: 1rem; }
}
.preview-card-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    position: absolute;
    inset: 0;
}
/* ═══════════════════════════════════════
   PAGE STAGES & ATELIERS
═══════════════════════════════════════ */
.stages-intro { padding: 7rem 3rem; background: var(--warm-white); }
.stages-intro-wrapper { max-width: 900px; margin: 0 auto; text-align: center; }
.stages-intro h2 { font-size: 2.8rem; font-weight: 300; margin-bottom: 2rem; }
.stages-intro p { font-size: 1.05rem; color: var(--text-soft); line-height: 1.9; margin-bottom: 1.5rem; }
.stages-intro-quote { margin: 3rem auto 0; padding: 2rem 3rem; background: rgba(122,154,109,0.05); border-left: 3px solid var(--sage); font-family: 'Playfair Display', serif; font-style: italic; font-size: 1.15rem; color: var(--moss); line-height: 1.8; max-width: 700px; text-align: left; }

.stages-types { padding: 5rem 3rem 7rem; background: var(--cream); }
.stages-types-wrapper { max-width: 1100px; margin: 0 auto; }
.stages-types-header { text-align: center; margin-bottom: 4rem; }
.stages-types-header h2 { font-size: 2.5rem; font-weight: 300; }
.stages-types-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 2rem; }
.type-card { background: var(--white); padding: 2.5rem 2rem; text-align: center; border: 1px solid rgba(122,154,109,0.08); transition: all 0.4s; }
.type-card:hover { transform: translateY(-6px); box-shadow: 0 20px 50px rgba(0,0,0,0.06); }
.type-card-icon { font-size: 2.5rem; margin-bottom: 1.2rem; display: block; }
.type-card h3 { font-size: 1.3rem; color: var(--forest); margin-bottom: 0.8rem; }
.type-card p { font-size: 0.88rem; color: var(--text-soft); line-height: 1.7; }

.stages-events { padding: 7rem 3rem; background: var(--warm-white); }
.stages-events-wrapper { max-width: 1100px; margin: 0 auto; }
.stages-events-header { text-align: center; margin-bottom: 4rem; }
.stages-events-header h2 { font-size: 2.8rem; font-weight: 300; margin-bottom: 1rem; }
.stages-events-header p { font-size: 1.02rem; color: var(--text-soft); }

.event-card { display: grid; grid-template-columns: 1fr 1.3fr; gap: 0; margin-bottom: 4rem; background: var(--white); border: 1px solid rgba(122,154,109,0.1); overflow: hidden; transition: all 0.4s; }
.event-card:hover { box-shadow: 0 25px 60px rgba(0,0,0,0.07); transform: translateY(-4px); }
.event-card-visual { background: linear-gradient(135deg, var(--sage-light), var(--sage), var(--moss)); display: flex; align-items: center; justify-content: center; min-height: 400px; position: relative; overflow: hidden; color: rgba(255,255,255,0.5); font-style: italic; font-family: 'Cormorant Garamond', serif; font-size: 1.1rem; padding: 2rem; text-align: center; }
.event-card-visual img { width: 100%; height: 100%; object-fit: cover; position: absolute; inset: 0; }
.event-card-content { padding: 3rem; display: flex; flex-direction: column; justify-content: center; }
.event-card-tag { display: inline-flex; align-items: center; gap: 0.5rem; padding: 0.4rem 1rem; background: rgba(122,154,109,0.1); border-radius: 50px; font-size: 0.7rem; letter-spacing: 2px; text-transform: uppercase; color: var(--sage); font-weight: 600; width: fit-content; margin-bottom: 1.2rem; }
.event-card-date { font-family: 'Cormorant Garamond', serif; font-size: 1.3rem; color: var(--moss); margin-bottom: 0.8rem; font-weight: 500; }
.event-card-content h3 { font-size: 2rem; color: var(--forest-deep); margin-bottom: 0.5rem; font-weight: 400; }
.event-card-location { font-size: 0.85rem; color: var(--text-muted); margin-bottom: 1.5rem; display: flex; align-items: center; gap: 0.5rem; }
.event-card-desc { font-size: 0.95rem; color: var(--text-soft); line-height: 1.8; margin-bottom: 1.5rem; }
.event-card-details { display: flex; gap: 1.5rem; flex-wrap: wrap; margin-bottom: 2rem; }
.event-detail { padding: 0.8rem 1.2rem; background: var(--cream); font-size: 0.82rem; }
.event-detail strong { display: block; font-size: 0.7rem; letter-spacing: 1px; text-transform: uppercase; color: var(--sage); margin-bottom: 0.2rem; }
.event-detail span { color: var(--text); font-weight: 500; }
.event-card-actions { display: flex; gap: 1rem; align-items: center; }

.no-events { text-align: center; padding: 4rem 2rem; background: var(--cream); border: 2px dashed var(--sand); max-width: 700px; margin: 0 auto; }
.no-events-icon { font-size: 3rem; margin-bottom: 1.5rem; }
.no-events h3 { font-size: 1.8rem; color: var(--forest); margin-bottom: 1rem; }
.no-events p { color: var(--text-soft); font-size: 1rem; line-height: 1.8; margin-bottom: 2rem; }

.stages-cta { padding: 6rem 3rem; background: var(--forest-deep); text-align: center; position: relative; }
.stages-cta::before { content: ''; position: absolute; inset: 0; background: radial-gradient(circle at 50% 50%, rgba(122,154,109,0.08) 0%, transparent 60%); }
.stages-cta-wrapper { position: relative; z-index: 1; max-width: 700px; margin: 0 auto; }
.stages-cta h2 { font-size: 2.5rem; color: var(--cream); font-weight: 300; margin-bottom: 1.5rem; }
.stages-cta h2 em { color: var(--leaf); }
.stages-cta p { color: rgba(245,241,234,0.6); font-size: 1.05rem; margin-bottom: 2.5rem; line-height: 1.8; }
.stages-cta .btn-primary { background: var(--sage); border-color: var(--sage); }
.stages-cta .btn-primary:hover { background: var(--sage-light); border-color: var(--sage-light); }

@media (max-width: 1024px) {
    .stages-types-grid { grid-template-columns: 1fr 1fr; }
    .event-card { grid-template-columns: 1fr; }
    .event-card-visual { min-height: 280px; }
}
@media (max-width: 768px) {
    .stages-types-grid { grid-template-columns: 1fr; }
    .stages-intro, .stages-events, .stages-types { padding: 5rem 1.5rem; }
    .stages-cta { padding: 4rem 1.5rem; }
    .event-card-content { padding: 2rem; }
    .event-card-details { flex-direction: column; }
    .event-card-actions { flex-direction: column; }
    .event-card-actions .btn-primary, .event-card-actions .btn-secondary { width: 100%; justify-content: center; }
}
.hero-img-wrap {
    width: 100%;
    height: 100%;
    overflow: hidden;
}

.hero-img-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center 20%;
}
.hero {
    margin-top: 80px;
}