/* ============================================================
   sophrologuedijon.fr — Premium Zen / Bien-etre Design
   Inspired by Apple clarity & Headspace warmth
   ============================================================ */

/* --- Design System Variables --- */
:root {
    /* Core palette */
    --lavande: #e8e0f0;
    --lavande-dark: #c9b8de;
    --lavande-deeper: #b5a0cc;
    --sauge: #9caf88;
    --sauge-dark: #7d9466;
    --sauge-deeper: #5f7a4a;
    --sauge-light: #d4e4c8;
    --sauge-lighter: #e8f0e0;
    --beige: #f5f0e8;
    --beige-warm: #f0e8d8;
    --beige-cool: #f8f4ee;
    --prune: #3c2f4f;
    --prune-light: #5a4670;
    --prune-pale: #7a6890;
    --cream: #fdfbf7;
    --surface: #ffffff;
    --text: #2d2438;
    --text-light: #6b5e7a;
    --text-muted: #9a8eaa;
    --border: #e8e0f0;
    --border-light: #f0eaf5;
    --accent-rose: #d4a0b0;
    --accent-gold: #c4a35a;

    /* Typography */
    --font-display: 'Cormorant Garamond', Georgia, serif;
    --font-body: 'Nunito Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    --font-serif: var(--font-display);
    --font-sans: var(--font-body);

    /* Shadows */
    --shadow-xs: 0 1px 3px rgba(60, 47, 79, 0.04);
    --shadow-soft: 0 2px 15px rgba(60, 47, 79, 0.06);
    --shadow-md: 0 4px 20px rgba(60, 47, 79, 0.08);
    --shadow-lg: 0 8px 40px rgba(60, 47, 79, 0.1);
    --shadow-xl: 0 16px 60px rgba(60, 47, 79, 0.12);
    --shadow-hover: 0 12px 40px rgba(60, 47, 79, 0.12);
    --shadow-glow-sauge: 0 0 40px rgba(156, 175, 136, 0.2);
    --shadow-glow-lavande: 0 0 40px rgba(232, 224, 240, 0.4);
    --shadow-inner: inset 0 2px 6px rgba(60, 47, 79, 0.04);

    /* Radii */
    --radius-xs: 6px;
    --radius-sm: 10px;
    --radius: 16px;
    --radius-lg: 24px;
    --radius-xl: 32px;
    --radius-full: 9999px;

    /* Transitions */
    --ease-out: cubic-bezier(0.23, 1, 0.32, 1);
    --ease-spring: cubic-bezier(0.34, 1.56, 0.64, 1);
    --ease-smooth: cubic-bezier(0.4, 0, 0.2, 1);
    --transition: 0.3s var(--ease-smooth);
    --transition-slow: 0.5s var(--ease-out);
    --transition-fast: 0.15s var(--ease-smooth);

    /* Spacing */
    --space-xs: 0.25rem;
    --space-sm: 0.5rem;
    --space-md: 1rem;
    --space-lg: 1.5rem;
    --space-xl: 2rem;
    --space-2xl: 3rem;
    --space-3xl: 4rem;
    --space-4xl: 6rem;

    /* Aliases for backward compatibility */
    --vert-sauge: var(--sauge);
    --vert-sauge-dark: var(--sauge-dark);
    --vert-sauge-light: var(--sauge-light);
    --blanc: var(--surface);
    --gris-doux: var(--cream);
    --gris-texte: var(--text-light);
    --ombre: var(--shadow-soft);
    --ombre-hover: var(--shadow-hover);
}

/* --- Reset & Base --- */
*, *::before, *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
    text-size-adjust: 100%;
    -webkit-text-size-adjust: 100%;
}

body {
    font-family: var(--font-body);
    font-weight: 400;
    line-height: 1.7;
    color: var(--prune);
    background-color: var(--beige);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    text-rendering: optimizeLegibility;
    overflow-x: hidden;
}

::selection {
    background: var(--sauge-light);
    color: var(--prune);
}

::-moz-selection {
    background: var(--sauge-light);
    color: var(--prune);
}

a {
    color: var(--sauge-dark);
    text-decoration: none;
    transition: color var(--transition);
}

a:hover {
    color: var(--prune);
}

a:focus-visible {
    outline: 2px solid var(--sauge);
    outline-offset: 3px;
    border-radius: var(--radius-xs);
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

h1, h2, h3, h4 {
    font-family: var(--font-display);
    font-weight: 500;
    line-height: 1.2;
    color: var(--prune);
    letter-spacing: -0.01em;
}

h1 { font-size: clamp(2.2rem, 5vw, 3.6rem); }
h2 { font-size: clamp(1.6rem, 3.5vw, 2.5rem); }
h3 { font-size: clamp(1.2rem, 2.5vw, 1.5rem); }
h4 { font-size: 1.1rem; }

p {
    margin-bottom: 1rem;
    color: var(--text-light);
    line-height: 1.75;
}

strong {
    font-weight: 700;
    color: var(--prune);
}

em {
    font-style: italic;
    color: var(--prune-light);
}

/* --- Layout --- */
.container {
    max-width: 1180px;
    margin: 0 auto;
    padding: 0 2rem;
}

.text-center { text-align: center; }
.text-left { text-align: left; }

/* ============================================================
   NAVIGATION
   ============================================================ */
.nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 1.1rem 0;
    transition: all 0.4s var(--ease-out);
    background: transparent;
}

.nav.scrolled {
    background: rgba(253, 251, 247, 0.82);
    backdrop-filter: blur(20px) saturate(180%);
    -webkit-backdrop-filter: blur(20px) saturate(180%);
    box-shadow: 0 1px 0 rgba(60, 47, 79, 0.06), var(--shadow-soft);
    padding: 0.6rem 0;
}

