/* =============================================
   HOME TEMPORAIRE — home_temp.css
   ============================================= */

/* ── LAYOUT : HEADER ──────────────────────────────── */
.ht-layout-header {
    background: white;
    border-bottom: 1px solid #f0e8df;
    position: sticky;
    top: 0;
    z-index: 100;
}

.ht-layout-header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 8%;
    height: 70px;
}

.ht-layout-logo img {
    height: 52px;
    display: block;
}

.ht-layout-cta {
    display: inline-flex;
    align-items: center;
    background: linear-gradient(135deg, #fcb045 0%, #fd1d1d 50%, #833ab4 100%);
    color: white;
    font-family: 'Inter', sans-serif;
    font-size: 0.88rem;
    font-weight: 700;
    padding: 10px 22px;
    border-radius: 100px;
    text-decoration: none;
    transition: opacity 0.2s, transform 0.2s, box-shadow 0.2s;
    box-shadow: 0 3px 14px rgba(253,29,29,0.22);
}
.ht-layout-cta:hover {
    color: white;
    opacity: 0.9;
    transform: translateY(-1px);
    box-shadow: 0 6px 20px rgba(253,29,29,0.32);
}

/* ── LAYOUT : FOOTER ──────────────────────────────── */
.ht-layout-footer {
    background: #131313;
    padding: 2rem 0;
    margin-top: 0;
}

.ht-layout-footer-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 8%;
    flex-wrap: wrap;
    gap: 0.75rem;
}

.ht-layout-footer-copy {
    font-family: 'Inter', sans-serif;
    font-size: 0.85rem;
    color: rgba(255,255,255,0.55);
    margin: 0;
}

.ht-layout-footer-nav a {
    font-family: 'Inter', sans-serif;
    font-size: 0.85rem;
    color: rgba(255,255,255,0.55);
    text-decoration: none;
    transition: color 0.2s;
}
.ht-layout-footer-nav a:hover {
    color: white;
}

