@charset "UTF-8";
/* CSS Document */

/* ==========================================================================
   1. CORE DESIGN SYSTEM & CREST VARIABLES
   ========================================================================== */
*, *::before, *::after {
    box-sizing: border-box !important;
}

:root {
    --primary: #ff6000;         /* Orange Éclatant */
    --primary-light: #ff9000;   /* Ambre Lumineux */
    --dark: #000000;
    --grey-text: #666666;
    --bg-light-grey: #f8f9fa;
    --white: #FFFFFF;
    --font-crest: 'Plus Jakarta Sans', sans-serif;
    --transition-crest: all 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}

body {
    font-family: var(--font-crest);
    background-color: var(--white);
    color: var(--grey-text);
    overflow-x: hidden;
    line-height: 1.6;
}
footer {
    background-color: var(--dark);
}
.section-padding {
    padding: 120px 0;
}

.bg-light-grey-site {
    background-color: var(--bg-light-grey);
}

.text-orange {
    color: var(--primary) !important;
}

/* ==========================================================================
   2. TYPOGRAPHIE MINIMALISTE ET RIGOUREUSE
   ========================================================================== */
h1 {
    font-size: 4rem;
    font-weight: 800;
    color: var(--white);
    line-height: 1.1;
    letter-spacing: -2px;
}

h2.crest-section-title {
    font-size: 2.8rem;
    font-weight: 700;
    color: var(--dark);
    letter-spacing: -1px;
    line-height: 1.2;
}

h3 {
    font-size: 1.6rem;
    font-weight: 700;
    color: var(--dark);
}

.crest-tag-line {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 3px;
    color: var(--primary);
    font-weight: 700;
    margin-bottom: 20px;
}

.crest-tag-line.light {
    color: var(--primary-light);
}

.tag-dash {
    width: 20px;
    height: 2px;
    background-color: var(--primary);
}

.crest-tag-line.light .tag-dash {
    background-color: var(--primary-light);
}

.crest-lead-side {
    font-size: 1.15rem;
    line-height: 1.7;
}

/* ==========================================================================
   3. FIXED NAVBAR STRUCTURÉE (Crest Concept)
   ========================================================================== */
.main-header {
    background-color: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(15px);
    padding: 20px 0;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
    transition: var(--transition-crest);
    z-index: 9999;
}

.crest-logo-wrapper {
    display: flex;
    align-items: center;
    gap: 10px;
}

.logo-dot {
    width: 12px;
    height: 12px;
    background-color: var(--primary);
    border-radius: 50%;
}

.firm-name {
    color: var(--dark);
    font-weight: 800;
    font-size: 1.3rem;
    letter-spacing: -0.5px;
}

.nav-links {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    align-items: center;
    gap: 40px;
}

.nav-item-link {
    color: var(--dark);
    text-decoration: none;
    font-weight: 600;
    font-size: 0.95rem;
    transition: var(--transition-crest);
}

.nav-item-link:hover, .nav-item-link.active {
    color: var(--primary);
}

.btn-crest-nav {
    background-color: var(--dark);
    color: var(--white) !important;
    padding: 12px 24px;
    border-radius: 4px;
    font-weight: 700;
}

.btn-crest-nav:hover {
    background-color: var(--primary);
    transform: translateY(-1px);
}

/* ==========================================================================
   4. ASYMMETRIC HERO SECTION (Fidèle à Crest Home 3)
   ========================================================================== */
.hero-section {
    background-color: var(--dark);
    min-height: 95vh;
    padding-top: 150px;
    padding-bottom: 100px;
}

.crest-hero-content {
    max-width: 580px;
}

.hero-desc {
    color: #aaaaaa;
    font-size: 1.1rem;
    line-height: 1.7;
}

