/* ==========================================================
   HERO
========================================================== */

.hero {
    position: relative;
    min-height: 85vh;

    display: flex;
    align-items: center;

    overflow: hidden;
}

.hero img {
    position: absolute;
    inset: 0;

    width: 100%;
    height: 100%;

    object-fit: cover;
}

.hero-overlay {
    position: absolute;
    inset: 0;

    background: linear-gradient(
        90deg,
        rgba(245,241,234,.92) 0%,
        rgba(245,241,234,.72) 28%,
        rgba(245,241,234,.25) 55%,
        rgba(245,241,234,0) 100%
    );
}

.hero-content {
    position: relative;
    z-index: 2;

    width: min(560px, 100%);
}

/* ==========================================================
   BANDEAU DU PROCESSUS
========================================================== */

.process-strip {
    background: #202020;
    color: #ffffff;
    padding: 2.25rem 0;
}

.process-strip__grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
}

.process-item {
    display: grid;
    grid-template-columns: 58px 1fr;
    gap: 1.25rem;
    align-items: start;

    min-width: 0;
    padding: 0 2rem;
    border-right: 1px solid rgba(201, 106, 44, 0.55);
}

.process-item:first-child {
    padding-left: 0;
}

.process-item:last-child {
    padding-right: 0;
    border-right: none;
}

.process-item__icon {
    display: flex;
    align-items: center;
    justify-content: center;

    min-height: 55px;

    color: var(--color-orange);
    font-size: 2.8rem;
    line-height: 1;
}

.process-item__content h2 {
    margin: 0 0 0.65rem;

    color: #ffffff;
    font-family: var(--font-body);
    font-size: 0.95rem;
    font-weight: 700;
    line-height: 1.2;
    letter-spacing: 0.03em;
    text-transform: uppercase;
}

.process-item__content p {
    margin: 0;

    color: rgba(255, 255, 255, 0.72);
    font-size: 0.83rem;
    line-height: 1.65;
}

/* ==========================================================
   SERVICES PREVIEW
========================================================== */

.services-preview {
    padding: 5.5rem 0;
    background: var(--color-cream);
}

.services-preview__inner {
    display: grid;
    grid-template-columns: minmax(260px, 0.75fr) minmax(0, 1.65fr);
    gap: 4rem;
    align-items: center;
}

.services-preview__content {
    max-width: 380px;
}

.services-preview__content h2 {
    margin: 0;
    font-family: var(--font-heading);
    font-size: clamp(2.2rem, 3.5vw, 3.7rem);
    font-weight: 500;
    line-height: 1;
    text-transform: uppercase;
}

.services-preview__content > p:not(.section-label) {
    margin: 0 0 2rem;
    line-height: 1.7;
}

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

.service-card {
    position: relative;
    min-height: 230px;
    overflow: hidden;
    color: white;
}

.service-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 400ms ease;
}

.service-card__overlay {
    position: absolute;
    inset: 0;

    background: linear-gradient(
        to top,
        rgba(0, 0, 0, 0.82) 0%,
        rgba(0, 0, 0, 0.3) 65%,
        rgba(0, 0, 0, 0.12) 100%
    );
}

.service-card__content {
    position: absolute;
    left: 1.7rem;
    right: 1.7rem;
    bottom: 1.6rem;

    display: flex;
    align-items: center;
    gap: 1.2rem;
}

.service-card__icon {
    flex-shrink: 0;
    font-size: 2.3rem;
    line-height: 1;
}

.service-card h3 {
    margin: 0;
    font-family: var(--font-body);
    font-size: 1.15rem;
    font-weight: 700;
    line-height: 1.2;
    text-transform: uppercase;
}

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

/* ==========================================================
   IMPACT
========================================================== */

.impact{

    padding:6rem 0;

    background:#1d1d1d;

    color:white;

}
.impact__inner{
    display:grid;
    grid-template-columns:1.6fr 1fr;
    gap:2rem;
    align-items:center;
}

.impact__intro{

    display:flex;

    align-items:center;

    gap:2rem;

}

.impact__logo{

    width:120px;

    flex-shrink:0;

}

.impact__intro h2{

    margin:0;

    font-size:3rem;

    line-height:1;

    color:white;

}

.impact__stats{

    display:grid;

    grid-template-columns:repeat(4,1fr);

}

.stat{

    text-align:center;

    padding-inline:2rem;

}

.stat:not(:last-child){

    border-right:1px solid rgba(201,106,44,.35);

}

.stat img{

    width:44px;

    margin:0 auto 1.2rem;

}

.stat h3{

    margin:0;

    font-size:3rem;

    font-weight:400;

    font-family:var(--font-heading);

}

.stat p{

    margin:.8rem 0;

    font-size:.95rem;

    font-weight:600;

    text-transform:uppercase;

    line-height:1.5;

}

.stat span{

    color:#9d9d9d;

    font-size:.9rem;

}

/* ==========================================================
   PROJECTS SHOWCASE
========================================================== */

.projects-showcase {
    display: grid;
    grid-template-columns: 1fr 1fr;
    min-height: 530px;
    background: var(--color-cream);
}

.projects-showcase__image {
    min-height: 530px;
    overflow: hidden;
}

.projects-showcase__image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.projects-showcase__content {
    position: relative;

    display: flex;
    align-items: center;

    padding: 5rem clamp(3rem, 7vw, 8rem);

    overflow: hidden;
}

.projects-showcase__text {
    position: relative;
    z-index: 2;

    width: min(100%, 560px);
}

.projects-showcase__content h2 {
    margin: 0 0 2rem;

    font-family: var(--font-heading);
    font-size: clamp(2.5rem, 4vw, 4.2rem);
    font-weight: 500;
    line-height: 0.98;

    text-transform: uppercase;
}

.projects-showcase__description {
    max-width: 520px;
    margin: 0 0 2rem;

    font-size: 1rem;
    line-height: 1.7;
}

.projects-showcase__navigation {
    display: flex;
    align-items: center;
    gap: 1.8rem;

    margin-top: 2rem;
}

.project-arrow {
    width: 48px;
    height: 48px;

    display: grid;
    place-items: center;

    border: 1px solid var(--color-orange);
    border-radius: 50%;

    background: transparent;
    color: var(--color-orange);

    font-size: 2rem;
    line-height: 1;

    cursor: pointer;

    transition:
        background-color 200ms ease,
        color 200ms ease,
        transform 200ms ease;
}

.project-arrow:hover {
    background: var(--color-orange);
    color: white;
    transform: translateY(-2px);
}

.project-counter {
    display: flex;
    align-items: baseline;
    gap: 1rem;
}

.project-counter strong {
    font-family: var(--font-heading);
    font-size: 2.4rem;
    font-weight: 500;
}

.project-counter span {
    color: var(--color-muted);
    font-size: 0.9rem;
}

