/* ============================================
   BLOOMING CATALYST — Design System
   Palette : Vert sauge, beige, blanc cassé, or
   ============================================ */

:root {
    --sage: #7a9e7e;
    --sage-light: #a8c5ac;
    --sage-dark: #5a7d5e;
    --beige: #f5f0e8;
    --beige-dark: #ede5d5;
    --cream: #faf8f4;
    --gold: #c9a96e;
    --gold-light: #e8d5a3;
    --charcoal: #2c2c2c;
    --warm-gray: #6b6560;
    --light-gray: #e8e4de;
    --white: #ffffff;

    --font-serif: 'Cormorant Garamond', Georgia, serif;
    --font-sans: 'Jost', system-ui, sans-serif;

    --radius: 4px;
    --radius-lg: 12px;
    --shadow-sm: 0 2px 12px rgba(44, 44, 44, 0.08);
    --shadow-md: 0 8px 32px rgba(44, 44, 44, 0.12);
    --shadow-lg: 0 20px 60px rgba(44, 44, 44, 0.15);

    --transition: 0.3s ease;
    --transition-slow: 0.6s ease;
}

/* ============ RESET & BASE ============ */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: var(--font-sans);
    background-color: var(--cream);
    color: var(--charcoal);
    line-height: 1.7;
    overflow-x: hidden;
}

img { max-width: 100%; height: auto; display: block; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

/* ============ TYPOGRAPHY ============ */
h1, h2, h3, h4 { font-family: var(--font-serif); line-height: 1.2; }
h1 { font-size: clamp(2.5rem, 5vw, 4.5rem); font-weight: 300; }
h2 { font-size: clamp(2rem, 3.5vw, 3.2rem); font-weight: 300; }
h3 { font-size: clamp(1.3rem, 2vw, 1.8rem); font-weight: 400; }
em { font-style: italic; color: var(--sage-dark); }

.section-tag {
    display: inline-block;
    font-family: var(--font-sans);
    font-size: 0.75rem;
    font-weight: 500;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 1rem;
}
.section-tag.light { color: var(--gold-light); }

.section-title { margin-bottom: 1.5rem; }
.section-intro {
    font-size: 1.1rem;
    color: var(--warm-gray);
    max-width: 600px;
    margin: 0 auto;
}

.section-header { margin-bottom: 4rem; }
.section-header.centered { text-align: center; }
.section-header.centered .section-intro { margin: 0 auto; }

/* ============ BUTTONS ============ */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.85rem 2rem;
    font-family: var(--font-sans);
    font-size: 0.9rem;
    font-weight: 500;
    letter-spacing: 0.05em;
    border-radius: var(--radius);
    transition: all var(--transition);
    cursor: pointer;
    border: none;
    gap: 0.5rem;
}

.btn-primary {
    background: var(--sage);
    color: var(--white);
}
.btn-primary:hover {
    background: var(--sage-dark);
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

.btn-ghost {
    background: transparent;
    color: var(--white);
    border: 1px solid rgba(255,255,255,0.5);
}
.btn-ghost:hover {
    background: rgba(255,255,255,0.15);
    border-color: rgba(255,255,255,0.8);
}

.btn-ghost-light {
    background: transparent;
    color: var(--white);
    border: 1px solid rgba(255,255,255,0.6);
    padding: 1rem 2.5rem;
    font-size: 1rem;
}
.btn-ghost-light:hover {
    background: rgba(255,255,255,0.2);
}

.btn-outline {
    background: transparent;
    color: var(--sage-dark);
    border: 1px solid var(--sage);
}
.btn-outline:hover {
    background: var(--sage);
    color: var(--white);
    transform: translateY(-2px);
}

.btn-sm { padding: 0.6rem 1.4rem; font-size: 0.85rem; }
.btn-full { width: 100%; }

/* ============ NAVIGATION ============ */
#navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 1.2rem 0;
    transition: all var(--transition);
}