.nav-inner {
    max-width: 1180px;
    margin: 0 auto;
    padding: 0 2rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.nav-logo {
    display: flex;
    align-items: center;
    gap: 0.65rem;
    color: var(--prune);
    text-decoration: none;
    font-family: var(--font-display);
    font-size: 1.35rem;
    font-weight: 500;
    font-style: italic;
    transition: opacity var(--transition);
}

.nav-logo:hover {
    opacity: 0.8;
    color: var(--prune);
}

.nav-logo-icon {
    color: var(--sauge);
    display: flex;
    align-items: center;
    transition: transform 0.4s var(--ease-spring);
}

.nav-logo:hover .nav-logo-icon {
    transform: rotate(8deg) scale(1.1);
}

.nav-logo-text {
    display: flex;
    flex-direction: column;
    line-height: 1.1;
}

.nav-logo-text small {
    font-family: var(--font-body);
    font-size: 0.65rem;
    font-weight: 400;
    font-style: normal;
    color: var(--text-muted);
    letter-spacing: 0.12em;
    text-transform: uppercase;
    margin-top: 1px;
}

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

.nav-links li {
    list-style: none;
}

.nav-links a {
    display: block;
    padding: 0.5rem 0.95rem;
    font-size: 0.88rem;
    font-weight: 400;
    color: var(--prune);
    border-radius: var(--radius-full);
    transition: all var(--transition);
    position: relative;
    letter-spacing: 0.01em;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: 6px;
    left: 50%;
    width: 0;
    height: 1.5px;
    background: var(--sauge);
    transition: all 0.3s var(--ease-out);
    transform: translateX(-50%);
    border-radius: 1px;
}

.nav-links a:hover::after,
.nav-links a.active::after {
    width: calc(100% - 1.9rem);
}

.nav-links a:hover {
    color: var(--sauge-dark);
}

.nav-links a.active {
    color: var(--sauge-dark);
    font-weight: 600;
}

.nav-cta {
    background: var(--sauge) !important;
    color: var(--surface) !important;
    font-weight: 600 !important;
    padding: 0.55rem 1.4rem !important;
    border-radius: var(--radius-full) !important;
    box-shadow: 0 2px 12px rgba(156, 175, 136, 0.25);
    transition: all 0.3s var(--ease-out) !important;
}

.nav-cta::after {
    display: none !important;
}

.nav-cta:hover {
    background: var(--sauge-dark) !important;
    color: var(--surface) !important;
    transform: translateY(-1px);
    box-shadow: 0 4px 20px rgba(156, 175, 136, 0.35) !important;
}

/* Hamburger Menu */
.nav-toggle {
    display: none;
    flex-direction: column;
    justify-content: center;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
    z-index: 1001;
    width: 40px;
    height: 40px;
    border-radius: var(--radius-sm);
    transition: background var(--transition);
}

.nav-toggle:hover {
    background: rgba(156, 175, 136, 0.1);
}

.nav-toggle span {
    display: block;
    width: 22px;
    height: 2px;
    background: var(--prune);
    border-radius: 2px;
    transition: all 0.35s var(--ease-out);
    transform-origin: center;
}

.nav-toggle.open span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.nav-toggle.open span:nth-child(2) {
    opacity: 0;
    transform: scaleX(0);
}

.nav-toggle.open span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
}

/* ============================================================
   BUTTONS
   ============================================================ */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.85rem 2rem;
    font-family: var(--font-body);
    font-size: 0.92rem;
    font-weight: 600;
    border-radius: var(--radius-full);
    cursor: pointer;
    transition: all 0.3s var(--ease-out);
    border: 2px solid transparent;
    text-decoration: none;
    text-align: center;
    letter-spacing: 0.02em;
    position: relative;
    overflow: hidden;
    -webkit-tap-highlight-color: transparent;
    isolation: isolate;
}

.btn::before {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: inherit;
    opacity: 0;
    transition: opacity 0.3s var(--ease-smooth);
    z-index: -1;
}

.btn-primary {
    background: var(--sauge);
    color: var(--surface);
    border-color: var(--sauge);
    box-shadow: 0 2px 10px rgba(156, 175, 136, 0.2);
}

.btn-primary::before {
    background: linear-gradient(135deg, var(--sauge-dark), var(--sauge-deeper));
}

.btn-primary:hover {
    color: var(--surface);
    transform: translateY(-2px);
    box-shadow: 0 6px 24px rgba(156, 175, 136, 0.35);
}

.btn-primary:hover::before {
    opacity: 1;
}

.btn-primary:active {
    transform: translateY(0);
    box-shadow: 0 2px 8px rgba(156, 175, 136, 0.25);
}

.btn-outline {
    background: transparent;
    color: var(--sauge-dark);
    border-color: var(--sauge);
}

.btn-outline::before {
    background: var(--sauge);
}

.btn-outline:hover {
    color: var(--surface);
    border-color: var(--sauge);
    transform: translateY(-2px);
    box-shadow: 0 4px 16px rgba(156, 175, 136, 0.25);
}

.btn-outline:hover::before {
    opacity: 1;
}

.btn-lg {
    padding: 1.05rem 2.6rem;
    font-size: 1rem;
}

.btn-sm {
    padding: 0.5rem 1.3rem;
    font-size: 0.82rem;
}

.btn:focus-visible {
    outline: 2px solid var(--sauge);
    outline-offset: 3px;
}

/* ============================================================
   HERO SECTION
   ============================================================ */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    padding: 8rem 0 6rem;
    background: linear-gradient(
        160deg,
        var(--beige) 0%,
        #ede5f2 30%,
        var(--lavande) 50%,
        #d8e8cc 75%,
        var(--sauge-light) 100%
    );
}