.projects-showcase__watermark {
    position: absolute;
    right: -2rem;
    bottom: -1rem;

    width: 230px;

    opacity: 0.06;
    pointer-events: none;
}
.projects-showcase__image img,
.projects-showcase__text h2,
.projects-showcase__description {
    transition:
        opacity 180ms ease,
        transform 180ms ease;
}

.projects-showcase__image img.is-changing,
.projects-showcase__text h2.is-changing,
.projects-showcase__description.is-changing {
    opacity: 0;
    transform: translateY(8px);
}


/* ==========================================================
   CTA BANNER
========================================================== */

.cta-banner{

    background:linear-gradient(
        90deg,
        #8d3d23,
        var(--color-orange)
    );

    padding:2rem 0;

}
.cta-banner__inner{

    display:grid;

    grid-template-columns:2fr 1fr auto;

    gap:3rem;

    align-items:center;

}
.cta-banner__left{

    display:flex;

    align-items:center;

    gap:1.5rem;

}
.cta-banner__icon{

    width:54px;

    flex-shrink:0;

}
.cta-banner__left h2{

    margin:0;

    color:white;

    font-family:var(--font-heading);

    font-size:2.4rem;

    font-weight:500;

    line-height:1.1;

    text-transform:uppercase;

}
.cta-banner__text{

    margin:0;

    color:white;

    line-height:1.6;

}
.cta-banner .btn{

    white-space:nowrap;

}

/* ==========================================================
   FOOTER
========================================================== */

.site-footer {
    padding: 4.5rem 0 1.5rem;
    background: #1d1d1d;
    color: white;
}

.site-footer__main {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr 1.2fr 1.3fr;
    gap: 3rem;
    align-items: start;
}

.site-footer__brand,
.site-footer__column {
    min-width: 0;
}

.site-footer__brand {
    padding-right: 2rem;
}

.site-footer__logo {
    width: 230px;
    max-width: 100%;
}

.site-footer__socials {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    margin-top: 1.5rem;
}

.site-footer__socials a {
    display: grid;
    place-items: center;

    width: 34px;
    height: 34px;

    font-size: 1rem;
    font-weight: 700;

    transition:
        color 200ms ease,
        transform 200ms ease;
}

.site-footer__socials a:hover {
    color: var(--color-orange);
    transform: translateY(-2px);
}

.site-footer__column {
    position: relative;
    display: flex;
    flex-direction: column;
    gap: 0.55rem;
    padding-left: 2.5rem;
}

.site-footer__column::before {
    content: "";
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;

    width: 1px;

    background: rgba(201, 106, 44, 0.35);
}

.site-footer__column h2 {
    margin: 0 0 0.8rem;

    font-family: var(--font-body);
    font-size: 0.9rem;
    font-weight: 700;
    letter-spacing: 0.04em;
    text-transform: uppercase;
}

.site-footer__column a,
.site-footer__column p {
    margin: 0;
    color: rgba(255, 255, 255, 0.72);
    font-size: 0.9rem;
    line-height: 1.55;
}

.site-footer__column a {
    transition: color 200ms ease;
}

.site-footer__column a:hover {
    color: var(--color-orange);
}

.site-footer__contact {
    gap: 1rem;
}

.site-footer__contact p {
    display: flex;
    align-items: flex-start;
    gap: 0.85rem;
}

.site-footer__contact p > span:first-child {
    flex-shrink: 0;
    color: var(--color-orange);
    font-size: 1.2rem;
}

.site-footer__bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 2rem;

    margin-top: 3rem;
    padding-top: 1.25rem;

    border-top: 1px solid rgba(201, 106, 44, 0.35);
}

.site-footer__bottom p,
.site-footer__bottom a {
    margin: 0;
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.72rem;
    text-transform: uppercase;
}

.site-footer__legal {
    display: flex;
    gap: 2.5rem;
}

.site-footer__bottom a {
    transition: color 200ms ease;
}

.site-footer__bottom a:hover {
    color: white;
}

/* ==========================================================
   HERO DES PAGES INTÉRIEURES
========================================================== */

.page-hero {
    position: relative;
    min-height: 540px;

    display: flex;
    align-items: center;

    overflow: hidden;
    background: var(--color-dark);
}

.page-hero__image {
    position: absolute;
    inset: 0;

    width: 100%;
    height: 100%;

    object-fit: cover;
    object-position: center;
}

.page-hero__overlay {
    position: absolute;
    inset: 0;

    background:
        linear-gradient(
            90deg,
            rgba(5, 7, 7, 0.98) 0%,
            rgba(5, 7, 7, 0.88) 30%,
            rgba(5, 7, 7, 0.42) 58%,
            rgba(5, 7, 7, 0.08) 100%
        );
}

.page-hero__inner {
    position: relative;
    z-index: 2;

    width: 100%;
}

.page-hero__content {
    max-width: 720px;
    padding: 50px 25px 50px;
}

.page-hero h1 {
    max-width: 850px;
    margin: 0;

    color: #ffffff;
    font-family: var(--font-heading);
    font-size: clamp(3rem, 5vw, 5.2rem);
    font-weight: 500;
    line-height: 0.98;
}

.page-hero h1 span {
    display: block;
    margin-top: 8px;
    color: #ffffff;
}

.page-hero h1 strong {
    color: var(--color-orange);
    font-weight: inherit;
}

.page-hero .accent {
    color: var(--color-orange) !important;
}

.page-hero__description {
    max-width: 570px;
    margin: 32px 0;

    color: #ffffff;
    font-size: 1.1rem;
    line-height: 1.8;
}

.page-hero__description2 {
    max-width: 570px;
    margin: 32px 0;

    color: #272222;
    font-size: 1.1rem;
    line-height: 1.8;
}

.page-hero .section-label {
    margin-bottom: 22px;
    color: var(--color-orange);
}

.page-hero__button {
    border-color: var(--color-orange);
    color: #ffffff;
}

.page-hero__button:hover {
    background: var(--color-orange);
    color: var(--color-dark);
}

/* ==========================================================
   NOTRE HISTOIRE
========================================================== */

.story-section {
    display: grid;
    grid-template-columns: 48% 52%;
    min-height: 540px;
    background: var(--color-light);
}

.story-section__content {
    display: flex;
    align-items: center;
    padding: 80px max(5vw, 40px);
}

.story-section__text {
    max-width: 560px;
    margin-left: auto;
}

.story-section .section-label {
    margin-bottom: 18px;
    color: var(--color-orange);
}

.story-section h2 {
    margin: 0;
    max-width: 540px;

    font-family: var(--font-heading);
    font-size: clamp(2.7rem, 4vw, 4.6rem);
    line-height: 1;
}

.story-section .section-divider {
    width: 72px;
    height: 3px;

    margin: 28px 0;

    background: var(--color-orange);
}

.story-section__text p:not(.section-label) {
    margin-bottom: 18px;
    line-height: 1.7;
}