#navbar.scrolled {
    background: rgba(250, 248, 244, 0.95);
    backdrop-filter: blur(12px);
    padding: 0.8rem 0;
    box-shadow: var(--shadow-sm);
}

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

.nav-logo {
    display: flex;
    flex-direction: column;
    line-height: 1.1;
}
.logo-bloom {
    font-family: var(--font-serif);
    font-size: 1.4rem;
    font-weight: 400;
    color: var(--white);
    transition: color var(--transition);
}
.logo-catalyst {
    font-family: var(--font-sans);
    font-size: 0.65rem;
    letter-spacing: 0.25em;
    text-transform: uppercase;
    color: var(--gold-light);
    transition: color var(--transition);
}

#navbar.scrolled .logo-bloom { color: var(--charcoal); }
#navbar.scrolled .logo-catalyst { color: var(--gold); }

.nav-links {
    display: flex;
    align-items: center;
    gap: 2rem;
}

.nav-links a {
    font-size: 0.88rem;
    font-weight: 400;
    letter-spacing: 0.03em;
    color: rgba(255,255,255,0.85);
    transition: color var(--transition);
    position: relative;
}
.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -3px;
    left: 0;
    width: 0;
    height: 1px;
    background: var(--gold);
    transition: width var(--transition);
}
.nav-links a:hover::after { width: 100%; }
.nav-links a:hover { color: var(--white); }

#navbar.scrolled .nav-links a { color: var(--warm-gray); }
#navbar.scrolled .nav-links a:hover { color: var(--charcoal); }

.nav-cta {
    padding: 0.6rem 1.4rem;
    background: var(--sage) !important;
    color: var(--white) !important;
    border-radius: var(--radius);
}
.nav-cta:hover { background: var(--sage-dark) !important; }
.nav-cta::after { display: none !important; }

.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 4px;
}
.nav-toggle span {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--white);
    transition: all var(--transition);
}
#navbar.scrolled .nav-toggle span { background: var(--charcoal); }

/* ============ HERO ============ */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    inset: 0;
    z-index: 0;
}
.hero-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center 30%;
    transform: scale(1.05);
    animation: heroZoom 20s ease-in-out infinite alternate;
}
@keyframes heroZoom {
    from { transform: scale(1.05); }
    to { transform: scale(1.12); }
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        135deg,
        rgba(44, 44, 44, 0.65) 0%,
        rgba(90, 125, 94, 0.45) 50%,
        rgba(44, 44, 44, 0.55) 100%
    );
}

.hero-content {
    position: relative;
    z-index: 1;
    max-width: 800px;
    padding: 8rem 2rem 4rem;
    margin-left: 8%;
}

.hero-tagline {
    font-family: var(--font-sans);
    font-size: 0.8rem;
    font-weight: 500;
    letter-spacing: 0.3em;
    text-transform: uppercase;
    color: var(--gold-light);
    margin-bottom: 1.5rem;
    opacity: 0;
    animation: fadeInUp 0.8s ease 0.3s forwards;
}

.hero-title {
    color: var(--white);
    margin-bottom: 1.5rem;
    opacity: 0;
    animation: fadeInUp 0.8s ease 0.5s forwards;
}
.hero-title em { color: var(--gold-light); font-style: italic; }

.hero-subtitle {
    font-size: 1.15rem;
    color: rgba(255,255,255,0.85);
    max-width: 520px;
    margin-bottom: 2.5rem;
    line-height: 1.8;
    opacity: 0;
    animation: fadeInUp 0.8s ease 0.7s forwards;
}

.hero-actions {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    opacity: 0;
    animation: fadeInUp 0.8s ease 0.9s forwards;
}