/* Subtle grain overlay */
.hero::after {
    content: '';
    position: absolute;
    inset: 0;
    background: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.65' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)' opacity='0.03'/%3E%3C/svg%3E");
    pointer-events: none;
    z-index: 0;
}

.hero-bg-shapes {
    position: absolute;
    inset: 0;
    pointer-events: none;
    overflow: hidden;
}

.blob {
    position: absolute;
    border-radius: 50% 40% 60% 30% / 40% 50% 30% 60%;
    filter: blur(1px);
    will-change: transform;
}

.blob-1 {
    width: 550px;
    height: 550px;
    background: radial-gradient(circle at 30% 40%, var(--sauge), var(--sauge-dark));
    opacity: 0.12;
    top: -12%;
    right: -8%;
    animation: floatBlob1 22s ease-in-out infinite;
}

.blob-2 {
    width: 400px;
    height: 400px;
    background: radial-gradient(circle at 60% 40%, var(--lavande), var(--lavande-dark));
    opacity: 0.15;
    bottom: -8%;
    left: -5%;
    border-radius: 40% 60% 30% 50% / 50% 30% 60% 40%;
    animation: floatBlob2 26s ease-in-out infinite;
    animation-delay: -8s;
}

.blob-3 {
    width: 220px;
    height: 220px;
    background: radial-gradient(circle at 50% 50%, var(--prune-light), var(--prune));
    opacity: 0.04;
    top: 38%;
    left: 18%;
    border-radius: 60% 30% 50% 40% / 30% 60% 40% 50%;
    animation: floatBlob3 18s ease-in-out infinite;
    animation-delay: -13s;
}

@keyframes floatBlob1 {
    0%, 100% { transform: translate(0, 0) rotate(0deg) scale(1); }
    20% { transform: translate(15px, -25px) rotate(3deg) scale(1.04); }
    40% { transform: translate(-10px, 15px) rotate(-2deg) scale(0.97); }
    60% { transform: translate(20px, 10px) rotate(5deg) scale(1.03); }
    80% { transform: translate(-5px, -15px) rotate(-1deg) scale(0.98); }
}

@keyframes floatBlob2 {
    0%, 100% { transform: translate(0, 0) rotate(0deg) scale(1); }
    25% { transform: translate(25px, -15px) rotate(-4deg) scale(1.06); }
    50% { transform: translate(-15px, 25px) rotate(3deg) scale(0.94); }
    75% { transform: translate(10px, -20px) rotate(-2deg) scale(1.02); }
}

@keyframes floatBlob3 {
    0%, 100% { transform: translate(0, 0) rotate(0deg); }
    33% { transform: translate(-20px, 15px) rotate(6deg); }
    66% { transform: translate(15px, -10px) rotate(-4deg); }
}

.hero-content {
    position: relative;
    z-index: 1;
    text-align: center;
    max-width: 740px;
}

.hero-title {
    font-size: clamp(2.4rem, 6vw, 4rem);
    font-weight: 600;
    color: var(--prune);
    margin-bottom: 1.6rem;
    line-height: 1.12;
    letter-spacing: -0.02em;
}

.hero-subtitle {
    font-size: clamp(1rem, 2vw, 1.2rem);
    color: var(--text-light);
    margin-bottom: 2.8rem;
    max-width: 560px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.8;
    font-weight: 300;
}

.hero-actions {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

/* Scroll indicator */
.hero::before {
    content: '';
    position: absolute;
    bottom: 2.5rem;
    left: 50%;
    transform: translateX(-50%);
    width: 24px;
    height: 40px;
    border: 2px solid rgba(60, 47, 79, 0.2);
    border-radius: 12px;
    z-index: 2;
}

/* ============================================================
   SECTIONS
   ============================================================ */
.section {
    padding: 5.5rem 0;
    position: relative;
}

.section-alt {
    background: var(--surface);
}

.section-title {
    text-align: center;
    margin-bottom: 1rem;
    color: var(--prune);
    position: relative;
}

.section-intro {
    text-align: center;
    max-width: 620px;
    margin: 0 auto 3.5rem;
    color: var(--text-light);
    font-size: 1.05rem;
    line-height: 1.8;
}

/* ============================================================
   CARDS GRID
   ============================================================ */
.cards-grid {
    display: grid;
    gap: 1.5rem;
}

.cards-4 { grid-template-columns: repeat(4, 1fr); }
.cards-3 { grid-template-columns: repeat(3, 1fr); }
.cards-2 { grid-template-columns: repeat(2, 1fr); }

.card {
    background: var(--surface);
    border-radius: var(--radius);
    padding: 2rem;
    box-shadow: var(--shadow-soft);
    transition: all 0.4s var(--ease-out);
    border: 1px solid rgba(232, 224, 240, 0.5);
    position: relative;
}

.card:hover {
    box-shadow: var(--shadow-lg);
    transform: translateY(-6px);
    border-color: rgba(156, 175, 136, 0.2);
}

.card-icon {
    color: var(--sauge);
    margin-bottom: 1.4rem;
    transition: transform 0.4s var(--ease-spring);
}

.card:hover .card-icon {
    transform: scale(1.08);
}

.card h3 {
    margin-bottom: 0.8rem;
    transition: color var(--transition);
}

.card:hover h3 {
    color: var(--sauge-dark);
}

.card-small {
    padding: 1.5rem;
}

/* Services Cards (accueil) */
.cards-grid.cards-4 .card {
    text-align: center;
    border-left: 3px solid transparent;
    transition: all 0.4s var(--ease-out);
}

.cards-grid.cards-4 .card:hover {
    border-left-color: var(--sauge);
}

.cards-grid.cards-4 .card .card-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 72px;
    height: 72px;
    border-radius: 50%;
    background: var(--lavande);
    margin: 0 auto 1.4rem;
    transition: all 0.4s var(--ease-out);
}