.story-section__image {
    overflow: hidden;

 clip-path: polygon(
    12% 0,
    100% 0,
    100% 100%,
    0 100%
    );
}

.story-section__image img {
    width: 100%;
    height: 100%;

    display: block;
    object-fit: cover;
}

/* ==========================================================
   NOS ENGAGEMENTS
========================================================== */

.commitments-section {
    padding: 5rem 0;
    background: var(--color-dark);
}

.commitments-section .section-label {
    margin-bottom: 1.25rem;
    color: var(--color-orange);
}

.commitments-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 1rem;
}

.commitment-card {
    min-height: 300px;

    display: flex;
    flex-direction: column;
    align-items: center;

    padding: 2.25rem 1.75rem 1.5rem;

    background: #f8f5ef;
    border: 1px solid rgba(30, 30, 30, 0.1);
    border-radius: 6px;

    text-align: center;

    box-shadow:
        0 8px 24px rgba(0, 0, 0, 0.05);

    transition:
        transform 220ms ease,
        box-shadow 220ms ease;
}

.commitment-card:hover {
    transform: translateY(-4px);

    box-shadow:
        0 14px 30px rgba(0, 0, 0, 0.08);
}

.commitment-card__icon {
    min-height: 64px;

    display: grid;
    place-items: center;

    margin-bottom: 1rem;

    color: var(--color-orange);
    font-size: 3rem;
    line-height: 1;
}

.commitment-card h2 {
    margin: 0 0 1rem;

    color: var(--color-dark);
    font-family: var(--font-body);
    font-size: 1rem;
    font-weight: 700;
    letter-spacing: 0.03em;
    text-transform: uppercase;
}

.commitment-card p {
    max-width: 280px;
    margin: 0 auto;

    color: var(--color-dark);
    font-size: 0.95rem;
    line-height: 1.55;
}

.commitment-card__line {
    width: 64px;
    height: 3px;

    margin-top: auto;

    background: var(--color-orange);
}

/* ==========================================================
   HERO SPLIT
========================================================== */

.page-hero--split{

    display:grid;
    grid-template-columns:42% 58%;

    min-height:560px;

    background:var(--color-cream);

}

.page-hero__panel{

    display:flex;
    align-items:center;

    background:#efe8de;   /* un peu plus foncé que le fond */

}

.page-hero__panel .page-hero__content{

    width:min(520px,100%);
    margin-left:auto;

    padding:70px 70px;

}

.page-hero__visual{

    overflow:hidden;

    clip-path:polygon(
        12% 0,
        100% 0,
        100% 100%,
        0 100%
    );

}

.page-hero__visual img{

    width:100%;
    height:100%;

    display:block;

    object-fit:cover;

}
.page-hero--split h1{

    margin:0;

    font-family:var(--font-heading);

    font-size:clamp(3rem,4vw,4.7rem);

    line-height:.95;

}

.page-hero--split h1 span{

    display:block;

    color:var(--color-dark);

}

.page-hero--split h1 strong{

    display:block;

    color:var(--color-orange);

    font-weight:500;

}
.page-hero--split .page-hero__description{

    max-width:420px;

    margin-top:2rem;

    line-height:1.8;

}

/* ==========================================================
   VARIANTE HERO SERVICES
========================================================== */

.page-hero--services-angle .page-hero__panel {
    position: relative;
    z-index: 2;
}

.page-hero--services-angle .page-hero__panel::after {
    content: "";

    position: absolute;
    top: 0;
    right: -120px;

    width: 180px;
    height: 100%;

    background: #efe8de;

    clip-path: polygon(
        0 0,
        100% 0,
        55% 100%,
        0 100%
    );

    pointer-events: none;
}

.page-hero--services-angle .page-hero__visual {
    position: relative;
    z-index: 1;

    clip-path: none;
}

/* ==========================================================
   PROCESSUS DES SERVICES
========================================================== */

.service-process {
    padding: 2rem 0 2rem;
    background: var(--color-cream);
}

.service-process__heading {
    display: flex;
    flex-direction: column;
    align-items: center;

    margin-bottom: 2.5rem;

    text-align: center;
}

.service-process__heading .section-label {
    margin-bottom: 0.55rem;
    color: var(--color-orange);
}

.service-process__heading-line {
    width: 34px;
    height: 2px;

    background: var(--color-orange);
}

.service-process__grid {
    display: grid;
    grid-template-columns:
        minmax(0, 1fr)
        auto
        minmax(0, 1fr)
        auto
        minmax(0, 1fr)
        auto
        minmax(0, 1fr)
        auto
        minmax(0, 1fr);

    align-items: stretch;
}

.service-step {
    position: relative;

    display: flex;
    flex-direction: column;
    align-items: center;

    min-width: 0;
    padding: 0 1.75rem;

    text-align: center;
}

.service-step:not(:first-child)::before {
    content: "";

    position: absolute;
    top: 0.4rem;
    bottom: 0;
    left: 0;

    width: 1px;

    background: rgba(201, 106, 44, 0.22);
}

.service-step__icon {
    min-height: 70px;

    display: grid;
    place-items: center;

    margin-bottom: 0.9rem;

    color: var(--color-orange);
    font-size: 3rem;
    line-height: 1;
}

.service-step h2 {
    margin: 0 0 0.9rem;

    color: var(--color-dark);
    font-family: var(--font-body);
    font-size: 0.95rem;
    font-weight: 700;
    letter-spacing: 0.03em;
    text-transform: uppercase;
}

.service-step p {
    max-width: 210px;
    margin: 0 auto;

    color: var(--color-dark);
    font-size: 0.88rem;
    line-height: 1.6;
}

.service-process__arrow {
    align-self: center;

    margin-top: -1rem;
    padding: 0 0.35rem;

    color: var(--color-orange);
    font-size: 2rem;
    line-height: 1;
}

/* ==========================================================
   SERVICES CONCRETS
========================================================== */

.services-concrete {
    padding: 2rem 0;
    background: var(--color-cream);
}

.services-concrete__heading {
    display: flex;
    flex-direction: column;
    align-items: center;

    margin-bottom: 2rem;

    text-align: center;
}

.services-concrete__heading .section-label {
    margin-bottom: 0.55rem;
    color: var(--color-orange);
}

.services-concrete__line {
    width: 34px;
    height: 2px;

    background: var(--color-orange);
}

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

.concrete-service-card {
    position: relative;

    min-height: 240px;
    overflow: hidden;

    background: var(--color-dark);
    color: #ffffff;
}

.concrete-service-card img {
    position: absolute;
    inset: 0;

    width: 100%;
    height: 100%;

    object-fit: cover;

    transition: transform 350ms ease;
}

.concrete-service-card__overlay {
    position: absolute;
    inset: 0;

    background:
        linear-gradient(
            90deg,
            rgba(8, 8, 8, 0.92) 0%,
            rgba(8, 8, 8, 0.78) 48%,
            rgba(8, 8, 8, 0.42) 100%
        );
}