.hero-scroll {
    position: absolute;
    bottom: 3rem;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    color: rgba(255,255,255,0.6);
    font-size: 0.75rem;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    z-index: 1;
    animation: fadeIn 1s ease 1.5s both;
}
.scroll-line {
    width: 1px;
    height: 40px;
    background: linear-gradient(to bottom, rgba(255,255,255,0.6), transparent);
    animation: scrollPulse 2s ease-in-out infinite;
}
@keyframes scrollPulse {
    0%, 100% { opacity: 0.6; transform: scaleY(1); }
    50% { opacity: 1; transform: scaleY(1.2); }
}

/* ============ QUOTE SECTION ============ */
.quote-section {
    background: var(--beige);
    padding: 5rem 0;
    text-align: center;
}
.opening-quote {
    max-width: 800px;
    margin: 0 auto;
    padding: 0 2rem;
}
.opening-quote p {
    font-family: var(--font-serif);
    font-size: clamp(1.3rem, 2.5vw, 2rem);
    font-weight: 300;
    font-style: italic;
    color: var(--sage-dark);
    line-height: 1.6;
}

/* ============ SECTIONS ============ */
.section { padding: 7rem 0; }

/* ============ APPROCHE ============ */
.approche-section { background: var(--cream); }

.approche-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 5rem;
    align-items: center;
}

.approche-image {
    position: relative;
}
.approche-image img {
    width: 100%;
    height: 500px;
    object-fit: cover;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
}
.approche-badge {
    position: absolute;
    bottom: -1.5rem;
    right: -1.5rem;
    background: var(--sage);
    color: var(--white);
    padding: 1.5rem;
    border-radius: var(--radius-lg);
    text-align: center;
    box-shadow: var(--shadow-md);
}
.badge-number {
    display: block;
    font-family: var(--font-serif);
    font-size: 2.5rem;
    font-weight: 300;
    line-height: 1;
}
.badge-text {
    font-size: 0.75rem;
    letter-spacing: 0.05em;
    opacity: 0.9;
}

.approche-lead {
    font-family: var(--font-serif);
    font-size: 1.4rem;
    font-weight: 300;
    line-height: 1.6;
    color: var(--charcoal);
    margin-bottom: 1.5rem;
}
.approche-content p {
    color: var(--warm-gray);
    margin-bottom: 1.2rem;
}

.approche-values {
    margin-top: 2rem;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}
.value-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
}
.value-icon {
    color: var(--gold);
    font-size: 1.2rem;
    margin-top: 0.1rem;
    flex-shrink: 0;
}
.value-item strong {
    display: block;
    font-family: var(--font-serif);
    font-size: 1.1rem;
    color: var(--charcoal);
}
.value-item span {
    font-size: 0.9rem;
    color: var(--warm-gray);
}

/* ============ SERVICES ============ */
.services-section { background: var(--beige); }

.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.service-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 2.5rem;
    position: relative;
    transition: all var(--transition);
    border: 1px solid var(--light-gray);
}
.service-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-lg);
}
.service-card.featured {
    background: var(--sage);
    color: var(--white);
    border-color: var(--sage);
}
.service-badge {
    position: absolute;
    top: -0.75rem;
    left: 50%;
    transform: translateX(-50%);
    background: var(--gold);
    color: var(--white);
    font-size: 0.7rem;
    font-weight: 500;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    padding: 0.3rem 1rem;
    border-radius: 20px;
    white-space: nowrap;
}

.service-icon {
    width: 60px;
    height: 60px;
    color: var(--sage);
    margin-bottom: 1.5rem;
}
.service-card.featured .service-icon { color: rgba(255,255,255,0.8); }

.service-card h3 {
    margin-bottom: 1rem;
    color: var(--charcoal);
}
.service-card.featured h3 { color: var(--white); }

.service-card p {
    color: var(--warm-gray);
    font-size: 0.95rem;
    margin-bottom: 1.5rem;
    line-height: 1.7;
}
.service-card.featured p { color: rgba(255,255,255,0.85); }