.cards-grid.cards-4 .card:hover .card-icon {
    background: var(--sauge-light);
    box-shadow: var(--shadow-glow-sauge);
}

/* ============================================================
   TWO COLUMNS LAYOUT
   ============================================================ */
.two-cols {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4.5rem;
    align-items: center;
}

.col-text h2 {
    margin-bottom: 1.5rem;
}

.col-text p {
    margin-bottom: 1.2rem;
}

.col-text .btn {
    margin-top: 1.2rem;
}

/* Visual Card (accueil stats) */
.visual-card {
    background: var(--surface);
    border-radius: var(--radius-lg);
    padding: 2.8rem;
    box-shadow: var(--shadow-md);
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(232, 224, 240, 0.4);
}

.visual-blob {
    position: absolute;
    width: 220px;
    height: 220px;
    background: radial-gradient(circle, var(--sauge), var(--sauge-dark));
    opacity: 0.07;
    border-radius: 50% 40% 60% 30% / 40% 50% 30% 60%;
    top: -50px;
    right: -50px;
    animation: floatBlob3 15s ease-in-out infinite;
}

.visual-content {
    position: relative;
    z-index: 1;
}

.visual-stat {
    display: flex;
    align-items: baseline;
    gap: 1rem;
    padding: 1.2rem 0;
    border-bottom: 1px solid var(--border-light);
    transition: all var(--transition);
}

.visual-stat:last-child {
    border-bottom: none;
}

.visual-stat:hover {
    padding-left: 0.5rem;
}

.visual-number {
    font-family: var(--font-display);
    font-size: 2.4rem;
    font-weight: 600;
    color: var(--sauge);
    min-width: 60px;
    line-height: 1;
    transition: color var(--transition);
}

.visual-stat:hover .visual-number {
    color: var(--sauge-dark);
}

.visual-label {
    font-size: 0.95rem;
    color: var(--text-light);
    line-height: 1.4;
}

/* ============================================================
   TESTIMONIALS
   ============================================================ */
.testimonial-card {
    text-align: center;
    position: relative;
}

/* Decorative quote mark */
.testimonial-card::before {
    content: '\201C';
    position: absolute;
    top: 1rem;
    left: 1.5rem;
    font-family: var(--font-display);
    font-size: 4rem;
    line-height: 1;
    color: var(--sauge-light);
    opacity: 0.5;
    pointer-events: none;
}

.testimonial-stars {
    color: #e8b84b;
    margin-bottom: 1rem;
    display: flex;
    gap: 3px;
    justify-content: center;
}

.testimonial-stars svg {
    filter: drop-shadow(0 1px 2px rgba(232, 184, 75, 0.3));
}

.testimonial-text {
    font-style: italic;
    margin-bottom: 1rem;
    color: var(--prune);
    font-size: 0.95rem;
    line-height: 1.7;
}

.testimonial-author {
    font-weight: 600;
    color: var(--sauge-dark);
    font-size: 0.9rem;
    letter-spacing: 0.01em;
}

/* Full testimonial cards (testimonials page) */
.testimonial-card-full {
    margin-bottom: 1.5rem;
    border-left: 3px solid var(--sauge-light);
    transition: border-color var(--transition);
}

.testimonial-card-full:hover {
    border-left-color: var(--sauge);
}

.testimonial-card-full::before {
    font-size: 5rem;
    top: 0.5rem;
    left: 1.2rem;
}

.testimonial-card-full .testimonial-stars {
    justify-content: flex-start;
}

.testimonial-card-full h3 {
    margin-bottom: 1rem;
    font-size: 1.3rem;
}

.testimonial-card-full p {
    text-align: left;
}

.testimonial-context {
    font-size: 0.82rem;
    color: var(--sauge);
    font-weight: 600;
    letter-spacing: 0.02em;
    text-transform: uppercase;
    margin-top: 0.5rem;
}

.testimonials-list {
    max-width: 820px;
    margin: 0 auto;
}

/* ============================================================
   CTA SECTION
   ============================================================ */
.cta-section {
    background: linear-gradient(
        145deg,
        var(--lavande) 0%,
        #dde5d0 50%,
        var(--sauge-light) 100%
    );
    padding: 6rem 0;
    position: relative;
    overflow: hidden;
}

.cta-section::before {
    content: '';
    position: absolute;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, var(--sauge), transparent);
    opacity: 0.06;
    border-radius: 50%;
    right: -100px;
    top: -100px;
}

.cta-content {
    position: relative;
    z-index: 1;
}

.cta-content h2 {
    margin-bottom: 1rem;
    font-size: clamp(1.6rem, 3.5vw, 2.2rem);
}

.cta-content p {
    max-width: 520px;
    margin: 0 auto 2rem;
    font-size: 1.05rem;
}

/* ============================================================
   PAGE HEADER
   ============================================================ */
.page-header {
    padding: 9rem 0 3.5rem;
    background: linear-gradient(
        145deg,
        var(--beige) 0%,
        #ede5f2 50%,
        var(--lavande) 100%
    );
    text-align: center;
    position: relative;
    overflow: hidden;
}

.page-header::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 60px;
    background: linear-gradient(to bottom, transparent, var(--beige));
    pointer-events: none;
}

.page-title {
    margin-bottom: 1rem;
    font-size: clamp(2rem, 5vw, 3rem);
    letter-spacing: -0.02em;
}

.page-intro {
    max-width: 600px;
    margin: 0 auto;
    color: var(--text-light);
    font-size: 1.1rem;
    line-height: 1.7;
}

/* ============================================================
   CONTENT PAGES
   ============================================================ */