.concrete-service-card__content {
    position: relative;
    z-index: 2;

    min-height: 240px;

    display: grid;
    grid-template-columns: 58px 1fr;
    gap: 1.25rem;
    align-items: center;

    padding: 2rem;
}

.concrete-service-card__icon {
    display: grid;
    place-items: center;

    color: var(--color-orange);
    font-size: 2.7rem;
    line-height: 1;
}

.concrete-service-card h2 {
    margin: 0 0 1rem;

    color: #ffffff;
    font-family: var(--font-heading);
    font-size: clamp(1.55rem, 2vw, 2rem);
    font-weight: 500;
    line-height: 1.05;
    text-transform: uppercase;
}

.concrete-service-card p {
    max-width: 330px;
    margin: 0;

    color: rgba(255, 255, 255, 0.78);
    font-size: 0.9rem;
    line-height: 1.6;
}

.concrete-service-card:hover img {
    transform: scale(1.05);
}

/* ==========================================================
   MATÉRIAUX ACCEPTÉS
========================================================== */

.accepted-materials {
    padding: 4.5rem 0 3.5rem;
    background: var(--color-light);
}

.accepted-materials__heading {
    display: flex;
    flex-direction: column;
    align-items: center;

    margin-bottom: 2.5rem;

    text-align: center;
}

.accepted-materials__heading .section-label {
    margin-bottom: 0.55rem;
    color: var(--color-orange);
}

.accepted-materials__heading-line {
    width: 34px;
    height: 2px;

    background: var(--color-orange);
}

.accepted-materials__grid {
    display: grid;
    grid-template-columns: repeat(8, minmax(0, 1fr));

    border-top: 1px solid rgba(30, 30, 30, 0.08);
    border-bottom: 1px solid rgba(30, 30, 30, 0.08);
}

.accepted-material {
    position: relative;

    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;

    min-height: 145px;
    padding: 1.5rem 1rem;

    text-align: center;
}

.accepted-material:not(:last-child)::after {
    content: "";

    position: absolute;
    top: 18%;
    right: 0;
    bottom: 18%;

    width: 1px;

    background: rgba(201, 106, 44, 0.22);
}

.accepted-material__icon {
    min-height: 58px;

    display: grid;
    place-items: center;

    margin-bottom: 0.8rem;

    color: var(--color-orange);
    font-size: 2.7rem;
    line-height: 1;
}

.accepted-material h2 {
    margin: 0;

    color: var(--color-dark);
    font-family: var(--font-body);
    font-size: 0.85rem;
    font-weight: 700;
    letter-spacing: 0.025em;
    text-transform: uppercase;
}

.accepted-materials__note {
    margin: 1.8rem 0 0;

    color: var(--color-dark);
    font-size: 1rem;
    line-height: 1.6;
    text-align: center;
}

/* ==========================================================
   HERO MATÉRIAUX
========================================================== */

.materials-hero{

    position:relative;

    min-height:500px;

    display:flex;
    align-items:center;

    overflow:hidden;

}

.materials-hero img{

    position:absolute;
    inset:0;

    width:100%;
    height:100%;

    object-fit:cover;

}

.materials-hero__overlay{

    position:absolute;
    inset:0;

    background:
        linear-gradient(
            90deg,
            rgba(12,12,12,.88) 0%,
            rgba(12,12,12,.72) 34%,
            rgba(12,12,12,.18) 70%,
            rgba(12,12,12,0) 100%
        );

}

.materials-hero .container{

    position:relative;
    z-index:2;

}

.materials-hero__content{

    width:min(560px,100%);

}

.materials-hero h1{

    margin:0;

    color:white;

    font-family:var(--font-heading);

    font-size:clamp(3.4rem,5vw,5.2rem);

    line-height:.95;

}

.materials-hero h1 span{

    color:var(--color-orange);

}

.materials-hero .section-divider{

    margin:2rem 0;

}

.materials-hero p{

    max-width:380px;

    color:rgba(255,255,255,.88);

    font-size:1.15rem;
    line-height:1.8;

}

/* ==========================================================
   PHILOSOPHIE DES MATÉRIAUX
========================================================== */

.materials-philosophy {
    display: grid;
    grid-template-columns: 46% 54%;

    min-height: 420px;

    background: var(--color-light);
}

.materials-philosophy__content {
    display: flex;
    align-items: center;

    padding: 70px max(5vw, 40px);
}

.materials-philosophy__text {
    width: min(520px, 100%);
    margin-left: auto;
}

.materials-philosophy .section-label {
    margin-bottom: 0.65rem;
    color: var(--color-orange);
}

.materials-philosophy .section-divider {
    width: 38px;
    height: 2px;

    margin: 0 0 1.5rem;

    background: var(--color-orange);
}

.materials-philosophy h2 {
    max-width: 500px;
    margin: 0 0 1.5rem;

    color: var(--color-dark);
    font-family: var(--font-heading);
    font-size: clamp(2.5rem, 3.8vw, 4rem);
    font-weight: 500;
    line-height: 1;
}

.materials-philosophy__text > p:not(.section-label) {
    max-width: 440px;
    margin: 0;

    color: var(--color-dark);
    font-size: 1rem;
    line-height: 1.75;
}

.materials-philosophy__image {
    min-height: 420px;
    overflow: hidden;
}

.materials-philosophy__image img {
    width: 100%;
    height: 100%;

    display: block;
    object-fit: cover;
    object-position: center;
}

/* ==========================================================
   CATÉGORIES DE MATÉRIAUX
========================================================== */

.materials-categories{

    padding:2rem 0;

    background:#efe8de;

}

.materials-categories__heading{

    display:flex;
    flex-direction:column;
    align-items:center;

    margin-bottom:3rem;

    text-align:center;

}

.materials-categories__heading .section-label{

    margin-bottom:.6rem;

    color:var(--color-orange);

}

.materials-categories__line{

    width:36px;
    height:2px;

    background:var(--color-orange);

}

.materials-categories__grid{

    display:grid;
    grid-template-columns:repeat(6,1fr);

    border:1px solid rgba(0,0,0,.08);

    background:#f4eee6;

}

.material-category{

    position:relative;

    display:flex;
    flex-direction:column;
    align-items:center;

    padding:2.5rem 1.5rem;

    text-align:center;

}

.material-category:not(:last-child)::after{

    content:"";

    position:absolute;

    top:18%;
    right:0;

    width:1px;
    height:64%;

    background:rgba(0,0,0,.08);

}

.material-category__icon{

    margin-bottom:1.2rem;

    color:var(--color-orange);

    font-size:3rem;

}

.material-category h2{

    margin:0 0 1.25rem;

    font-size:1rem;
    font-weight:700;

    text-transform:uppercase;

    color:var(--color-dark);

}

.material-category ul{

    margin:0;
    padding:0;

    list-style:none;

}