.service-features {
    margin-bottom: 2rem;
}
.service-features li {
    font-size: 0.88rem;
    color: var(--warm-gray);
    padding: 0.4rem 0;
    padding-left: 1.2rem;
    position: relative;
    border-bottom: 1px solid var(--light-gray);
}
.service-card.featured .service-features li {
    color: rgba(255,255,255,0.8);
    border-bottom-color: rgba(255,255,255,0.2);
}
.service-features li::before {
    content: '—';
    position: absolute;
    left: 0;
    color: var(--gold);
    font-size: 0.8rem;
}

.service-link {
    font-size: 0.88rem;
    font-weight: 500;
    color: var(--sage);
    letter-spacing: 0.03em;
    transition: color var(--transition);
}
.service-card.featured .service-link { color: var(--gold-light); }
.service-link:hover { color: var(--sage-dark); }

/* ============ DMOKA ============ */
.dmoka-section {
    position: relative;
    padding: 8rem 0;
    color: var(--white);
}
.dmoka-bg {
    position: absolute;
    inset: 0;
    z-index: 0;
}
.dmoka-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center 40%;
}
.dmoka-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(44,44,44,0.85) 0%, rgba(90,125,94,0.75) 100%);
}
.dmoka-content { position: relative; z-index: 1; }

.section-title.light { color: var(--white); }
.section-title.light em { color: var(--gold-light); }

.dmoka-grid {
    display: grid;
    grid-template-columns: 1.4fr 1fr;
    gap: 5rem;
    align-items: start;
}

.dmoka-lead {
    font-family: var(--font-serif);
    font-size: 1.3rem;
    font-weight: 300;
    line-height: 1.7;
    margin-bottom: 1.5rem;
    color: rgba(255,255,255,0.95);
}
.dmoka-text p {
    color: rgba(255,255,255,0.8);
    margin-bottom: 1.5rem;
}

.dmoka-process {
    margin-top: 2.5rem;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}
.process-step {
    display: flex;
    gap: 1.5rem;
    align-items: flex-start;
}
.step-num {
    font-family: var(--font-serif);
    font-size: 2rem;
    font-weight: 300;
    color: var(--gold-light);
    line-height: 1;
    flex-shrink: 0;
    width: 3rem;
}
.process-step strong {
    display: block;
    font-family: var(--font-serif);
    font-size: 1.1rem;
    color: var(--white);
    margin-bottom: 0.3rem;
}
.process-step p {
    font-size: 0.9rem;
    color: rgba(255,255,255,0.7);
    margin: 0;
}

.dmoka-stats {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}
.stat-card {
    background: rgba(255,255,255,0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255,255,255,0.2);
    border-radius: var(--radius-lg);
    padding: 1.8rem;
    text-align: center;
}
.stat-number {
    font-family: var(--font-serif);
    font-size: 3rem;
    font-weight: 300;
    color: var(--gold-light);
    line-height: 1;
    margin-bottom: 0.5rem;
}
.stat-label {
    font-size: 0.9rem;
    color: rgba(255,255,255,0.75);
    line-height: 1.5;
}
.dmoka-cta { text-align: center; margin-top: 1rem; }

/* ============ TARIFS ============ */
.tarifs-section { background: var(--cream); }

.tarifs-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    align-items: stretch;
}

.tarif-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 2.5rem;
    border: 1px solid var(--light-gray);
    position: relative;
    display: flex;
    flex-direction: column;
    transition: all var(--transition);
}
.tarif-card:hover { box-shadow: var(--shadow-md); }
.tarif-card.featured {
    border-color: var(--sage);
    border-width: 2px;
    transform: scale(1.02);
}
.tarif-badge {
    position: absolute;
    top: -0.75rem;
    left: 50%;
    transform: translateX(-50%);
    background: var(--sage);
    color: var(--white);
    font-size: 0.7rem;
    font-weight: 500;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    padding: 0.3rem 1rem;
    border-radius: 20px;
    white-space: nowrap;
}