.content-page {
    max-width: 860px;
    margin: 0 auto;
}

.content-block {
    margin-bottom: 3.5rem;
}

.content-block h2 {
    margin-bottom: 1.2rem;
    padding-bottom: 0.7rem;
    border-bottom: 2px solid var(--sauge-light);
    position: relative;
}

.content-block h2::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 60px;
    height: 2px;
    background: var(--sauge);
    border-radius: 1px;
}

.content-list {
    list-style: none;
    padding: 0;
}

.content-list li {
    padding: 0.7rem 0 0.7rem 1.8rem;
    position: relative;
    color: var(--text-light);
    line-height: 1.7;
    transition: padding-left 0.2s var(--ease-out);
}

.content-list li:hover {
    padding-left: 2rem;
}

.content-list li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 1.15rem;
    width: 8px;
    height: 8px;
    background: var(--sauge);
    border-radius: 50%;
    transition: transform 0.2s var(--ease-spring);
}

.content-list li:hover::before {
    transform: scale(1.3);
}

/* ============================================================
   STEPS
   ============================================================ */
.steps-list {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    position: relative;
}

/* Vertical connector line */
.steps-list::before {
    content: '';
    position: absolute;
    left: 3.8rem;
    top: 3.5rem;
    bottom: 3.5rem;
    width: 2px;
    background: linear-gradient(to bottom, var(--sauge-light), var(--lavande));
    border-radius: 1px;
    z-index: 0;
}

.step {
    display: flex;
    gap: 1.5rem;
    align-items: flex-start;
    background: var(--surface);
    border-radius: var(--radius);
    padding: 1.8rem 2rem;
    box-shadow: var(--shadow-soft);
    transition: all 0.4s var(--ease-out);
    position: relative;
    z-index: 1;
    border: 1px solid rgba(232, 224, 240, 0.4);
}

.step:hover {
    box-shadow: var(--shadow-md);
    transform: translateX(6px);
    border-color: var(--sauge-light);
}

.step-number {
    flex-shrink: 0;
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--sauge), var(--sauge-dark));
    color: var(--surface);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-display);
    font-size: 1.3rem;
    font-weight: 600;
    box-shadow: 0 3px 12px rgba(156, 175, 136, 0.3);
    transition: transform 0.3s var(--ease-spring);
}

.step:hover .step-number {
    transform: scale(1.1);
}

.step-content h3 {
    margin-bottom: 0.5rem;
    font-size: 1.2rem;
}

.step-content p {
    font-size: 0.95rem;
    line-height: 1.7;
}

/* ============================================================
   BENEFITS GRID
   ============================================================ */
.benefits-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 0.8rem;
}

.benefit {
    display: flex;
    align-items: center;
    gap: 0.9rem;
    padding: 0.9rem 1.3rem;
    background: var(--surface);
    border-radius: var(--radius-sm);
    font-size: 0.95rem;
    color: var(--prune);
    box-shadow: var(--shadow-xs);
    border: 1px solid rgba(232, 224, 240, 0.3);
    transition: all 0.3s var(--ease-out);
}

.benefit:hover {
    box-shadow: var(--shadow-soft);
    transform: translateX(4px);
    border-color: var(--sauge-light);
}

.benefit-dot {
    flex-shrink: 0;
    width: 10px;
    height: 10px;
    background: var(--sauge);
    border-radius: 50%;
    transition: transform 0.3s var(--ease-spring);
    box-shadow: 0 0 0 3px rgba(156, 175, 136, 0.15);
}

.benefit:hover .benefit-dot {
    transform: scale(1.3);
    box-shadow: 0 0 0 5px rgba(156, 175, 136, 0.2);
}

/* ============================================================
   SEANCES CARDS
   ============================================================ */
.card-seance {
    display: flex;
    flex-direction: column;
    border-top: 3px solid transparent;
    transition: border-color 0.3s var(--ease-out);
}

.card-seance:hover {
    border-top-color: var(--sauge);
}

.card-badge {
    display: inline-block;
    background: linear-gradient(135deg, var(--sauge-lighter), var(--sauge-light));
    color: var(--sauge-dark);
    padding: 0.3rem 1.1rem;
    border-radius: var(--radius-full);
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    margin-bottom: 1rem;
    align-self: flex-start;
}

.card-duration {
    font-size: 0.85rem;
    color: var(--sauge);
    font-weight: 600;
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    gap: 0.4rem;
}

.card-duration::before {
    content: '';
    display: inline-block;
    width: 4px;
    height: 4px;
    background: var(--sauge);
    border-radius: 50%;
}

.card-features {
    list-style: none;
    padding: 0;
    margin: 1.2rem 0 1.5rem;
    flex-grow: 1;
}

.card-features li {
    padding: 0.45rem 0 0.45rem 1.6rem;
    position: relative;
    color: var(--text-light);
    font-size: 0.9rem;
    line-height: 1.6;
}

.card-features li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0.9rem;
    width: 8px;
    height: 8px;
    border: 2px solid var(--sauge);
    border-radius: 50%;
    background: transparent;
    transition: background 0.2s var(--ease-smooth);
}

.card-seance:hover .card-features li::before {
    background: var(--sauge);
}

.card-seance .btn {
    align-self: flex-start;
    margin-top: auto;
}

/* ============================================================
   TARIFS
   ============================================================ */
.tarif-card {
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 2.5rem 2rem;
    transition: all 0.4s var(--ease-out);
}

.tarif-card h3 {
    font-size: 1.3rem;
    margin-bottom: 0.5rem;
}

.tarif-price {
    font-family: var(--font-display);
    font-size: 2.8rem;
    font-weight: 600;
    color: var(--sauge);
    margin: 0.5rem 0;
    line-height: 1.1;
    transition: transform 0.3s var(--ease-spring);
}