.material-category li{

    margin:.45rem 0;

    color:var(--color-dark);

    font-size:.95rem;
    line-height:1.5;

}

/* ==========================================================
   TRANSFORMATION DES MATÉRIAUX
========================================================== */

.material-transformations {
    padding: 5rem 0;
    background: var(--color-light);
}

.material-transformations__heading {
    display: flex;
    flex-direction: column;
    align-items: center;

    margin-bottom: 2.75rem;

    text-align: center;
}

.material-transformations__heading .section-label {
    margin-bottom: 0.55rem;
    color: var(--color-orange);
}

.material-transformations__line {
    width: 36px;
    height: 2px;

    background: var(--color-orange);
}

.material-transformations__grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
}

.transformation-group {
    position: relative;

    display: grid;
    grid-template-columns:
        minmax(0, 1fr)
        auto
        minmax(0, 1fr)
        auto
        minmax(0, 1fr);

    gap: 0.65rem;
    align-items: center;

    padding: 0 1.4rem;
}

.transformation-group:not(:last-child)::after {
    content: "";

    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;

    width: 1px;

    background: rgba(30, 30, 30, 0.12);
}

.transformation-step {
    min-width: 0;
    text-align: center;
}

.transformation-step img {
    width: 100%;
    aspect-ratio: 4 / 5;

    display: block;

    margin-bottom: 1rem;

    object-fit: cover;
}

.transformation-step h2 {
    margin: 0 0 0.25rem;

    color: var(--color-dark);
    font-family: var(--font-body);
    font-size: 0.92rem;
    font-weight: 700;
}

.transformation-step p {
    margin: 0;

    color: var(--color-muted);
    font-size: 0.78rem;
}

.transformation-arrow {
    margin-top: -2.3rem;

    color: var(--color-dark);
    font-size: 1.4rem;
    line-height: 1;
}

/* ==========================================================
   ÉVALUATION D’UN MATÉRIAU
========================================================== */

.material-evaluation {
    padding: 2.5rem 0 3.5rem;
    background: var(--color-light);
}

.material-evaluation__inner {
    display: grid;
    grid-template-columns: 1.2fr 1fr auto;
    gap: 3rem;
    align-items: center;

    padding: 2.2rem 3rem;

    background: #efe8de;
}

.material-evaluation__intro {
    display: grid;
    grid-template-columns: 78px 1fr;
    gap: 1.5rem;
    align-items: center;

    padding-right: 3rem;

    border-right: 1px solid rgba(30, 30, 30, 0.12);
}

.material-evaluation__icon {
    display: grid;
    place-items: center;

    color: var(--color-orange);
    font-size: 4rem;
    line-height: 1;
}

.material-evaluation h2 {
    margin: 0;

    color: var(--color-dark);
    font-family: var(--font-heading);
    font-size: clamp(2rem, 3vw, 3rem);
    font-weight: 500;
    line-height: 0.95;
}

.material-evaluation__text p {
    margin: 0;

    color: var(--color-dark);
    font-size: 1rem;
    line-height: 1.7;
}

.material-evaluation__button {
    min-width: 280px;
    justify-content: center;
    white-space: nowrap;
}

/* ==========================================================
   RÉALISATIONS AVANT / APRÈS
========================================================== */

.materials-results {
    padding: 4.5rem 0;
    background: var(--color-light);
}

.materials-results__heading {
    display: flex;
    flex-direction: column;
    align-items: center;

    margin-bottom: 2.5rem;

    text-align: center;
}

.materials-results__heading .section-label {
    margin-bottom: 0.55rem;
    color: var(--color-orange);
}

.materials-results__line {
    width: 36px;
    height: 2px;

    background: var(--color-orange);
}

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

.result-pair {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto minmax(0, 1fr);
    align-items: center;
}

.result-card {
    position: relative;

    aspect-ratio: 4 / 3;
    overflow: hidden;

    background: var(--color-dark);
}

.result-card img {
    width: 100%;
    height: 100%;

    display: block;
    object-fit: cover;

    transition: transform 350ms ease;
}

.result-card:hover img {
    transform: scale(1.04);
}

.result-card__label {
    position: absolute;
    z-index: 2;
    top: 0.75rem;
    left: 0.75rem;

    color: #ffffff;
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;

    text-shadow: 0 1px 5px rgba(0, 0, 0, 0.65);
}

.result-pair__arrow {
    position: relative;
    z-index: 3;

    width: 42px;
    height: 42px;

    display: grid;
    place-items: center;

    margin: 0 -10px;

    border-radius: 50%;

    background: var(--color-light);
    color: var(--color-dark);

    font-size: 1.3rem;

    box-shadow: 0 4px 14px rgba(0, 0, 0, 0.12);
}

/* ==========================================================
   CTA FINAL MATÉRIAUX
========================================================== */

.materials-final-cta {
    padding: 2.25rem 0;

    background:
        linear-gradient(
            90deg,
            #b84927,
            var(--color-orange)
        );
}

.materials-final-cta__inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 3rem;
}

.materials-final-cta h2 {
    max-width: 760px;
    margin: 0;

    color: #ffffff;
    font-family: var(--font-heading);
    font-size: clamp(2rem, 3vw, 3rem);
    font-weight: 500;
    line-height: 1.05;
}

.materials-final-cta__button {
    flex-shrink: 0;

    border-color: rgba(255, 255, 255, 0.8);
    color: #ffffff;
}

.materials-final-cta__button:hover {
    background: #ffffff;
    color: var(--color-orange);
}

/* ==========================================================
   HERO NOS PROJETS
========================================================== */

.projects-hero {
    position: relative;

    min-height: 500px;

    display: flex;
    align-items: center;

    overflow: hidden;

    background: var(--color-light);
}

.projects-hero > img {
    position: absolute;
    inset: 0;

    width: 100%;
    height: 100%;

    display: block;

    object-fit: cover;
    object-position: center;
}

.projects-hero__overlay {
    position: absolute;
    inset: 0;

    background:
        linear-gradient(
            90deg,
            #f2ede5 0%,
            rgba(242, 237, 229, 0.98) 32%,
            rgba(242, 237, 229, 0.86) 43%,
            rgba(242, 237, 229, 0.30) 57%,
            rgba(242, 237, 229, 0) 72%
        );
}

.projects-hero .container {
    position: relative;
    z-index: 2;
    padding-left: 2rem;
    width: 100%;
}

.projects-hero__content {
    max-width: 590px;
}

.projects-hero h1 {
    margin: 0;

    color: var(--color-dark);
    font-family: var(--font-heading);
    font-size: clamp(4rem, 7vw, 7rem);
    font-weight: 600;
    line-height: 0.9;
    letter-spacing: 0.02em;
    text-transform: uppercase;
}

.projects-hero__line {
    display: block;

    width: 52px;
    height: 2px;

    margin: 2rem 0;

    background: var(--color-orange);
}