.tarif-header { margin-bottom: 1.5rem; }
.tarif-header h3 {
    font-size: 1.4rem;
    color: var(--charcoal);
    margin-bottom: 0.5rem;
}
.tarif-header p {
    font-size: 0.9rem;
    color: var(--warm-gray);
}

.tarif-price {
    margin-bottom: 2rem;
    padding-bottom: 2rem;
    border-bottom: 1px solid var(--light-gray);
}
.price-amount {
    font-family: var(--font-serif);
    font-size: 3rem;
    font-weight: 300;
    color: var(--sage-dark);
    line-height: 1;
}
.price-unit {
    font-size: 1rem;
    color: var(--warm-gray);
    margin-left: 0.3rem;
}
.price-total {
    display: block;
    font-size: 0.85rem;
    color: var(--warm-gray);
    margin-top: 0.5rem;
}

.tarif-features {
    flex: 1;
    margin-bottom: 2rem;
}
.tarif-features li {
    font-size: 0.9rem;
    color: var(--warm-gray);
    padding: 0.6rem 0;
    padding-left: 1.5rem;
    position: relative;
    border-bottom: 1px solid var(--beige);
}
.tarif-features li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--sage);
    font-size: 0.85rem;
}
.tarif-features li strong { color: var(--charcoal); }

.tarifs-note {
    text-align: center;
    margin-top: 3rem;
    padding: 1.5rem 2rem;
    background: var(--beige);
    border-radius: var(--radius-lg);
    border-left: 4px solid var(--gold);
}
.tarifs-note p {
    font-size: 0.95rem;
    color: var(--warm-gray);
}

/* ============ TRANSFORM SECTION ============ */
.transform-section { background: var(--beige); }

.transform-visual {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 5rem;
    align-items: center;
}

.transform-image img {
    width: 100%;
    height: 450px;
    object-fit: cover;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
}

.transform-content .section-tag { display: block; margin-bottom: 1rem; }
.transform-content h2 { margin-bottom: 1.5rem; }
.transform-content p {
    color: var(--warm-gray);
    margin-bottom: 1.2rem;
}
.transform-content .btn { margin-top: 1rem; }

/* ============ LIVRES ============ */
.livres-section { background: var(--cream); }

.livres-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
}

.livre-card {
    display: grid;
    grid-template-columns: 180px 1fr;
    gap: 2rem;
    align-items: start;
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 2rem;
    border: 1px solid var(--light-gray);
    transition: all var(--transition);
}
.livre-card:hover {
    box-shadow: var(--shadow-md);
    transform: translateY(-4px);
}

.livre-cover {
    perspective: 800px;
}
.livre-cover-inner {
    position: relative;
    width: 140px;
    height: 200px;
    transform-style: preserve-3d;
    transform: rotateY(-15deg);
    transition: transform var(--transition);
}
.livre-card:hover .livre-cover-inner { transform: rotateY(-5deg); }

.livre-spine {
    position: absolute;
    left: 0;
    top: 0;
    width: 20px;
    height: 100%;
    background: linear-gradient(to right, #4a6b4e, #7a9e7e);
    border-radius: 2px 0 0 2px;
}
.livre-front {
    position: absolute;
    left: 20px;
    top: 0;
    width: 120px;
    height: 100%;
    background: linear-gradient(135deg, var(--sage) 0%, var(--sage-dark) 100%);
    border-radius: 0 4px 4px 0;
    box-shadow: 4px 4px 20px rgba(0,0,0,0.2);
    overflow: hidden;
}
.livre-front::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(255,255,255,0.1) 0%, transparent 60%);
}
.livre-front-content {
    position: relative;
    z-index: 1;
    padding: 1rem 0.8rem;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}