/* Bouton Téléphone Imposant Obligatoire (Fond Orange / Police Blanche) */
.btn-phone-hero {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    background-color: var(--primary) !important; /* Orange #ff6000 */
    color: var(--white) !important;               /* Police Blanche */
    font-weight: 800;
    font-size: 1.6rem;
    padding: 16px 36px;
    border-radius: 4px;
    text-decoration: none;
    box-shadow: 0 10px 25px rgba(255, 96, 0, 0.3);
    transition: var(--transition-crest);
}

.btn-phone-hero:hover {
    background-color: var(--primary-light) !important;
    transform: translateY(-2px);
    box-shadow: 0 12px 30px rgba(255, 96, 0, 0.5);
}

.btn-phone-hero span {
    font-size: 2rem;
    font-variation-settings: 'FILL' 1;
}

.btn-crest-solid {
    background-color: var(--primary);
    color: var(--white);
    text-decoration: none;
    font-weight: 700;
    padding: 16px 32px;
    border-radius: 4px;
    transition: var(--transition-crest);
}

.btn-crest-solid:hover {
    background-color: var(--white);
    color: var(--dark);
}

.btn-crest-text {
    color: var(--white);
    text-decoration: none;
    font-weight: 700;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: var(--transition-crest);
}

.btn-crest-text:hover {
    color: var(--primary-light);
    padding-left: 5px;
}

/* Masque et Stack Image Asymétrique */
.crest-image-mask-wrapper {
    position: relative;
    padding-left: 40px;
}

.crest-hero-img {
    width: 100%;
    height: 550px;
    object-fit: cover;
    border-radius: 8px;
}

.crest-experience-year {
    position: absolute;
    bottom: 30px;
    left: 0;
    background-color: var(--primary);
    color: var(--white);
    padding: 25px 35px;
    border-radius: 4px;
    box-shadow: 0 20px 40px rgba(0,0,0,0.15);
}

.xp-title { display: block; font-size: 1.8rem; font-weight: 800; line-height: 1; }
.xp-sub { font-size: 0.85rem; text-transform: uppercase; letter-spacing: 2px; }

/* ==========================================================================
   5. CARDS STYLE CREST (Minimalisme Texturé)
   ========================================================================== */
.crest-service-card {
    background-color: var(--white);
    padding: 60px 40px;
    border: 1px solid rgba(0, 0, 0, 0.06);
    transition: var(--transition-crest);
    height: 100%;
}

.card-num {
    font-size: 1rem;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 30px;
}

.crest-service-card p {
    color: var(--grey-text);
    margin: 0;
    font-size: 0.95rem;
    line-height: 1.7;
}

.crest-service-card:hover {
    background-color: var(--dark);
    border-color: var(--dark);
}

.crest-service-card:hover h3, .crest-service-card:hover .card-num {
    color: var(--white);
}

.crest-service-card:hover p {
    color: #aaaaaa;
}

/* ==========================================================================
   6. ATELIER & SPÉCIFICATIONS LOGO INLINE
   ========================================================================== */
.spec-crest-grid {
    border-top: 1px solid rgba(255,255,255,0.1);
    padding-top: 30px;
}

.spec-inline-item {
    display: flex;
    align-items: flex-start;
    gap: 15px;
}

.spec-inline-item span {
    font-size: 28px;
}

.spec-inline-item h5 {
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 4px;
}

/* ==========================================================================
   7. PORTFOLIO ASYMETRIQUE IMAGES CLEAN
   ========================================================================== */
.crest-portfolio-item {
    cursor: pointer;
}

.img-overflow {
    overflow: hidden;
    border-radius: 4px;
}

.crest-portfolio-item img {
    width: 100%;
    height: 450px;
    object-fit: cover;
    transition: var(--transition-crest);
}

.portfolio-meta h4 {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 2px;
}

.portfolio-meta span {
    font-size: 0.85rem;
    text-transform: uppercase;
    color: var(--primary);
    font-weight: 700;
    letter-spacing: 1px;
}

.crest-portfolio-item:hover img {
    transform: scale(1.03);
}

/* ==========================================================================
   8. CONTAINER FORMULAIRE FLEX DESIGN
   ========================================================================== */