.tarif-card:hover .tarif-price {
    transform: scale(1.06);
}

.tarif-detail {
    font-size: 0.85rem;
    color: var(--text-muted);
    margin-bottom: 1.2rem;
}

.tarif-features {
    list-style: none;
    padding: 0;
    margin: 0 0 1.8rem;
    text-align: left;
    width: 100%;
}

.tarif-features li {
    padding: 0.6rem 0 0.6rem 1.8rem;
    position: relative;
    color: var(--text-light);
    font-size: 0.9rem;
    border-bottom: 1px solid var(--border-light);
}

.tarif-features li:last-child {
    border-bottom: none;
}

.tarif-features li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 1rem;
    width: 16px;
    height: 16px;
    border-radius: 50%;
    background: var(--sauge-lighter);
    display: flex;
    align-items: center;
    justify-content: center;
}

.tarif-features li::after {
    content: '';
    position: absolute;
    left: 4.5px;
    top: calc(1rem + 3.5px);
    width: 7px;
    height: 4px;
    border-left: 2px solid var(--sauge);
    border-bottom: 2px solid var(--sauge);
    transform: rotate(-45deg);
}

/* Featured tarif */
.tarif-featured {
    border: 2px solid var(--sauge);
    position: relative;
    transform: scale(1.04);
    box-shadow: var(--shadow-md), var(--shadow-glow-sauge);
    background: linear-gradient(to bottom, var(--surface), rgba(212, 228, 200, 0.08));
}

.tarif-featured:hover {
    box-shadow: var(--shadow-lg), 0 0 50px rgba(156, 175, 136, 0.2);
}

.tarif-ribbon {
    position: absolute;
    top: -1px;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(135deg, var(--sauge), var(--sauge-dark));
    color: var(--surface);
    padding: 0.35rem 1.4rem;
    border-radius: 0 0 var(--radius-sm) var(--radius-sm);
    font-size: 0.72rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    box-shadow: 0 2px 8px rgba(156, 175, 136, 0.3);
}

.info-card {
    background: var(--cream);
    border: 1px solid var(--border-light);
    box-shadow: none;
}

.info-card:hover {
    box-shadow: var(--shadow-soft);
    transform: none;
}

.info-card h3 {
    margin-bottom: 1rem;
}

/* ============================================================
   CONTACT
   ============================================================ */
.contact-layout {
    grid-template-columns: 1.2fr 0.8fr;
    gap: 3.5rem;
    align-items: flex-start;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 1.2rem;
}

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

.form-group {
    position: relative;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--prune);
    letter-spacing: 0.02em;
    transition: color var(--transition);
}

.form-group:focus-within label {
    color: var(--sauge-dark);
}

.required {
    color: var(--sauge);
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 0.9rem 1.1rem;
    border: 2px solid var(--border);
    border-radius: var(--radius-sm);
    font-family: var(--font-body);
    font-size: 0.95rem;
    background: var(--surface);
    color: var(--prune);
    transition: all 0.25s var(--ease-out);
    -webkit-appearance: none;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: var(--text-muted);
}

.form-group input:hover,
.form-group textarea:hover {
    border-color: var(--lavande-dark);
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--sauge);
    box-shadow: 0 0 0 4px rgba(156, 175, 136, 0.12);
}

.form-group textarea {
    resize: vertical;
    min-height: 130px;
    line-height: 1.6;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 1.2rem;
}

.contact-info .card {
    padding: 1.8rem;
    transition: all 0.3s var(--ease-out);
}

.contact-info .card:hover {
    transform: none;
    box-shadow: var(--shadow-md);
}

.contact-info h3 {
    margin-bottom: 1rem;
    font-size: 1.15rem;
}

.contact-detail {
    display: flex;
    align-items: center;
    gap: 0.9rem;
    padding: 0.6rem 0;
    color: var(--text-light);
    transition: padding-left 0.2s var(--ease-out);
}

.contact-detail:hover {
    padding-left: 0.3rem;
}

.contact-detail svg {
    color: var(--sauge);
    flex-shrink: 0;
    transition: transform 0.3s var(--ease-spring);
}

.contact-detail:hover svg {
    transform: scale(1.15);
}

.contact-detail a {
    color: var(--text-light);
}

.contact-detail a:hover {
    color: var(--sauge-dark);
}

.horaires-list {
    display: flex;
    flex-direction: column;
    gap: 0;
}

.horaire-row {
    display: flex;
    justify-content: space-between;
    padding: 0.5rem 0;
    font-size: 0.9rem;
    color: var(--text-light);
    border-bottom: 1px solid var(--border-light);
    transition: all var(--transition);
}

.horaire-row:last-child {
    border-bottom: none;
}

.horaire-row:hover {
    padding-left: 0.3rem;
    color: var(--prune);
}

.horaire-row span:last-child {
    font-weight: 600;
    color: var(--sauge-dark);
}

/* Alerts */
.alert {
    padding: 1.5rem 2rem;
    border-radius: var(--radius);
    margin-bottom: 2rem;
    border: 1px solid transparent;
}

.alert-success {
    background: linear-gradient(135deg, var(--sauge-lighter), var(--sauge-light));
    border-color: var(--sauge);
}

.alert-success h3 {
    color: var(--sauge-dark);
    margin-bottom: 0.5rem;
    font-family: var(--font-body);
    font-weight: 700;
    font-size: 1rem;
}

.alert-success p {
    color: var(--sauge-deeper);
}

