    :root {
        --primary: #D4C5B0;
        --primary-dark: #C4B5A0;
        --cream-light: #FFFFFF;
        --cream-medium: #FFFFFF;
        --cream-dark: #F5EFE6;
        --beige-light: #FFFFFF;
        --accent-cream: #E8DCC8;
        --text-dark: #2c2c2c;
        --text-mid: #5a5a5a;
        --text-light: #8a8a8a;
        --border-light: rgba(0,0,0,0.08);
        --radius-lg: 1rem;
        --radius-md: 0.75rem;
    }

    * {
        margin: 0;
        padding: 0;
        box-sizing: border-box;
    }

    body.page-template-page-uber-uns-light-cream {
        background: var(--cream-light);
        font-family: 'Manrope', system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
        -webkit-font-smoothing: antialiased;
    }

    /* ============================================
       HERO SECTION - TONS CRÈME
    ============================================ */
    .hero-fullscreen {
        position: relative;
        min-height: 600px;
        display: flex;
        align-items: center;
        justify-content: center;
        overflow: hidden;
        background: linear-gradient(135deg, var(--cream-light) 0%, var(--cream-medium) 100%);
    }

    .hero-bg-image {
        position: absolute;
        inset: 0;
        width: 100%;
        height: 100%;
        object-fit: cover;
        z-index: 1;
        opacity: 0.8; /* Plus visible pour Hambourg */
        filter: brightness(1.1) saturate(0.8);
    }

    .hero-overlay {
        position: absolute;
        inset: 0;
        background: linear-gradient(
            135deg,
            rgba(255,249,240,0.65) 0%,
            rgba(255,245,230,0.70) 100%
        );
        z-index: 2;
    }

    .hero-content {
        position: relative;
        z-index: 3;
        text-align: center;
        color: var(--text-dark);
        max-width: 800px;
        padding: 3rem 2rem;
        animation: fade-in-up 0.8s ease-out;
    }

    @keyframes fade-in-up {
        from {
            opacity: 0;
            transform: translateY(20px);
        }
        to {
            opacity: 1;
            transform: translateY(0);
        }
    }

    .hero-badge {
        display: inline-flex;
        align-items: center;
        gap: 0.5rem;
        background: rgba(232,220,200,0.15);
        border: 1px solid rgba(212,197,176,0.3);
        border-radius: 999px;
        padding: 0.5rem 1rem;
        font-size: 0.7rem;
        font-weight: 600;
        margin-bottom: 1.5rem;
        color: var(--text-dark);
    }

    .hero-dot {
        width: 6px;
        height: 6px;
        border-radius: 50%;
        background: var(--primary);
        animation: pulse-soft 3s ease-in-out infinite;
    }

    @keyframes pulse-soft {
        0%, 100% { transform: scale(1); opacity: 1; }
        50% { transform: scale(1.2); opacity: 0.7; }
    }

    .hero-title {
        font-size: clamp(2rem, 1.5rem + 2vw, 3rem);
        font-weight: 700;
        line-height: 1.2;
        margin-bottom: 1rem;
        letter-spacing: -0.02em;
        color: var(--text-dark);
    }

    .hero-title .accent {
    color: #FFFFFF;  /* Blanc */
    }

    .hero-subtitle {
        font-size: clamp(0.95rem, 0.85rem + 0.3vw, 1.1rem);
        line-height: 1.7;
        color: var(--text-mid);
        max-width: 60ch;
        margin: 0 auto 2rem;
        font-weight: 400;
    }

    .hero-scroll-indicator {
        position: absolute;
        bottom: 2rem;
        left: 50%;
        transform: translateX(-50%);
        z-index: 3;
        color: rgba(255, 255, 255, 0.8);
        font-size: 0.75rem;
        font-weight: 500;
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 0.5rem;
        animation: bounce-soft 3s ease-in-out infinite;
    }

    @keyframes bounce-soft {
        0%, 100% { transform: translateX(-50%) translateY(0); }
        50% { transform: translateX(-50%) translateY(5px); }
    }

    .scroll-arrow {
        width: 20px;
        height: 20px;
        border-bottom: 2px solid var(--primary);
        border-right: 2px solid var(--primary);
        transform: rotate(45deg);
    }

    /* ============================================
       STATS SECTION - TONS CRÈME
    ============================================ */
    .stats-section {
        background: var(--beige-light);
        padding: 4rem 1.5rem;
    }

    .stats-content {
        max-width: 1200px;
        margin: 0 auto;
    }

    .stats-grid {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
        gap: 2rem;
        text-align: center;
    }

    .stat-item {
        background: var(--cream-light);
        border: 1px solid var(--border-light);
        border-radius: var(--radius-lg);
        padding: 2rem 1.5rem;
        transition: all 0.3s ease;
    }

    .stat-item:hover {
        background: #fff;
        border-color: rgba(212,197,176,0.3);
        transform: translateY(-3px);
        box-shadow: 0 10px 30px rgba(0,0,0,0.05);
    }

    .stat-number {
        font-size: 2.5rem;
        font-weight: 700;
        color: var(--primary);
        line-height: 1;
        margin-bottom: 0.5rem;
        display: block;
    }

    .stat-label {
        font-size: 0.85rem;
        color: var(--text-mid);
        font-weight: 500;
        line-height: 1.4;
    }

    /* ============================================
       MISSION SECTION
    ============================================ */
    .mission-section {
        background: var(--cream-medium);
        padding: 0;
        margin-top: 3rem;
    }

    .mission-container {
        max-width: 1300px;
        margin: 0 auto;
        display: grid;
        grid-template-columns: 1fr 1fr;
        min-height: 500px;
    }

    @media (max-width: 900px) {
        .mission-container {
            grid-template-columns: 1fr;
            min-height: auto;
        }
    }

    .mission-image-side {
        position: relative;
        overflow: hidden;
    }

    .mission-image-side img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        transition: transform 0.5s ease;
        filter: brightness(1.05) saturate(0.9);
    }

    .mission-image-side:hover img {
        transform: scale(1.03);
    }

    .mission-content-side {
        padding: 3rem 2.5rem;
        display: flex;
        flex-direction: column;
        justify-content: center;
        gap: 1rem;
        background: var(--cream-light);
    }

    @media (max-width: 768px) {
        .mission-content-side {
            padding: 2.5rem 1.5rem;
        }
    }

    .section-label {
        font-size: 0.65rem;
        font-weight: 600;
        letter-spacing: 0.1em;
        text-transform: uppercase;
        color: var(--primary);
    }

    .mission-title {
        font-size: clamp(1.6rem, 1.2rem + 1vw, 2.2rem);
        font-weight: 700;
        line-height: 1.3;
        color: var(--text-dark);
    }

    .mission-text {
        font-size: 0.95rem;
        line-height: 1.7;
        color: var(--text-mid);
    }

    .mission-highlight {
        color: var(--primary);
        font-weight: 600;
    }

    /* ============================================
       GALLERY SECTION
    ============================================ */
    .gallery-section {
        background: var(--beige-light);
        padding: 4rem 1.5rem;
    }

    .gallery-header {
        text-align: center;
        max-width: 700px;
        margin: 0 auto 2.5rem;
    }

    .gallery-title {
        font-size: clamp(1.6rem, 1.2rem + 1vw, 2.2rem);
        font-weight: 700;
        line-height: 1.3;
        color: var(--text-dark);
        margin-bottom: 0.75rem;
    }

    .gallery-subtitle {
        font-size: 0.9rem;
        line-height: 1.6;
        color: var(--text-mid);
    }

    .gallery-grid {
        max-width: 1300px;
        margin: 0 auto;
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
        gap: 1.25rem;
    }

    .gallery-item {
        position: relative;
        border-radius: var(--radius-lg);
        overflow: hidden;
        aspect-ratio: 4/3;
        cursor: pointer;
        border: 1px solid var(--border-light);
        background: var(--cream-light);
    }

    .gallery-item img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        transition: transform 0.5s ease, filter 0.3s ease;
        filter: brightness(1.05) saturate(0.95);
    }

    .gallery-item:hover img {
        transform: scale(1.05);
        filter: brightness(1) saturate(1);
    }

    .gallery-item-overlay {
        position: absolute;
        inset: 0;
        background: linear-gradient(to top, rgba(0,0,0,0.6) 0%, transparent 50%);
        display: flex;
        align-items: flex-end;
        padding: 1.25rem;
        opacity: 0;
        transition: opacity 0.3s ease;
    }

    .gallery-item:hover .gallery-item-overlay {
        opacity: 1;
    }

    .gallery-item-title {
        color: #fff;
        font-size: 0.9rem;
        font-weight: 600;
    }

    /* ============================================
       ADVANTAGES SECTION
    ============================================ */
    .advantages-section {
        background: var(--cream-medium);
        padding: 4rem 1.5rem;
    }

    .advantages-header {
        text-align: center;
        max-width: 700px;
        margin: 0 auto 2.5rem;
    }

    .advantages-title {
        font-size: clamp(1.6rem, 1.2rem + 1vw, 2.2rem);
        font-weight: 700;
        line-height: 1.3;
        color: var(--text-dark);
        margin-bottom: 0.75rem;
    }

    .advantages-subtitle {
        font-size: 0.9rem;
        line-height: 1.6;
        color: var(--text-mid);
    }

    .advantages-grid {
        max-width: 1200px;
        margin: 0 auto;
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
        gap: 1.5rem;
    }

    .advantage-card {
        background: var(--cream-light);
        border: 1px solid var(--border-light);
        border-radius: var(--radius-lg);
        overflow: hidden;
        transition: all 0.3s ease;
    }

    .advantage-card:hover {
        background: #fff;
        border-color: rgba(212,197,176,0.3);
        box-shadow: 0 10px 35px rgba(0,0,0,0.06);
        transform: translateY(-5px);
    }

    .advantage-image-wrapper {
        position: relative;
        height: 180px;
        overflow: hidden;
    }

    .advantage-image-wrapper img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        transition: transform 0.5s ease;
        filter: brightness(1.05) saturate(0.9);
    }

    .advantage-card:hover .advantage-image-wrapper img {
        transform: scale(1.05);
    }

    .advantage-icon-badge {
        position: absolute;
        top: 1rem;
        left: 1rem;
        width: 45px;
        height: 45px;
        border-radius: 10px;
        background: linear-gradient(135deg, var(--accent-cream), var(--primary));
        display: flex;
        align-items: center;
        justify-content: center;
        box-shadow: 0 8px 20px rgba(212,197,176,0.4);
    }

    .advantage-icon-badge svg {
        width: 22px;
        height: 22px;
        color: #5a5a5a;
    }

    .advantage-content {
        padding: 1.25rem;
    }

    .advantage-title {
        font-size: 1rem;
        font-weight: 600;
        color: var(--text-dark);
        margin-bottom: 0.5rem;
        line-height: 1.3;
    }

    .advantage-desc {
        font-size: 0.85rem;
        line-height: 1.6;
        color: var(--text-mid);
    }

    /* ============================================
       PROCESS SECTION
    ============================================ */
    .process-section {
        background: var(--beige-light);
        padding: 4rem 1.5rem;
    }

    .process-header {
        text-align: center;
        max-width: 700px;
        margin: 0 auto 2.5rem;
    }

    .process-title {
        font-size: clamp(1.6rem, 1.2rem + 1vw, 2.2rem);
        font-weight: 700;
        line-height: 1.3;
        color: var(--text-dark);
        margin-bottom: 0.75rem;
    }

    .process-subtitle {
        font-size: 0.9rem;
        line-height: 1.6;
        color: var(--text-mid);
    }

    .process-timeline {
        max-width: 1000px;
        margin: 0 auto;
        position: relative;
    }

    .timeline-line {
        position: absolute;
        left: 50%;
        top: 0;
        bottom: 0;
        width: 2px;
        background: linear-gradient(
            to bottom,
            transparent 0%,
            var(--accent-cream) 10%,
            var(--accent-cream) 90%,
            transparent 100%
        );
        transform: translateX(-50%);
        z-index: 1;
        opacity: 0.5;
    }

    @media (max-width: 768px) {
        .timeline-line {
            left: 25px;
        }
    }

    .process-step {
        position: relative;
        margin-bottom: 3rem;
        z-index: 2;
    }

    .process-step:nth-child(odd) {
        padding-right: calc(50% + 2.5rem);
    }

    .process-step:nth-child(even) {
        padding-left: calc(50% + 2.5rem);
    }

    @media (max-width: 768px) {
        .process-step:nth-child(odd),
        .process-step:nth-child(even) {
            padding-left: 60px;
            padding-right: 0;
        }
    }

    .process-card {
        background: var(--cream-light);
        border: 1px solid var(--border-light);
        border-radius: var(--radius-lg);
        overflow: hidden;
        transition: all 0.3s ease;
    }

    .process-card:hover {
        background: #fff;
        border-color: rgba(212,197,176,0.3);
        box-shadow: 0 8px 30px rgba(0,0,0,0.06);
        transform: translateY(-3px);
    }

    .process-image {
        height: 160px;
        overflow: hidden;
    }

    .process-image img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        transition: transform 0.5s ease;
        filter: brightness(1.05) saturate(0.9);
    }

    .process-card:hover .process-image img {
        transform: scale(1.05);
    }

    .process-content {
        padding: 1.25rem;
    }

    .process-number {
        display: inline-flex;
        align-items: center;
        justify-content: center;
        width: 40px;
        height: 40px;
        border-radius: 50%;
        background: linear-gradient(135deg, var(--accent-cream), var(--primary));
        color: #5a5a5a;
        font-size: 1.1rem;
        font-weight: 700;
        margin-bottom: 0.75rem;
        box-shadow: 0 8px 20px rgba(212,197,176,0.35);
    }

    .timeline-dot {
        position: absolute;
        top: 80px;
        left: 50%;
        width: 12px;
        height: 12px;
        border-radius: 50%;
        background: var(--primary);
        border: 3px solid var(--beige-light);
        box-shadow: 0 0 15px rgba(212,197,176,0.5);
        transform: translateX(-50%);
        z-index: 3;
    }

    @media (max-width: 768px) {
        .timeline-dot {
            left: 25px;
        }
    }

    .process-step-title {
        font-size: 1rem;
        font-weight: 600;
        color: var(--text-dark);
        margin-bottom: 0.5rem;
        line-height: 1.3;
    }

    .process-step-desc {
        font-size: 0.85rem;
        line-height: 1.6;
        color: var(--text-mid);
    }

    /* ============================================
       TESTIMONIAL SECTION
    ============================================ */
    .testimonial-section {
        background: var(--cream-medium);
        padding: 5rem 1.5rem;
        position: relative;
        overflow: hidden;
    }

    .testimonial-section::before {
        content: '';
        position: absolute;
        top: -30%;
        right: -15%;
        width: 500px;
        height: 500px;
        background: radial-gradient(circle, rgba(232,220,200,0.08) 0%, transparent 70%);
        border-radius: 50%;
        animation: float-slow 15s ease-in-out infinite;
    }

    @keyframes float-slow {
        0%, 100% { transform: translate(0, 0); }
        50% { transform: translate(-30px, -30px); }
    }

    .testimonial-content {
        position: relative;
        z-index: 2;
        max-width: 800px;
        margin: 0 auto;
        text-align: center;
    }

    .quote-icon {
        font-size: 3.5rem;
        color: var(--primary);
        opacity: 0.2;
        line-height: 1;
        margin-bottom: 1rem;
    }

    .testimonial-text {
        font-size: clamp(1.1rem, 0.9rem + 0.5vw, 1.4rem);
        line-height: 1.7;
        font-weight: 400;
        margin-bottom: 2rem;
        font-style: italic;
        color: var(--text-dark);
    }

    .testimonial-author {
        display: flex;
        flex-direction: column;
        gap: 0.35rem;
    }

    .author-name {
        font-size: 1rem;
        font-weight: 600;
        color: var(--primary);
    }

    .author-role {
        font-size: 0.85rem;
        color: var(--text-mid);
    }

    /* ============================================
       CTA FINAL
    ============================================ */
    .cta-final {
        background: linear-gradient(135deg, var(--beige-light) 0%, var(--cream-medium) 100%);
        min-height: 450px;
        display: flex;
        align-items: center;
        justify-content: center;
        position: relative;
        overflow: hidden;
        padding: 4rem 1.5rem;
    }

    .cta-final::before {
        content: '';
        position: absolute;
        bottom: -30%;
        left: -15%;
        width: 450px;
        height: 450px;
        background: radial-gradient(circle, rgba(232,220,200,0.12) 0%, transparent 70%);
        border-radius: 50%;
        animation: float-slow 12s ease-in-out infinite reverse;
    }

    .cta-content {
        position: relative;
        z-index: 2;
        max-width: 650px;
        text-align: center;
    }

    .cta-title {
        font-size: clamp(1.8rem, 1.3rem + 1vw, 2.5rem);
        font-weight: 700;
        line-height: 1.3;
        margin-bottom: 1rem;
        color: var(--text-dark);
    }

    .cta-text {
        font-size: 1rem;
        line-height: 1.7;
        color: var(--text-mid);
        margin-bottom: 1.75rem;
    }

    .cta-buttons {
        display: flex;
        flex-wrap: wrap;
        gap: 1rem;
        justify-content: center;
    }

    .btn {
        display: inline-flex;
        align-items: center;
        justify-content: center;
        gap: 0.5rem;
        padding: 0.85rem 1.75rem;
        border-radius: var(--radius-md);
        font-size: 0.9rem;
        font-weight: 600;
        text-decoration: none;
        transition: all 0.3s ease;
        cursor: pointer;
        border: none;
    }

    .btn-primary {
        background: linear-gradient(to right, var(--accent-cream), var(--primary));
        color: #2c2c2c;
        box-shadow: 0 8px 25px rgba(212,197,176,0.35);
    }

    .btn-primary:hover {
        box-shadow: 0 12px 35px rgba(212,197,176,0.45);
        transform: translateY(-2px);
    }

    .btn-outline {
        background: transparent;
        border: 2px solid var(--primary);
        color: var(--primary);
    }

    .btn-outline:hover {
        background: var(--primary);
        color: #2c2c2c;
    }

    /* ============================================
       RESPONSIVE
    ============================================ */
    @media (max-width: 768px) {
        .hero-fullscreen {
            min-height: 450px;
        }

        .stats-section {
            padding: 3rem 1.5rem;
        }

        .stats-grid {
            grid-template-columns: repeat(2, 1fr);
            gap: 1.5rem;
        }

        .mission-container {
            grid-template-columns: 1fr;
        }

        .mission-image-side {
            height: 280px;
        }

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

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

        .cta-buttons {
            flex-direction: column;
        }

        .btn {
            width: 100%;
        }
    }

    @media (max-width: 480px) {
        .hero-title {
            font-size: 1.8rem;
        }

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