.livre-front-content.alt .livre-front { background: linear-gradient(135deg, #5a6b8a 0%, #3a4a6a 100%); }

.livre-year {
    font-size: 0.6rem;
    letter-spacing: 0.1em;
    color: var(--gold-light);
    text-transform: uppercase;
}
.livre-front-content h4 {
    font-family: var(--font-serif);
    font-size: 0.75rem;
    font-weight: 400;
    color: var(--white);
    line-height: 1.4;
    flex: 1;
    margin: 0.5rem 0;
}
.livre-author {
    font-size: 0.6rem;
    color: rgba(255,255,255,0.8);
    display: block;
}
.livre-collab {
    font-size: 0.55rem;
    color: rgba(255,255,255,0.6);
    display: block;
    line-height: 1.4;
}

.livre-info p {
    font-size: 0.9rem;
    color: var(--warm-gray);
    line-height: 1.7;
    margin-bottom: 1rem;
}
.livre-meta {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    margin-bottom: 1.2rem;
}
.livre-meta span {
    font-size: 0.75rem;
    color: var(--warm-gray);
    background: var(--beige);
    padding: 0.25rem 0.75rem;
    border-radius: 20px;
}

/* ============ SÉRÉNITÉ SECTION ============ */
.serenite-section {
    position: relative;
    padding: 10rem 0;
    text-align: center;
}
.serenite-bg {
    position: absolute;
    inset: 0;
    z-index: 0;
}
.serenite-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center 60%;
}
.serenite-overlay {
    position: absolute;
    inset: 0;
    background: rgba(44, 44, 44, 0.65);
}
.serenite-content {
    position: relative;
    z-index: 1;
}
.serenite-content blockquote p {
    font-family: var(--font-serif);
    font-size: clamp(1.5rem, 3vw, 2.5rem);
    font-weight: 300;
    font-style: italic;
    color: var(--white);
    max-width: 700px;
    margin: 0 auto 2.5rem;
    line-height: 1.5;
}

/* ============ CONTACT ============ */
.contact-section { background: var(--beige); }

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1.3fr;
    gap: 5rem;
    align-items: start;
}

.contact-info .section-title { margin-bottom: 1.5rem; }
.contact-info > p {
    color: var(--warm-gray);
    margin-bottom: 2.5rem;
    line-height: 1.8;
}

.contact-details {
    display: flex;
    flex-direction: column;
    gap: 1.2rem;
}
.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
}
.contact-icon {
    width: 36px;
    height: 36px;
    background: var(--sage);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.9rem;
    flex-shrink: 0;
}
.contact-item strong {
    display: block;
    font-size: 0.85rem;
    font-weight: 500;
    color: var(--charcoal);
    margin-bottom: 0.2rem;
}
.contact-item span, .contact-item a {
    font-size: 0.9rem;
    color: var(--warm-gray);
}
.contact-item a:hover { color: var(--sage); }

/* ============ FORM ============ */
.contact-form-wrapper {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 3rem;
    box-shadow: var(--shadow-md);
}

.form-group {
    margin-bottom: 1.5rem;
}
.form-group label {
    display: block;
    font-size: 0.85rem;
    font-weight: 500;
    color: var(--charcoal);
    margin-bottom: 0.5rem;
    letter-spacing: 0.02em;
}
.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 0.85rem 1rem;
    font-family: var(--font-sans);
    font-size: 0.95rem;
    color: var(--charcoal);
    background: var(--cream);
    border: 1px solid var(--light-gray);
    border-radius: var(--radius);
    transition: border-color var(--transition), box-shadow var(--transition);
    outline: none;
    appearance: none;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    border-color: var(--sage);
    box-shadow: 0 0 0 3px rgba(122, 158, 126, 0.15);
}
.form-group textarea { resize: vertical; min-height: 120px; }

.form-consent {
    margin-top: 0.5rem;
}
.checkbox-label {
    display: flex;
    gap: 0.75rem;
    align-items: flex-start;
    cursor: pointer;
    font-size: 0.82rem !important;
    color: var(--warm-gray);
    font-weight: 400 !important;
}
.checkbox-label input[type="checkbox"] {
    width: auto;
    margin-top: 0.15rem;
    flex-shrink: 0;
    accent-color: var(--sage);
}
.link-subtle { color: var(--sage); }