.alert-error {
    background: linear-gradient(135deg, #fef2f2, #fde8e8);
    border-color: #e8a0a0;
}

.alert-error p {
    color: #7a2020;
    margin-bottom: 0;
}

/* ============================================================
   FOOTER
   ============================================================ */
.footer {
    background: linear-gradient(180deg, var(--prune) 0%, #2a1f3a 100%);
    color: rgba(255, 255, 255, 0.7);
    padding: 4.5rem 0 2rem;
    position: relative;
}

.footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(to right, transparent, var(--sauge), transparent);
    opacity: 0.3;
}

.footer h4 {
    color: var(--surface);
    font-size: 1.1rem;
    margin-bottom: 1.2rem;
    font-family: var(--font-display);
    letter-spacing: 0.01em;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1fr;
    gap: 2.5rem;
    margin-bottom: 3rem;
}

.footer-col {}

.footer p,
.footer li {
    font-size: 0.88rem;
    color: rgba(255, 255, 255, 0.55);
    line-height: 1.9;
}

.footer ul {
    list-style: none;
}

.footer a {
    color: rgba(255, 255, 255, 0.65);
    transition: all 0.25s var(--ease-out);
    display: inline-block;
}

.footer a:hover {
    color: var(--sauge-light);
    transform: translateX(3px);
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    padding-top: 2rem;
    text-align: center;
}

.footer-bottom p {
    font-size: 0.82rem;
    color: rgba(255, 255, 255, 0.35);
    margin-bottom: 0.3rem;
}

.footer-bottom a {
    color: rgba(255, 255, 255, 0.4);
}

.footer-bottom a:hover {
    color: var(--sauge-light);
    transform: none;
}

/* ============================================================
   ANIMATIONS
   ============================================================ */

/* Fade in up (scroll reveal) */
.fade-in {
    opacity: 0;
    transform: translateY(28px);
    transition: opacity 0.8s var(--ease-out), transform 0.8s var(--ease-out);
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Staggered children animation */
.cards-grid.fade-in.visible .card {
    animation: staggerIn 0.6s var(--ease-out) both;
}

.cards-grid.fade-in.visible .card:nth-child(1) { animation-delay: 0s; }
.cards-grid.fade-in.visible .card:nth-child(2) { animation-delay: 0.1s; }
.cards-grid.fade-in.visible .card:nth-child(3) { animation-delay: 0.2s; }
.cards-grid.fade-in.visible .card:nth-child(4) { animation-delay: 0.3s; }

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

/* Staggered steps */
.steps-list .step {
    transition: all 0.4s var(--ease-out);
}

/* Pulse glow for primary CTA */
@keyframes pulseGlow {
    0%, 100% {
        box-shadow: 0 2px 10px rgba(156, 175, 136, 0.2);
    }
    50% {
        box-shadow: 0 4px 24px rgba(156, 175, 136, 0.4);
    }
}

.hero-actions .btn-primary {
    animation: pulseGlow 3s ease-in-out infinite;
}

.hero-actions .btn-primary:hover {
    animation: none;
}

/* Smooth scroll indicator bounce */
@keyframes scrollBounce {
    0%, 100% {
        opacity: 0.4;
    }
    50% {
        opacity: 0.7;
    }
}

.hero::before {
    animation: scrollBounce 2.5s ease-in-out infinite;
}

/* ============================================================
   UTILITY MICRO-INTERACTIONS
   ============================================================ */

/* Smooth focus transitions for accessibility */
*:focus-visible {
    outline: 2px solid var(--sauge);
    outline-offset: 2px;
    border-radius: var(--radius-xs);
}

/* Link underline animation */
.content-page a:not(.btn) {
    color: var(--sauge-dark);
    position: relative;
    display: inline;
}

.content-page a:not(.btn)::after {
    content: '';
    position: absolute;
    bottom: -1px;
    left: 0;
    width: 0;
    height: 1.5px;
    background: var(--sauge);
    transition: width 0.3s var(--ease-out);
}

.content-page a:not(.btn):hover::after {
    width: 100%;
}

/* ============================================================
   RESPONSIVE — TABLET (max-width: 1024px)
   ============================================================ */
@media (max-width: 1024px) {
    .cards-4 {
        grid-template-columns: repeat(2, 1fr);
    }

    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .tarif-featured {
        transform: scale(1);
    }

    .two-cols {
        gap: 3rem;
    }

    .hero-title {
        font-size: clamp(2rem, 5vw, 3.2rem);
    }

    .steps-list::before {
        display: none;
    }
}

/* ============================================================
   RESPONSIVE — MOBILE (max-width: 768px)
   ============================================================ */
@media (max-width: 768px) {
    .container {
        padding: 0 1.25rem;
    }

    /* Mobile Nav */
    .nav-toggle {
        display: flex;
    }

    .nav-links {
        position: fixed;
        top: 0;
        right: -100%;
        width: 300px;
        height: 100vh;
        height: 100dvh;
        background: var(--cream);
        flex-direction: column;
        padding: 5.5rem 1.5rem 2rem;
        gap: 0.2rem;
        box-shadow: -8px 0 40px rgba(60, 47, 79, 0.12);
        transition: right 0.4s var(--ease-out);
        align-items: stretch;
        overflow-y: auto;
    }

    .nav-links.open {
        right: 0;
    }

    /* Overlay behind mobile menu */
    .nav-links::before {
        content: '';
        position: fixed;
        inset: 0;
        background: rgba(60, 47, 79, 0.3);
        opacity: 0;
        transition: opacity 0.3s var(--ease-smooth);
        pointer-events: none;
        z-index: -1;
    }

    .nav-links.open::before {
        opacity: 1;
    }

    .nav-links a {
        padding: 0.9rem 1rem;
        font-size: 1rem;
        border-radius: var(--radius-sm);
    }

    .nav-links a::after {
        display: none;
    }

    .nav-links a:hover,
    .nav-links a.active {
        background: var(--sauge-lighter);
    }

    .nav-cta {
        text-align: center;
        margin-top: 1rem;
    }

    /* Hero */
    .hero {
        min-height: 90vh;
        min-height: 90dvh;
        padding: 7rem 0 4rem;
    }

    .hero::before {
        display: none;
    }

    .hero-title {
        font-size: clamp(1.8rem, 8vw, 2.8rem);
    }

    .hero-subtitle {
        font-size: 1rem;
    }

    .hero-actions {
        flex-direction: column;
        align-items: center;
        gap: 0.8rem;
    }

    .hero-actions .btn {
        width: 100%;
        max-width: 280px;
    }

    /* Sections */
    .section {
        padding: 3.5rem 0;
    }

    .section-intro {
        margin-bottom: 2.5rem;
        font-size: 1rem;
    }

    /* Grids */
    .cards-4,
    .cards-3,
    .cards-2 {
        grid-template-columns: 1fr;
    }

    .two-cols {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .contact-layout {
        grid-template-columns: 1fr;
    }

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

    .benefits-grid {
        grid-template-columns: 1fr;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    /* Steps */
    .step {
        flex-direction: column;
        align-items: center;
        text-align: center;
        padding: 1.5rem;
    }

    .steps-list::before {
        display: none;
    }

    .step:hover {
        transform: translateY(-4px);
    }

    /* Page header */
    .page-header {
        padding: 6.5rem 0 2rem;
    }

    /* Blobs */
    .blob-1 { width: 300px; height: 300px; }
    .blob-2 { width: 200px; height: 200px; }
    .blob-3 { width: 120px; height: 120px; }

    /* Tarifs */
    .tarif-featured {
        transform: scale(1);
    }

    .tarif-card {
        padding: 2rem 1.5rem;
    }

    /* Testimonials */
    .testimonial-card::before {
        font-size: 3rem;
        top: 0.8rem;
    }

    .testimonial-card-full {
        padding: 1.5rem;
    }

    /* CTA */
    .cta-section {
        padding: 4rem 0;
    }

    /* Card stagger animation disabled for performance */
    .cards-grid.fade-in.visible .card {
        animation: none;
    }
}

/* ============================================================
   RESPONSIVE — SMALL MOBILE (max-width: 480px)
   ============================================================ */
@media (max-width: 480px) {
    .container {
        padding: 0 1rem;
    }

    .hero-title {
        font-size: 1.8rem;
        letter-spacing: -0.01em;
    }

    .hero-subtitle {
        font-size: 0.95rem;
    }

    .card {
        padding: 1.5rem;
    }

    .section {
        padding: 2.5rem 0;
    }

    .section-title {
        font-size: 1.5rem;
    }

    .btn-lg {
        padding: 0.85rem 1.8rem;
        font-size: 0.95rem;
        width: 100%;
    }

    .btn {
        padding: 0.75rem 1.6rem;
    }

    .visual-number {
        font-size: 2rem;
    }

    .tarif-price {
        font-size: 2.2rem;
    }

    .page-header {
        padding: 5.5rem 0 1.5rem;
    }

    .page-title {
        font-size: 1.8rem;
    }

    .page-intro {
        font-size: 1rem;
    }

    .footer {
        padding: 3rem 0 1.5rem;
    }

    .footer-bottom {
        padding-top: 1.5rem;
    }

    .content-block h2 {
        font-size: 1.3rem;
    }

    .step-number {
        width: 44px;
        height: 44px;
        font-size: 1.1rem;
    }

    .nav-links {
        width: 100%;
    }
}

/* ============================================================
   PRINT STYLES
   ============================================================ */
@media print {
    *,
    *::before,
    *::after {
        background: transparent !important;
        color: #000 !important;
        box-shadow: none !important;
        text-shadow: none !important;
        animation: none !important;
        transition: none !important;
    }

    .nav,
    .nav-toggle,
    .hero-bg-shapes,
    .blob,
    .hero::before,
    .hero::after,
    .cta-section::before,
    .footer::before,
    .page-header::after {
        display: none !important;
    }

    body {
        font-size: 12pt;
        line-height: 1.5;
    }

    .container {
        max-width: 100%;
        padding: 0;
    }

    .hero {
        min-height: auto;
        padding: 2rem 0;
        background: none !important;
    }

    .section {
        padding: 1.5rem 0;
    }

    .cards-grid {
        display: block;
    }

    .card {
        border: 1px solid #ccc;
        margin-bottom: 1rem;
        page-break-inside: avoid;
    }

    .two-cols {
        display: block;
    }

    .footer {
        padding: 1rem 0;
    }

    .footer-grid {
        display: block;
    }

    .btn {
        border: 1px solid #333;
    }

    a[href]::after {
        content: " (" attr(href) ")";
        font-size: 0.8em;
        color: #555;
    }

    .nav-cta,
    .btn-primary,
    .btn-outline {
        border: 1px solid #333 !important;
    }

    h1, h2, h3, h4 {
        page-break-after: avoid;
    }

    img {
        max-width: 100% !important;
    }
}

/* ============================================================
   PREFERS REDUCED MOTION
   ============================================================ */
@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
        scroll-behavior: auto !important;
    }

    .fade-in {
        opacity: 1;
        transform: none;
    }

    .blob {
        animation: none;
    }

    .hero-actions .btn-primary {
        animation: none;
    }

    .card:hover {
        transform: none;
    }

    .step:hover {
        transform: none;
    }

    .benefit:hover {
        transform: none;
    }
}

/* ============================================================
   PREFERS COLOR SCHEME DARK (subtle adjustments)
   ============================================================ */
@media (prefers-color-scheme: dark) {
    /* Intentionally left empty — the site is designed light-only
       for the zen/well-being aesthetic. Dark mode could be added
       later as a toggle if needed. */
}