.projects-hero p {
    max-width: 520px;
    margin: 0;

    color: var(--color-dark);
    font-size: clamp(1.6rem, 2.5vw, 2.4rem);
    font-weight: 600;
    line-height: 1.25;
}

/* ==========================================================
   STATISTIQUES PROJETS
========================================================== */

.projects-stats {
    padding: 2rem 0;

    background: #202020;
}

.projects-stats__grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
}

.project-stat {
    position: relative;

    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;

    min-height: 110px;
    padding: 1rem 2rem;

    text-align: center;
}

.project-stat:not(:last-child)::after {
    content: "";

    position: absolute;
    top: 18%;
    right: 0;
    bottom: 18%;

    width: 1px;

    background: rgba(201, 106, 44, 0.45);
}

.project-stat strong {
    margin-bottom: 0.45rem;

    color: var(--color-orange);
    font-family: var(--font-body);
    font-size: clamp(1.8rem, 3vw, 2.7rem);
    font-weight: 500;
    line-height: 1;
}

.project-stat span {
    color: #ffffff;
    font-size: 1rem;
    line-height: 1.4;
}

/* ==========================================================
   RÉALISATIONS
========================================================== */

.projects-realizations {
    padding: 5rem 0;

    background: var(--color-light);
}

.projects-realizations__heading {
    display: flex;
    flex-direction: column;
    align-items: center;

    margin-bottom: 2.5rem;

    text-align: center;
}

.projects-realizations__heading h2 {
    margin: 0 0 0.75rem;

    color: var(--color-dark);
    font-family: var(--font-body);
    font-size: clamp(1.8rem, 3vw, 2.5rem);
    font-weight: 700;
    letter-spacing: 0.05em;
    text-transform: uppercase;
}

.projects-realizations__line {
    width: 36px;
    height: 2px;

    background: var(--color-orange);
}

.projects-realizations__grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));

    max-width: 1120px;
    margin: 0 auto;
}

.project-realization-card {
    display: grid;
    grid-template-columns: 110px 1fr;
    gap: 2rem;
    align-items: center;

    min-height: 210px;
    padding: 2.5rem 3rem;

    border: 1px solid rgba(30, 30, 30, 0.16);

    background: rgba(255, 255, 255, 0.18);
}

.project-realization-card__icon {
    display: grid;
    place-items: center;

    color: var(--color-orange);
    font-size: 4rem;
    line-height: 1;
}

.project-realization-card h3 {
    margin: 0 0 1rem;

    color: var(--color-dark);
    font-family: var(--font-body);
    font-size: 1.25rem;
    font-weight: 700;
    letter-spacing: 0.02em;
    text-transform: uppercase;
}

.project-realization-card p {
    max-width: 360px;
    margin: 0;

    color: var(--color-dark);
    font-size: 1rem;
    line-height: 1.65;
}

/* ==========================================================
   PROJETS EN VEDETTE
========================================================== */

.featured-projects {
    padding: 5rem 0;
    background: #eee7dd;
}

.featured-projects__heading {
    display: flex;
    flex-direction: column;
    align-items: center;

    margin-bottom: 2.5rem;

    text-align: center;
}

.featured-projects__heading .section-label {
    margin-bottom: 0.55rem;
    color: var(--color-orange);
}

.featured-projects__line {
    width: 36px;
    height: 2px;

    background: var(--color-orange);
}

.featured-projects__slider {
    display: grid;
    grid-template-columns: 58% 42%;

    max-width: 1200px;
    min-height: 520px;
    margin: 0 auto;

    background: var(--color-light);

    box-shadow: 0 14px 35px rgba(0, 0, 0, 0.08);
}

.featured-projects__image {
    min-height: 520px;
    overflow: hidden;
}

.featured-projects__image img {
    width: 100%;
    height: 100%;

    display: block;

    object-fit: cover;

    transition:
        opacity 200ms ease,
        transform 500ms ease;
}

.featured-projects__slider:hover .featured-projects__image img {
    transform: scale(1.025);
}

.featured-projects__content {
    display: flex;
    flex-direction: column;
    justify-content: center;

    padding: 4rem;
}

.featured-projects__number {
    display: flex;
    gap: 0.55rem;

    margin: 0 0 1.5rem;

    color: var(--color-orange);
    font-size: 0.9rem;
    font-weight: 700;
    letter-spacing: 0.08em;
}

.featured-projects__content h2 {
    margin: 0 0 0.6rem;

    color: var(--color-dark);
    font-family: var(--font-heading);
    font-size: clamp(2.5rem, 4vw, 4rem);
    font-weight: 500;
    line-height: 1;
}

.featured-projects__category {
    margin: 0 0 1.75rem;

    color: var(--color-orange);
    font-size: 0.85rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.featured-projects__content > p:not(
    .featured-projects__number,
    .featured-projects__category,
    .featured-projects__materials
) {
    max-width: 470px;
    margin: 0 0 1.5rem;

    color: var(--color-dark);
    font-size: 1rem;
    line-height: 1.75;
}

.featured-projects__materials {
    margin: 0;

    color: var(--color-dark);
    font-size: 0.9rem;
    line-height: 1.6;
}

.featured-projects__controls {
    display: flex;
    align-items: center;
    gap: 1rem;

    margin-top: 2.5rem;
}

.featured-projects__button {
    width: 46px;
    height: 46px;

    display: grid;
    place-items: center;

    padding: 0;

    border: 1px solid var(--color-orange);
    border-radius: 50%;

    background: transparent;
    color: var(--color-orange);

    font-size: 1.25rem;
    cursor: pointer;

    transition:
        background 180ms ease,
        color 180ms ease;
}

.featured-projects__button:hover {
    background: var(--color-orange);
    color: #ffffff;
}

.featured-projects__dots {
    display: flex;
    gap: 0.55rem;
}

.featured-projects__dot {
    width: 9px;
    height: 9px;

    padding: 0;

    border: 1px solid var(--color-orange);
    border-radius: 50%;

    background: transparent;
    cursor: pointer;
}

.featured-projects__dot.is-active {
    background: var(--color-orange);
}

/* ==========================================================
   HERO CARRIÈRE
========================================================== */

.career-hero {
    position: relative;

    min-height: 570px;

    display: flex;
    align-items: center;

    overflow: hidden;

    background: #171717;
}

.career-hero__image {
    position: absolute;
    inset: 0;

    width: 100%;
    height: 100%;

    display: block;

    object-fit: cover;
    object-position: center;
}

.career-hero__overlay {
    position: absolute;
    inset: 0;

    background:
        linear-gradient(
            90deg,
            rgba(8, 8, 8, 0.96) 0%,
            rgba(8, 8, 8, 0.88) 26%,
            rgba(8, 8, 8, 0.58) 43%,
            rgba(8, 8, 8, 0.10) 68%,
            rgba(8, 8, 8, 0) 100%
        );
}

.career-hero__container {
    position: relative;
    z-index: 2;
padding-left: 2rem;
    width: 100%;
}

.career-hero__content {
    width: min(520px, 100%);
}

.career-hero h1 {
    margin: 0;

    color: #ffffff;
    font-family: var(--font-heading);
    font-size: clamp(4rem, 6vw, 6.5rem);
    font-weight: 600;
    line-height: 0.9;
    letter-spacing: 0.02em;
    text-transform: uppercase;
}

.career-hero__line {
    display: block;

    width: 64px;
    height: 3px;

    margin: 1.8rem 0;

    background: var(--color-orange);
}

.career-hero h2 {
    max-width: 500px;
    margin: 0 0 1.7rem;

    color: #ffffff;
    font-family: var(--font-body);
    font-size: clamp(1.7rem, 2.5vw, 2.4rem);
    font-weight: 500;
    line-height: 1.35;
}

.career-hero p {
    max-width: 500px;
    margin: 0;

    color: rgba(255, 255, 255, 0.88);
    font-size: 1rem;
    line-height: 1.75;
}

/* ==========================================================
   VALEURS CARRIÈRE
========================================================== */

.career-values {
    padding: 4.5rem 0 4rem;
    background: var(--color-light);
}

.career-values__heading {
    display: flex;
    flex-direction: column;
    align-items: center;

    margin-bottom: 2.5rem;

    text-align: center;
}

.career-values__heading h2 {
    margin: 0 0 0.7rem;

    color: var(--color-dark);
    font-family: var(--font-body);
    font-size: clamp(1.8rem, 3vw, 2.5rem);
    font-weight: 700;
    letter-spacing: 0.04em;
    text-transform: uppercase;
}

.career-values__line {
    width: 38px;
    height: 2px;

    background: var(--color-orange);
}

.career-values__grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
}