/* ── Variables ─────────────────────────────────────── */
.ht-page {
    --ht-orange:    #fd7200;
    --ht-gradient:  linear-gradient(135deg, #fcb045 0%, #fd1d1d 50%, #833ab4 100%);
    --ht-cream:     linear-gradient(160deg, #fff8f0 0%, #fff3e6 100%);
    --ht-dark:      #1a1a2e;
    --ht-muted:     #6b7280;
    --ht-border:    #f0e8df;
    --ht-radius:    20px;
    font-family: 'Inter', sans-serif;
}

/* ── Utilitaire full-width ─────────────────────────── */
.ht-fullwidth {
    width: 100vw;
    position: relative;
    left: 50%;
    transform: translateX(-50%);
}

/* ── SECTION : HERO ────────────────────────────────── */
.ht-hero {
    background: var(--ht-gradient);
    padding: 6rem 8% 5rem;
    overflow: hidden;
    position: relative;
    text-align: center;
}

.ht-hero::before,
.ht-hero::after {
    content: '';
    position: absolute;
    border-radius: 50%;
    pointer-events: none;
}
.ht-hero::before {
    width: 500px; height: 500px;
    top: -160px; right: -100px;
    background: rgba(255,255,255,0.06);
}
.ht-hero::after {
    width: 320px; height: 320px;
    bottom: -100px; left: 8%;
    background: rgba(255,255,255,0.04);
}

.ht-hero-inner {
    position: relative;
    z-index: 1;
    max-width: 740px;
    margin: 0 auto;
}

.ht-eyebrow {
    display: inline-block;
    font-family: 'Inter', sans-serif;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: rgba(255,255,255,0.75);
    background: rgba(255,255,255,0.15);
    border: 1px solid rgba(255,255,255,0.3);
    border-radius: 100px;
    padding: 5px 16px;
    margin-bottom: 1.5rem;
}

.ht-hero-title {
    font-family: 'PT Serif', serif;
    font-size: clamp(2.2rem, 4.5vw, 3.2rem);
    font-weight: 700;
    color: white;
    line-height: 1.15;
    margin-bottom: 1.25rem;
}

.ht-hero-lead {
    font-size: 1.1rem;
    color: rgba(255,255,255,0.88);
    line-height: 1.75;
    margin-bottom: 2.25rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.ht-hero-cta {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 3rem;
}

.ht-btn-white {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: white;
    color: var(--ht-dark);
    font-weight: 700;
    font-size: 0.95rem;
    padding: 14px 28px;
    border-radius: 100px;
    text-decoration: none;
    transition: transform 0.2s, box-shadow 0.2s;
    box-shadow: 0 4px 20px rgba(0,0,0,0.15);
}
.ht-btn-white:hover {
    color: var(--ht-dark);
    transform: translateY(-2px);
    box-shadow: 0 8px 28px rgba(0,0,0,0.22);
}

.ht-btn-ghost {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: transparent;
    color: white;
    font-weight: 600;
    font-size: 0.95rem;
    padding: 14px 28px;
    border-radius: 100px;
    border: 2px solid rgba(255,255,255,0.55);
    text-decoration: none;
    transition: background 0.2s, border-color 0.2s;
}
.ht-btn-ghost:hover {
    color: white;
    background: rgba(255,255,255,0.12);
    border-color: rgba(255,255,255,0.85);
}

.ht-hero-trust {
    display: flex;
    justify-content: center;
    gap: 2.5rem;
    flex-wrap: wrap;
}

.ht-trust-item {
    display: flex;
    align-items: center;
    gap: 8px;
    color: rgba(255,255,255,0.82);
    font-size: 0.88rem;
    font-weight: 500;
}

.ht-trust-item svg {
    flex-shrink: 0;
    opacity: 0.75;
}

/* ── SECTION : SERVICES ────────────────────────────── */
.ht-services {
    background: linear-gradient(160deg, #fff8f0 0%, #fff3e6 100%);
    padding: 5.5rem 8%;
}

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

.ht-section-eyebrow {
    display: inline-block;
    font-family: 'Inter', sans-serif;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--ht-orange);
    margin-bottom: 0.75rem;
}

.ht-section-title {
    font-family: 'PT Serif', serif;
    font-size: clamp(1.8rem, 3vw, 2.4rem);
    font-weight: 700;
    color: var(--ht-dark);
    margin-bottom: 0.85rem;
    line-height: 1.2;
}

.ht-section-lead {
    font-size: 1.05rem;
    color: var(--ht-muted);
    line-height: 1.75;
    max-width: 580px;
    margin: 0 auto;
}

.ht-services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    max-width: 1100px;
    margin: 0 auto;
}

.ht-service-card {
    background: white;
    border-radius: var(--ht-radius);
    padding: 2.25rem 2rem;
    box-shadow: 0 2px 16px rgba(253,114,0,0.07);
    border: 1px solid var(--ht-border);
    display: flex;
    flex-direction: column;
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}
.ht-service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 16px 40px rgba(253,114,0,0.13);
}

.ht-service-icon {
    width: 58px;
    height: 58px;
    border-radius: 16px;
    background: #fff3e6;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    flex-shrink: 0;
}
.ht-service-icon svg {
    fill: var(--ht-orange);
}

.ht-service-card h3 {
    font-family: 'PT Serif', serif;
    font-size: 1.15rem;
    font-weight: 700;
    color: var(--ht-dark);
    margin-bottom: 0.75rem;
    line-height: 1.3;
}

.ht-service-card p {
    font-size: 0.9rem;
    color: var(--ht-muted);
    line-height: 1.75;
    flex: 1;
    margin-bottom: 1.5rem;
}

.ht-service-link {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    color: var(--ht-orange);
    font-weight: 600;
    font-size: 0.88rem;
    text-decoration: none;
    transition: gap 0.2s;
}
.ht-service-link:hover {
    color: var(--ht-orange);
    gap: 9px;
}
.ht-service-link svg {
    fill: currentColor;
}

/* ── SECTION : CONTACT ─────────────────────────────── */
.ht-contact {
    background: var(--ht-gradient);
    padding: 5.5rem 8%;
    position: relative;
    overflow: hidden;
}
.ht-contact::before {
    content: '';
    position: absolute;
    width: 400px; height: 400px;
    top: -100px; right: -60px;
    background: rgba(255,255,255,0.05);
    border-radius: 50%;
    pointer-events: none;
}

.ht-contact-inner {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 4rem;
    align-items: start;
    position: relative;
    z-index: 1;
    max-width: 1100px;
    margin: 0 auto;
}

/* Côté gauche — pitch */
.ht-contact-pitch {
    padding-top: 0.5rem;
}

.ht-contact-pitch .ht-eyebrow {
    background: rgba(255,255,255,0.2);
    border-color: rgba(255,255,255,0.35);
}

.ht-contact-title {
    font-family: 'PT Serif', serif;
    font-size: clamp(1.8rem, 2.8vw, 2.4rem);
    font-weight: 700;
    color: white;
    line-height: 1.2;
    margin-bottom: 1.25rem;
}

.ht-contact-desc {
    font-size: 1rem;
    color: rgba(255,255,255,0.85);
    line-height: 1.75;
    margin-bottom: 2rem;
}

.ht-contact-points {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 0.9rem;
}

.ht-contact-points li {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    color: rgba(255,255,255,0.9);
    font-size: 0.95rem;
    line-height: 1.5;
}

.ht-check {
    flex-shrink: 0;
    width: 20px;
    height: 20px;
    background: rgba(255,255,255,0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 1px;
}
.ht-check svg {
    fill: white;
}

/* Côté droit — carte formulaire */
.ht-contact-card {
    background: white;
    border-radius: var(--ht-radius);
    padding: 2.5rem;
    box-shadow: 0 24px 64px rgba(0,0,0,0.18);
}

.ht-contact-card-title {
    font-family: 'PT Serif', serif;
    font-size: 1.35rem;
    font-weight: 700;
    color: var(--ht-dark);
    margin-bottom: 0.4rem;
}

.ht-contact-card-sub {
    font-size: 0.88rem;
    color: var(--ht-muted);
    margin-bottom: 1.75rem;
}

/* Flash dans la carte contact */
.ht-flash {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    padding: 12px 16px;
    border-radius: 12px;
    font-size: 0.9rem;
    line-height: 1.5;
    margin-bottom: 1.5rem;
}
.ht-flash svg { flex-shrink: 0; margin-top: 1px; }
.ht-flash--success {
    background: #f0fdf4;
    color: #166534;
    border: 1px solid #bbf7d0;
}
.ht-flash--success svg { fill: #16a34a; }
.ht-flash--error {
    background: #fff1f2;
    color: #9f1239;
    border: 1px solid #fecdd3;
}
.ht-flash--error svg { fill: #e11d48; }

/* Champs du formulaire */
.ht-field {
    margin-bottom: 1.25rem;
}

.ht-label {
    display: block;
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--ht-dark);
    margin-bottom: 0.4rem;
}

.ht-input,
.ht-textarea {
    width: 100%;
    padding: 12px 16px;
    border: 1.5px solid #e5e7eb;
    border-radius: 12px;
    font-family: 'Inter', sans-serif;
    font-size: 0.95rem;
    color: var(--ht-dark);
    background: #fafafa;
    transition: border-color 0.2s, background 0.2s;
    outline: none;
    box-sizing: border-box;
}
.ht-input:focus,
.ht-textarea:focus {
    border-color: var(--ht-orange);
    background: white;
}

.ht-textarea {
    resize: vertical;
    min-height: 120px;
    line-height: 1.6;
}

.ht-submit {
    width: 100%;
    padding: 14px;
    background: var(--ht-gradient);
    color: white;
    font-family: 'Inter', sans-serif;
    font-size: 1rem;
    font-weight: 700;
    border: none;
    border-radius: 100px;
    cursor: pointer;
    transition: opacity 0.2s, transform 0.2s, box-shadow 0.2s;
    box-shadow: 0 4px 18px rgba(253,29,29,0.25);
    margin-top: 0.5rem;
}
.ht-submit:hover {
    opacity: 0.92;
    transform: translateY(-1px);
    box-shadow: 0 8px 28px rgba(253,29,29,0.35);
}
.ht-submit:active {
    transform: translateY(0);
}

/* ── PAGE : MENTIONS LÉGALES ───────────────────────── */
.ml-wrap {
    max-width: 780px;
    margin: 0 auto;
    padding: 4rem 8%;
}

.ml-header {
    margin-bottom: 3rem;
    padding-bottom: 2rem;
    border-bottom: 2px solid #f0e8df;
}

.ml-title {
    font-family: 'PT Serif', serif;
    font-size: clamp(1.8rem, 3vw, 2.4rem);
    font-weight: 700;
    color: #1a1a2e;
    margin-bottom: 0.4rem;
    line-height: 1.2;
}

.ml-updated {
    font-size: 0.85rem;
    color: #9ca3af;
    margin: 0;
}

.ml-body {
    display: flex;
    flex-direction: column;
    gap: 2.25rem;
}

.ml-section h2 {
    font-family: 'PT Serif', serif;
    font-size: 1.15rem;
    font-weight: 700;
    color: #1a1a2e;
    margin-bottom: 0.75rem;
}

.ml-section p {
    font-family: 'Inter', sans-serif;
    font-size: 0.95rem;
    color: #4b5563;
    line-height: 1.8;
    margin-bottom: 0.75rem;
}
.ml-section p:last-child { margin-bottom: 0; }

.ml-back {
    margin-top: 1.5rem;
    padding-top: 2rem;
    border-top: 1px solid #f0e8df;
}

.ml-back-link {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    color: #fd7200;
    font-family: 'Inter', sans-serif;
    font-size: 0.9rem;
    font-weight: 600;
    text-decoration: none;
    transition: gap 0.2s;
}
.ml-back-link:hover {
    color: #fd7200;
    gap: 11px;
}
.ml-back-link svg { fill: currentColor; }

/* ── RESPONSIVE ────────────────────────────────────── */
@media (max-width: 1024px) {
    .ht-services-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .ht-contact-inner {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }
}

@media (max-width: 768px) {
    .ht-hero {
        padding: 4rem 6% 3.5rem;
    }
    .ht-services {
        padding: 4rem 6%;
    }
    .ht-contact {
        padding: 4rem 6%;
    }
    .ht-services-grid {
        grid-template-columns: 1fr;
    }
    .ht-hero-trust {
        gap: 1.25rem;
    }
}
