﻿/* ════════════════════════════════════════════════════════
   HERO — Moments Signature
════════════════════════════════════════════════════════ */
.exp-hero {
    width: 100%;
    height: 68vh;
    min-height: 440px;
    background-size: cover;
    background-position: center 30%;
    position: relative;
    display: flex;
    align-items: flex-end;
    justify-content: center;
}

.exp-hero::before {
    content: "";
    position: absolute;
    top: 0; right: 0; bottom: 0; left: 0;
    background: linear-gradient(
        to bottom,
        rgba(6, 10, 22, 0.40) 0%,
        rgba(6, 10, 22, 0.06) 45%,
        rgba(6, 10, 22, 0.60) 100%
    );
}

.exp-hero-label {
    position: relative;
    z-index: 2;
    text-align: center;
    padding-bottom: 60px;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.exp-hero-eyebrow {
    font-family: "Jost", sans-serif;
    font-size: 0.60rem;
    letter-spacing: 0.30em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.50);
}

.exp-hero-title {
    font-family: "Playfair Display", serif;
    font-size: clamp(2rem, 4.5vw, 3.6rem);
    font-weight: 400;
    color: #ffffff;
    letter-spacing: 0.03em;
    line-height: 1.1;
    margin: 0;
    text-shadow: 0 2px 28px rgba(6,10,22,0.28);
}

.exp-hero-title em {
    font-family: "Cormorant Garamond", serif;
    font-style: italic;
    font-size: 1.10em;
}

/* ════════════════════════════════════════════════════════
   INTRO
════════════════════════════════════════════════════════ */
.exp-intro {
    background: #FDFAF5;
    padding: 88px max(5vw, 48px) 64px;
    max-width: 720px;
    margin: 0 auto;
    text-align: center;
}

.exp-intro .section-text {
    margin: 0 auto;
}

/* ════════════════════════════════════════════════════════
   GRILLE DES SERVICES
════════════════════════════════════════════════════════ */
.exp-services-wrap {
    background: #FDFAF5;
    padding: 0 max(4vw, 28px) 96px;
}

.exp-services-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    max-width: 1200px;
    margin: 0 auto;
}

.exp-service-card {
    background: #ffffff;
    border-radius: 20px;
    padding: 48px 44px 44px;
    display: flex;
    flex-direction: column;
    gap: 16px;
    box-shadow:
        0 2px 12px rgba(27, 39, 68, 0.04),
        0 8px 32px rgba(27, 39, 68, 0.06);
    transition: box-shadow 0.3s ease, transform 0.3s ease;
}

.exp-service-card:hover {
    box-shadow:
        0 4px 20px rgba(27, 39, 68, 0.07),
        0 16px 48px rgba(27, 39, 68, 0.09);
    transform: translateY(-2px);
}

.exp-service-icon {
    width: 52px;
    height: 52px;
    flex-shrink: 0;
}

.exp-service-category {
    font-family: "Jost", sans-serif;
    font-size: 0.58rem;
    letter-spacing: 0.26em;
    text-transform: uppercase;
    color: #C5B49A;
    margin-bottom: -4px;
}

.exp-service-title {
    font-family: "Playfair Display", serif;
    font-size: clamp(1.15rem, 1.5vw, 1.35rem);
    font-weight: 400;
    color: #1B2744;
    letter-spacing: 0.02em;
    line-height: 1.3;
    margin: 0;
}

.exp-service-text {
    font-family: "Inter", sans-serif;
    font-size: 0.93rem;
    font-weight: 300;
    line-height: 1.85;
    color: #6B7A8D;
    margin: 0;
    flex: 1;
}

.exp-service-note {
    font-family: "Jost", sans-serif;
    font-size: 0.60rem;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: #C5B49A;
    padding-top: 12px;
    border-top: 1px solid rgba(197, 180, 154, 0.25);
}

/* ════════════════════════════════════════════════════════
   RESPONSIVE
════════════════════════════════════════════════════════ */
@media (max-width: 900px) {
    .exp-services-grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    .exp-service-card {
        padding: 40px 32px 36px;
    }

    .exp-intro {
        padding: 64px 24px 48px;
    }
}

@media (max-width: 600px) {
    .exp-hero { height: 56vh; min-height: 340px; }
    .exp-hero-label { padding-bottom: 40px; }

    .exp-services-wrap {
        padding: 0 16px 64px;
    }

    .exp-service-card {
        padding: 32px 24px 28px;
        border-radius: 16px;
    }
}