.career-value {
    position: relative;

    display: flex;
    flex-direction: column;
    align-items: center;

    min-height: 210px;
    padding: 1rem 2.5rem;

    text-align: center;
}

.career-value:not(:last-child)::after {
    content: "";

    position: absolute;
    top: 10%;
    right: 0;
    bottom: 10%;

    width: 1px;

    background: rgba(30, 30, 30, 0.12);
}

.career-value__icon {
    min-height: 78px;

    display: grid;
    place-items: center;

    margin-bottom: 0.9rem;

    color: var(--color-orange);
    font-size: 3.8rem;
    line-height: 1;
}

.career-value h3 {
    margin: 0 0 0.8rem;

    color: var(--color-dark);
    font-family: var(--font-body);
    font-size: 1.15rem;
    font-weight: 700;
}

.career-value p {
    max-width: 250px;
    margin: 0;

    color: var(--color-dark);
    font-size: 0.95rem;
    line-height: 1.55;
}

/* ==========================================================
   POURQUOI TRAVAILLER CHEZ PHÉNIX
========================================================== */

.career-benefits {
    display: grid;
    grid-template-columns: 41% 59%;

    min-height: 520px;

    background: var(--color-light);
}

.career-benefits__content {
    display: flex;
    align-items: center;

    padding: 4.5rem max(5vw, 3rem);
}

.career-benefits__text {
    width: min(470px, 100%);
    margin-left: auto;
}

.career-benefits h2 {
    max-width: 400px;
    margin: 0;

    color: var(--color-dark);
    font-family: var(--font-body);
    font-size: clamp(2rem, 3.4vw, 3.2rem);
    font-weight: 700;
    line-height: 1.15;
    text-transform: uppercase;
}

.career-benefits__line {
    display: block;

    width: 48px;
    height: 2px;

    margin: 1.2rem 0 2rem;

    background: var(--color-orange);
}

.career-benefits__list {
    display: grid;
    gap: 1.35rem;

    margin: 0;
    padding: 0;

    list-style: none;
}

.career-benefits__list li {
    position: relative;

    padding-left: 2.5rem;

    color: var(--color-dark);
    font-size: 1rem;
    line-height: 1.55;
}

.career-benefits__list li::before {
    content: "✓";

    position: absolute;
    top: 0;
    left: 0;

    color: var(--color-orange);
    font-size: 1.3rem;
    font-weight: 700;
}

.career-benefits__image {
    min-height: 520px;
    overflow: hidden;
}

.career-benefits__image img {
    width: 100%;
    height: 100%;

    display: block;
    object-fit: cover;
    object-position: center;
}

/* ==========================================================
   POSTES OUVERTS
========================================================== */

.career-jobs {
    padding: 5rem 0;

    background: var(--color-light);
}

.career-jobs__heading {
    display: flex;
    flex-direction: column;
    align-items: center;

    margin-bottom: 2rem;

    text-align: center;
}

.career-jobs__heading h2 {
    margin: 0 0 0.65rem;

    color: var(--color-dark);
    font-family: var(--font-body);
    font-size: clamp(1.8rem, 3vw, 2.5rem);
    font-weight: 700;
    letter-spacing: 0.04em;
    text-transform: uppercase;
}

.career-jobs__line {
    width: 36px;
    height: 2px;

    margin-bottom: 1rem;

    background: var(--color-orange);
}

.career-jobs__heading p {
    margin: 0;

    color: var(--color-dark);
    font-size: 0.95rem;
    line-height: 1.6;
}

.career-jobs__list {
    max-width: 1180px;
    margin: 0 auto;

    border: 1px solid rgba(30, 30, 30, 0.08);

    background: rgba(255, 255, 255, 0.18);
}

.career-job {
    display: grid;
    grid-template-columns: 70px 1.25fr 0.8fr 1fr auto;
    align-items: center;

    min-height: 92px;
    padding: 1rem 1.5rem;
}

.career-job:not(:last-child) {
    border-bottom: 1px solid rgba(30, 30, 30, 0.08);
}

.career-job > *:not(:last-child) {
    position: relative;
}

.career-job > *:not(:last-child)::after {
    content: "";

    position: absolute;
    top: 50%;
    right: -1rem;

    width: 1px;
    height: 38px;

    background: rgba(30, 30, 30, 0.10);

    transform: translateY(-50%);
}

.career-job__icon {
    display: grid;
    place-items: center;

    color: var(--color-orange);
    font-size: 1.8rem;
}

.career-job h3 {
    margin: 0;
    padding: 0 2rem;

    color: var(--color-dark);
    font-family: var(--font-body);
    font-size: 1rem;
    font-weight: 700;
}

.career-job__location,
.career-job__type {
    padding: 0 2rem;

    color: var(--color-dark);
    font-size: 0.95rem;
}

.career-job__button {
    display: inline-flex;
    align-items: center;
    justify-content: space-between;
    gap: 1.5rem;

    min-width: 190px;
    padding: 0.85rem 1.25rem;

    border: 1px solid var(--color-orange);

    color: var(--color-orange);
    font-size: 0.85rem;
    font-weight: 700;
    letter-spacing: 0.03em;
    text-decoration: none;
    text-transform: uppercase;

    transition:
        background 180ms ease,
        color 180ms ease;
}