.crest-form-container {
    padding: 70px 50px;
    border-radius: 4px;
}

.flex-form-row {
    display: flex;
    flex-wrap: wrap;
    margin-inline: -12px;
    margin-bottom: 24px;
}

.flex-field-group {
    padding-inline: 12px;
    display: flex;
    flex-direction: column;
}

.width-50 { flex: 0 0 50%; max-width: 50%; }
.width-100 { flex: 0 0 100%; max-width: 100%; }

.flex-field-group label {
    font-weight: 700;
    font-size: 0.85rem;
    color: var(--dark);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 10px;
}

.form-control-custom {
    background-color: var(--bg-light-grey);
    border: 1px solid rgba(0,0,0,0.08);
    padding: 14px 20px;
    border-radius: 4px;
    font-family: var(--font-crest);
    font-size: 0.95rem;
    transition: var(--transition-crest);
}

.form-control-custom:focus {
    background-color: var(--white);
    border-color: var(--primary);
    outline: none;
}

.btn-submit-crest {
    background-color: var(--primary);
    color: var(--white);
    border: none;
    padding: 18px 30px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    border-radius: 4px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    cursor: pointer;
    transition: var(--transition-crest);
}

.btn-submit-crest:hover {
    background-color: var(--dark);
}

/* ==========================================================================
   9. ANCHOR ANIMATIONS
   ========================================================================== */
.animate-fade-in {
    animation: crestFade 1.2s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

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

/* ==========================================================================
   10. RESPONSIVE DESIGN CONTRAINTS (Crest Adaptability)
   ========================================================================== */

/* Désactivation du burger et affichage du menu complet pour Tablettes Paysage et Laptops */
@media (min-width: 1200px) {
    .burger-menu-btn {
        display: none !important; /* Masquage total sur Laptop et écran large */
    }
    .nav-menu-wrapper {
        display: block !important;
    }
}

/* Le menu de type Burger s'active désormais UNIQUEMENT sous 1200px */
@media (max-width: 1199.98px) {
    h1 { font-size: 2.8rem; }
    .section-padding { padding: 80px 0; }
    
    .burger-menu-btn {
        display: flex;
        flex-direction: column;
        justify-content: center;
        gap: 6px;
        width: 30px;
        height: 30px;
        background: transparent;
        border: none;
        z-index: 10000;
    }

    .burger-bar {
        width: 100%;
        height: 2px;
        background-color: var(--dark);
        transition: var(--transition-crest);
    }

    .nav-menu-wrapper {
        position: fixed;
        top: 75px;
        left: -100%;
        width: 100%;
        height: calc(100vh - 75px);
        background-color: var(--white);
        padding: 40px;
        transition: var(--transition-crest);
    }

    .nav-menu-wrapper.open { left: 0; }
    
    /* Masquage des liens classiques pour forcer le mode vertical dans le volet */
    .nav-links { 
        flex-direction: column; 
        align-items: flex-start; 
        gap: 30px; 
    }
    
    .burger-menu-btn.active .burger-bar:nth-child(1) { transform: translateY(4px) rotate(45deg); }
    .burger-menu-btn.active .burger-bar:nth-child(2) { transform: translateY(-4px) rotate(-45deg); }

    .crest-image-mask-wrapper { padding-left: 0; }
    .crest-hero-img { height: 380px; }
}

@media (max-width: 575.98px) {
    h1 { font-size: 2.2rem; }
    .btn-phone-hero {
        display: flex;
        width: 100%;
        justify-content: center;
        font-size: 1.25rem;
        padding: 14px 15px;
    }
    .crest-form-container { padding: 40px 20px; }
    .width-50 { flex: 0 0 100%; max-width: 100%; }
    .g-recaptcha { transform: scale(0.85); transform-origin: 0 0; }
}
iframe {
	display: block
}
.no-link {
    color: inherit !important;
    text-decoration: none !important;
    pointer-events: none;
}