.form-message {
    margin-top: 1rem;
    padding: 0.75rem 1rem;
    border-radius: var(--radius);
    font-size: 0.9rem;
    display: none;
}
.form-message.success {
    background: rgba(122, 158, 126, 0.15);
    color: var(--sage-dark);
    border: 1px solid var(--sage-light);
    display: block;
}
.form-message.error {
    background: rgba(200, 80, 80, 0.1);
    color: #c85050;
    border: 1px solid rgba(200, 80, 80, 0.3);
    display: block;
}

/* ============ FOOTER ============ */
.footer {
    background: var(--charcoal);
    color: rgba(255,255,255,0.7);
    padding: 5rem 0 2rem;
}

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

.footer-brand .footer-logo {
    display: flex;
    flex-direction: column;
    line-height: 1.1;
    margin-bottom: 1rem;
}
.footer-brand .logo-bloom { color: var(--white); font-size: 1.6rem; }
.footer-brand .logo-catalyst { color: var(--gold); }

.footer-brand p {
    font-size: 0.9rem;
    line-height: 1.7;
    margin-bottom: 0.5rem;
}
.footer-email a {
    color: var(--sage-light);
    font-size: 0.9rem;
}
.footer-email a:hover { color: var(--white); }

.footer-links h4 {
    font-family: var(--font-sans);
    font-size: 0.75rem;
    font-weight: 500;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--white);
    margin-bottom: 1.2rem;
}
.footer-links ul { display: flex; flex-direction: column; gap: 0.6rem; }
.footer-links a {
    font-size: 0.88rem;
    color: rgba(255,255,255,0.6);
    transition: color var(--transition);
}
.footer-links a:hover { color: var(--white); }

.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.1);
    padding-top: 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
}
.footer-bottom p { font-size: 0.82rem; }

/* ============ ANIMATIONS ============ */
@keyframes fadeInUp {
    from { opacity: 0; transform: translateY(30px); }
    to { opacity: 1; transform: translateY(0); }
}
@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.7s ease, transform 0.7s ease;
}
.reveal.visible {
    opacity: 1;
    transform: translateY(0);
}

/* ============ RESPONSIVE ============ */
@media (max-width: 1024px) {
    .approche-grid,
    .dmoka-grid,
    .transform-visual {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    .approche-badge { right: 1rem; }
    .services-grid { grid-template-columns: 1fr; max-width: 500px; margin: 0 auto; }
    .tarifs-grid { grid-template-columns: 1fr; max-width: 450px; margin: 0 auto; }
    .tarif-card.featured { transform: none; }
    .livres-grid { grid-template-columns: 1fr; }
    .contact-grid { grid-template-columns: 1fr; }
    .footer-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 768px) {
    .nav-links {
        display: none;
        position: fixed;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background: rgba(44, 44, 44, 0.97);
        flex-direction: column;
        justify-content: center;
        align-items: center;
        gap: 2rem;
        z-index: 999;
    }
    .nav-links.open { display: flex; }
    .nav-links a { font-size: 1.2rem; color: var(--white) !important; }
    .nav-toggle { display: flex; z-index: 1001; }

    .hero-content { margin-left: 0; padding: 7rem 1.5rem 4rem; }
    .section { padding: 5rem 0; }

    .livre-card { grid-template-columns: 1fr; }
    .livre-cover-inner { margin: 0 auto; }

    .footer-grid { grid-template-columns: 1fr; }
    .footer-bottom { flex-direction: column; text-align: center; }

    .contact-form-wrapper { padding: 2rem 1.5rem; }
}

@media (max-width: 480px) {
    .hero-actions { flex-direction: column; }
    .hero-actions .btn { width: 100%; justify-content: center; }
    .tarifs-grid, .services-grid { max-width: 100%; }
}