.career-job__button:hover {
    background: var(--color-orange);
    color: #ffffff;
}

/* ==========================================================
   HERO CONTACT
========================================================== */

.contact-hero {
    position: relative;

    min-height: 500px;

    display: flex;
    align-items: center;

    overflow: hidden;

    background: #171717;
}

.contact-hero__image {
    position: absolute;
    inset: 0;

    width: 100%;
    height: 100%;

    display: block;

    object-fit: cover;
    object-position: center;
}

.contact-hero__overlay {
    position: absolute;
    inset: 0;

    background:
        linear-gradient(
            90deg,
            rgba(8, 8, 8, 0.97) 0%,
            rgba(8, 8, 8, 0.90) 25%,
            rgba(8, 8, 8, 0.62) 42%,
            rgba(8, 8, 8, 0.18) 62%,
            rgba(8, 8, 8, 0) 78%
        );
}

.contact-hero__container {
    position: relative;
    z-index: 2;
padding-left: 2rem;;
    width: 100%;
}

.contact-hero__content {
    width: min(470px, 100%);
}

.contact-hero h1 {
    margin: 0;

    color: #ffffff;
    font-family: var(--font-heading);
    font-size: clamp(4rem, 6vw, 6.3rem);
    font-weight: 600;
    line-height: 0.9;
    letter-spacing: 0.02em;
    text-transform: uppercase;
}

.contact-hero__line {
    display: block;

    width: 52px;
    height: 3px;

    margin: 1.6rem 0;

    background: var(--color-orange);
}

.contact-hero h2 {
    margin: 0 0 1.8rem;

    color: #ffffff;
    font-family: var(--font-body);
    font-size: clamp(1.7rem, 2.6vw, 2.4rem);
    font-weight: 500;
    line-height: 1.35;
}

.contact-hero p {
    max-width: 330px;
    margin: 0;

    color: rgba(255, 255, 255, 0.86);
    font-size: 1rem;
    line-height: 1.7;
}

/* ==========================================================
   SECTION CONTACT
========================================================== */

.contact-section {
    padding: 5rem 0;
    background: var(--color-light);
}

.contact-section__grid {
    display: grid;
    grid-template-columns: minmax(0, 1.15fr) minmax(320px, 0.85fr);
    gap: 4rem;

    max-width: 1180px;
    margin: 0 auto;
}

.contact-section__form-column {
    padding-right: 4rem;

    border-right: 1px solid rgba(30, 30, 30, 0.12);
}

.contact-section__heading h2 {
    margin: 0;

    color: var(--color-dark);
    font-family: var(--font-body);
    font-size: clamp(1.5rem, 2.5vw, 2rem);
    font-weight: 700;
    line-height: 1.2;
    text-transform: uppercase;
}

.contact-section__line {
    display: block;

    width: 38px;
    height: 2px;

    margin: 0.9rem 0 1.5rem;

    background: var(--color-orange);
}

.contact-section__intro {
    max-width: 520px;
    margin: 0 0 2rem;

    color: var(--color-dark);
    font-size: 0.95rem;
    line-height: 1.65;
}

/* FORMULAIRE */

.contact-form {
    display: grid;
    gap: 1rem;
}

.contact-form__botcheck {
    position: absolute;
    left: -9999px;

    opacity: 0;
    pointer-events: none;
}

.contact-form__field {
    display: grid;
    gap: 0.55rem;
}

.contact-form__field label {
    color: var(--color-dark);
    font-size: 0.85rem;
    font-weight: 700;
}

.contact-form__field input,
.contact-form__field select,
.contact-form__field textarea {
    width: 100%;

    padding: 0.95rem 1rem;

    border: 1px solid rgba(30, 30, 30, 0.18);
    border-radius: 0;

    background: rgba(255, 255, 255, 0.65);
    color: var(--color-dark);

    font: inherit;

    transition:
        border-color 180ms ease,
        box-shadow 180ms ease,
        background 180ms ease;
}

.contact-form__field textarea {
    min-height: 145px;
    resize: vertical;
}

.contact-form__field input::placeholder,
.contact-form__field textarea::placeholder {
    color: rgba(30, 30, 30, 0.45);
}

.contact-form__field input:focus,
.contact-form__field select:focus,
.contact-form__field textarea:focus {
    outline: none;

    border-color: var(--color-orange);
    background: #ffffff;

    box-shadow: 0 0 0 3px rgba(201, 106, 44, 0.12);
}

.contact-form__submit {
    width: fit-content;

    display: inline-flex;
    align-items: center;
    justify-content: space-between;
    gap: 2rem;

    margin-top: 0.35rem;
    padding: 0.95rem 1.4rem;

    border: 1px solid var(--color-orange);

    background: transparent;
    color: var(--color-orange);

    font-size: 0.85rem;
    font-weight: 700;
    letter-spacing: 0.025em;
    text-transform: uppercase;

    cursor: pointer;

    transition:
        background 180ms ease,
        color 180ms ease;
}

.contact-form__submit:hover {
    background: var(--color-orange);
    color: #ffffff;
}

.contact-form__required {
    margin: 0.2rem 0 0;

    color: var(--color-dark);
    font-size: 0.78rem;
}

/* COORDONNÉES */

.contact-section__details {
    min-width: 0;
}

.contact-details {
    display: grid;
    gap: 2.2rem;
}

.contact-detail {
    display: grid;
    grid-template-columns: 52px 1fr;
    gap: 1.3rem;
    align-items: center;
}

.contact-detail__icon {
    width: 48px;
    height: 48px;

    display: grid;
    place-items: center;

    border: 1px solid var(--color-orange);
    border-radius: 50%;

    color: var(--color-orange);
    font-size: 1.35rem;
}

.contact-detail h3 {
    margin: 0 0 0.35rem;

    color: var(--color-dark);
    font-size: 0.9rem;
    font-weight: 700;
    text-transform: uppercase;
}

.contact-detail p,
.contact-detail address,
.contact-detail a {
    margin: 0;

    color: var(--color-dark);
    font-size: 0.95rem;
    font-style: normal;
    line-height: 1.55;
    text-decoration: none;
}

.contact-detail a:hover {
    color: var(--color-orange);
}

.contact-socials {
    margin-top: 2.7rem;
    padding-top: 1.8rem;

    border-top: 1px solid rgba(30, 30, 30, 0.12);
}

.contact-socials h3 {
    margin: 0 0 1rem;

    color: var(--color-dark);
    font-size: 0.9rem;
    font-weight: 700;
    text-transform: uppercase;
}

.contact-socials__links {
    display: flex;
    gap: 0.8rem;
}

.contact-socials__links a {
    width: 34px;
    height: 34px;

    display: grid;
    place-items: center;

    background: var(--color-orange);
    color: #ffffff;

    font-size: 1rem;
    font-weight: 700;
    text-decoration: none;
}