@import url('https://fonts.googleapis.com/css2?family=Figtree:wght@200;300;400;500;600;700&display=swap');

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

html {
  overflow-x: hidden;
  scroll-behavior: smooth;
}

:root {
  --color-yellow: #F6B334;
  --color-black:  #151515;
  --color-white:  #ffffff;

  --font-base: 'Figtree', sans-serif;
}

.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}


/*-------------HEADER-------------*/

header{
    background-color: var(--color-black);
    padding-right: 6rem;
    padding-left: 6rem;
    padding-top: 1rem;
    padding-bottom: 1rem;
    margin-bottom: 2.5rem;
}

header img {
    width: 11rem;
    height: auto;
}

nav {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
}

nav ul {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 2rem;
    list-style: none;
}

.nav-toggle {
    display: none;
    width: 2rem;
    height: 1.1rem;
    flex-direction: column;
    justify-content: space-between;
    background: none;
    border: none;
    padding: 0;
    cursor: pointer;
    flex-shrink: 0;
}

.nav-toggle span {
    display: block;
    width: 100%;
    height: 2px;
    background-color: var(--color-white);
    transition: transform 0.3s ease, opacity 0.3s ease;
}

.nav-toggle.is-active span:nth-child(1) {
    transform: translateY(7.5px) rotate(45deg);
}

.nav-toggle.is-active span:nth-child(2) {
    opacity: 0;
}

.nav-toggle.is-active span:nth-child(3) {
    transform: translateY(-7.5px) rotate(-45deg);
}

nav ul li a {
    text-decoration: none;
    color: var(--color-white);
    font-family: var(--font-base);
    font-weight: 300;
    font-size: 1.2rem;
    position: relative;
    transition: color 0.3s ease;
}

nav ul li a::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--color-yellow);
    transition: width 0.3s ease;
}

nav ul li a:hover {
    color: var(--color-yellow);
}

nav ul li a:hover::after {
    width: 100%;
}

nav ul li a#contact {
    background-color: var(--color-yellow);
    color: var(--color-black);
    font-family: var(--font-base);
    font-weight: 500;
    font-size: 1.2rem;
    padding: 0.5em 1em;
    border-radius: 0.6em;
    display: inline-flex;
    align-items: center;
    gap: 0.6em;
    line-height: 1;
    white-space: nowrap;
    transition: background-color 0.3s ease, color 0.3s ease;
}

nav ul li a#contact::after {
    display: none;
}

nav ul li a#contact:hover {
    background-color: var(--color-black);
    border: 1px solid var(--color-yellow);
    color: var(--color-yellow);
}

nav ul li a#contact .icon {
    flex-shrink: 0;
    width: 1.5em;
    height: 1.5em;
    position: relative;
    color: var(--color-black);
    display: grid;
    place-items: center;
    overflow: hidden;
    transition: color 0.3s ease;
}

nav ul li a#contact:hover .icon {
    color: var(--color-yellow);
}

nav ul li a#contact .icon-svg--copy {
    position: absolute;
    transform: translate(-220%, 220%);
}

nav ul li a#contact:hover .icon-svg:first-child {
    transition: transform 0.3s ease-in-out;
    transform: translate(220%, -220%);
}

nav ul li a#contact:hover .icon-svg--copy {
    transition: transform 0.3s ease-in-out 0.1s;
    transform: translate(0);
}

/*-------------HERO-------------*/

.hero{
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 1.8rem;
    height: 800px;
    margin: 0 6rem;
    border-radius: 1rem;
    background-image: linear-gradient(rgba(21, 21, 21, 0.5), rgba(21, 21, 21, 0.5)), url('assets/Images/hero.webp');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.hero h1 {
    font-family: var(--font-base);
    font-weight: 600;
    font-size: 3rem;
    color: var(--color-white);
    text-align: center;
    text-transform: uppercase;
}

.hero h1 span {
    display: block;
    color: var(--color-yellow);
}

.hero p {
    font-family: var(--font-base);
    font-weight: 200;
    font-size: 1.2rem;
    color: var(--color-white);
    text-align: center;
    line-height: 2rem;
}

.cta{
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    gap: 1.5rem;
}

.btn-presta{
    box-shadow: inset 0 0 0 1px var(--color-white);
    color: var(--color-white);
    text-decoration: none;
    font-size: 1.2rem;
    font-family: var(--font-base);
    font-weight: 400;
    padding: 0.5em 1em;
    border-radius: 0.5em;
    position: relative;
    overflow: hidden;
    z-index: 0;
    transition: color 0.35s ease;
}

.btn-presta::before {
    content: '';
    position: absolute;
    inset: 0;
    background-color: var(--color-white);
    transform: translateX(-110%) skewX(-15deg);
    transition: transform 0.4s ease;
    z-index: -1;
}

.btn-presta:hover {
    color: var(--color-black);
}

.btn-presta:hover::before {
    transform: translateX(0) skewX(0deg);
}

.btn-contact{
    background-color: var(--color-yellow);
    color: var(--color-black);
    text-decoration: none;
    font-size: 1.2rem;
    font-family: var(--font-base);
    font-weight: 400;
    padding: 0.5em 1em;
    border-radius: 0.5em;
    position: relative;
    overflow: hidden;
    z-index: 0;
    transition: color 0.35s ease;
}

.btn-contact::before {
    content: '';
    position: absolute;
    inset: 0;
    background-color: var(--color-black);
    transform: translateX(-110%) skewX(-15deg);
    transition: transform 0.4s ease;
    z-index: -1;
}

.btn-contact:hover {
    color: var(--color-yellow);
}

.btn-contact:hover::before {
    transform: translateX(0) skewX(0deg);
}

/*-------------PRESTATIONS-------------*/

.prestations {
    padding: 0 6rem 5rem;
    display: flex;
    flex-direction: column;
    gap: 3rem;
}

.prestations__intro {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: flex-end;
    gap: 4rem;
    padding-top: 5rem;
    margin-bottom: 3rem;
}

.prestations__intro-left {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.prestations__label {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    border: 1px solid #ddd;
    border-radius: 2rem;
    padding: 0.3rem 0.8rem;
    font-family: var(--font-base);
    font-size: 0.9rem;
    font-weight: 400;
    color: var(--color-black);
    width: fit-content;
}

.prestations__dot {
    width: 8px;
    height: 8px;
    background-color: var(--color-yellow);
    border-radius: 50%;
    flex-shrink: 0;
}

.prestations__intro-left h1,
.prestations__intro-left h2 {
    font-family: var(--font-base);
    font-size: 3rem;
    font-weight: 500;
    color: var(--color-black);
    line-height: 54px;
}

.prestations__intro-right {
    max-width: 600px;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    align-items: flex-start;
}

.prestations__intro-right p {
    font-family: var(--font-base);
    font-weight: 300;
    font-size: 1rem;
    color: var(--color-black);
    line-height: 1.7;
}

.btn-devis {
    background-color: var(--color-yellow);
    color: var(--color-black);
    text-decoration: none;
    font-family: var(--font-base);
    font-size: 1rem;
    font-weight: 500;
    padding: 0.5em 1em;
    border-radius: 0.75em;
    display: inline-flex;
    align-items: center;
    gap: 0.6em;
    line-height: 1;
    white-space: nowrap;
    position: relative;
    overflow: hidden;
    z-index: 0;
    transition: color 0.35s ease;
}

.btn-devis::before {
    content: '';
    position: absolute;
    inset: 0;
    background-color: var(--color-black);
    transform: translateX(-110%) skewX(-15deg);
    transition: transform 0.4s ease;
    z-index: -1;
}

.btn-devis:hover { color: var(--color-yellow); }
.btn-devis:hover::before { transform: translateX(0) skewX(0deg); }

.btn-devis .icon {
    flex-shrink: 0;
    width: 1.5em;
    height: 1.5em;
    position: relative;
    color: var(--color-black);
    display: grid;
    place-items: center;
    overflow: hidden;
    transition: color 0.3s ease;
}

.btn-devis:hover .icon { color: var(--color-yellow); }

.btn-devis .icon-svg--copy { position: absolute; transform: translate(-220%, 220%); }
.btn-devis:hover .icon-svg:first-child { transition: transform 0.3s ease-in-out; transform: translate(220%, -220%); }
.btn-devis:hover .icon-svg--copy { transition: transform 0.3s ease-in-out 0.1s; transform: translate(0); }

/* Grille des cartes */
.prestations__grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.2rem;
}

.presta-card {
    position: relative;
    border-radius: 1rem;
    overflow: hidden;
    height: 380px;
}

.presta-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.4s ease;
}

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

.presta-card::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(21,21,21,0.88) 0%, rgba(21,21,21,0.2) 55%, transparent 100%);
}

.presta-card__content {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 1.2rem;
    z-index: 1;
    display: flex;
    flex-direction: column;
    gap: 0.6rem;
}

.presta-card__title {
    font-family: var(--font-base);
    font-weight: 400;
    font-size: 1.5rem;
    color: var(--color-white);
}

.presta-card__tags {
    display: flex;
    flex-wrap: wrap;
    gap: 0.4rem;
    list-style: none;
}

.presta-card__tags li {
    border: 1px solid rgba(255,255,255,0.55);
    color: var(--color-white);
    font-family: var(--font-base);
    font-size: 0.75rem;
    font-weight: 400;
    padding: 0.2rem 0.6rem;
    border-radius: 2rem;
}

.btn-all-presta {
    background-color: var(--color-yellow);
    color: var(--color-black);
    text-decoration: none;
    font-family: var(--font-base);
    font-size: 1.1rem;
    font-weight: 500;
    padding: 0.5em 1em;
    border-radius: 0.9em;
    display: inline-flex;
    align-items: center;
    gap: 0.6em;
    line-height: 1;
    white-space: nowrap;
    width: fit-content;
    position: relative;
    overflow: hidden;
    z-index: 0;
    transition: color 0.35s ease;
}

.btn-all-presta::before {
    content: '';
    position: absolute;
    inset: 0;
    background-color: var(--color-black);
    transform: translateX(-110%) skewX(-15deg);
    transition: transform 0.4s ease;
    z-index: -1;
}

.btn-all-presta:hover { color: var(--color-yellow); }
.btn-all-presta:hover::before { transform: translateX(0) skewX(0deg); }

.btn-all-presta .icon {
    flex-shrink: 0;
    width: 1.5em;
    height: 1.5em;
    position: relative;
    color: var(--color-black);
    display: grid;
    place-items: center;
    overflow: hidden;
    transition: color 0.3s ease;
}

.btn-all-presta:hover .icon { color: var(--color-yellow); }

.btn-all-presta .icon-svg--copy { position: absolute; transform: translate(-220%, 220%); }
.btn-all-presta:hover .icon-svg:first-child { transition: transform 0.3s ease-in-out; transform: translate(220%, -220%); }
.btn-all-presta:hover .icon-svg--copy { transition: transform 0.3s ease-in-out 0.1s; transform: translate(0); }

/*-------------À PROPOS-------------*/

.about {
    background-color: var(--color-black);
    padding: 5rem 6rem 6rem;
    display: flex;
    flex-direction: column;
    gap: 5rem;
}

.about__intro {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: flex-start;
    gap: 4rem;
}

.about__intro-left {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.about__label {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    border: 1px solid rgba(255, 255, 255, 0.7);
    border-radius: 2rem;
    padding: 0.3rem 0.8rem;
    font-family: var(--font-base);
    font-size: 0.9rem;
    font-weight: 400;
    color: var(--color-white);
    width: fit-content;
}

.about__dot {
    width: 8px;
    height: 8px;
    background-color: var(--color-yellow);
    border-radius: 50%;
    flex-shrink: 0;
}

.about__intro-left h2 {
    font-family: var(--font-base);
    font-size: 3rem;
    font-weight: 500;
    color: var(--color-white);
    line-height: 54px;
}

.about__intro-right {
    max-width: 640px;
    display: flex;
    flex-direction: column;
    gap: 1.8rem;
    align-items: flex-start;
}

.about__intro-right p {
    font-family: var(--font-base);
    font-weight: 300;
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.78);
    line-height: 1.55;
}

.about__intro-right strong {
    color: var(--color-white);
    font-weight: 600;
}

.btn-about {
    background-color: var(--color-yellow);
    color: var(--color-white);
    text-decoration: none;
    font-family: var(--font-base);
    font-size: 1rem;
    font-weight: 600;
    padding: 0.7em 1.15em;
    border-radius: 0.75em;
    display: inline-flex;
    align-items: center;
    gap: 0.6em;
    line-height: 1;
    white-space: nowrap;
    position: relative;
    overflow: hidden;
    z-index: 0;
    transition: color 0.35s ease;
}

.btn-about::before {
    content: '';
    position: absolute;
    inset: 0;
    background-color: var(--color-white);
    transform: translateX(-110%) skewX(-15deg);
    transition: transform 0.4s ease;
    z-index: -1;
}

.btn-about:hover { color: var(--color-black); }
.btn-about:hover::before { transform: translateX(0) skewX(0deg); }

.btn-about .icon {
    flex-shrink: 0;
    width: 1.25em;
    height: 1.25em;
    position: relative;
    color: var(--color-white);
    display: grid;
    place-items: center;
    overflow: hidden;
    transition: color 0.3s ease;
}

.btn-about:hover .icon { color: var(--color-black); }

.btn-about .icon-svg--copy { position: absolute; transform: translate(-220%, 220%); }
.btn-about:hover .icon-svg:first-child { transition: transform 0.3s ease-in-out; transform: translate(220%, -220%); }
.btn-about:hover .icon-svg--copy { transition: transform 0.3s ease-in-out 0.1s; transform: translate(0); }

.about__stats {
    background-color: var(--color-white);
    border-radius: 1rem;
    padding: 1.4rem;
    display: grid;
    grid-template-columns: 1.15fr 1fr 1fr;
    gap: 2.6rem;
    align-items: stretch;
}

.about-stat {
    border-radius: 0.6rem;
    padding: 1.8rem 1.2rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.about-stat--featured {
    background-color: var(--color-black);
    padding: 1.8rem;
}

.about-stat__number {
    font-family: var(--font-base);
    font-size: 4rem;
    font-weight: 500;
    line-height: 1;
    color: var(--color-yellow);
    margin-bottom: 0.8rem;
}

.about-stat h3 {
    font-family: var(--font-base);
    font-size: 1.7rem;
    font-weight: 500;
    line-height: 1.2;
    color: var(--color-black);
    margin-bottom: 1rem;
}

.about-stat p:last-child {
    font-family: var(--font-base);
    font-size: 1.05rem;
    font-weight: 300;
    line-height: 1.55;
    color: rgba(21, 21, 21, 0.82);
}

.about-stat--featured h3,
.about-stat--featured p:last-child {
    color: var(--color-white);
}

.about-stat--featured p:last-child {
    color: rgba(255, 255, 255, 0.78);
}

/*-------------GARANTIES-------------*/

.guarantees {
    padding: 5rem 6rem 6rem;
    background-color: var(--color-white);
    display: flex;
    flex-direction: column;
    gap: 5rem;
}

.guarantees__intro {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: flex-start;
    gap: 4rem;
}

.guarantees__intro-left {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.guarantees__label {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    border: 1px solid #ddd;
    border-radius: 2rem;
    padding: 0.3rem 0.8rem;
    font-family: var(--font-base);
    font-size: 0.9rem;
    font-weight: 400;
    color: var(--color-black);
    width: fit-content;
}

.guarantees__dot {
    width: 8px;
    height: 8px;
    background-color: var(--color-yellow);
    border-radius: 50%;
    flex-shrink: 0;
}

.guarantees__intro-left h2 {
    font-family: var(--font-base);
    font-size: 3rem;
    font-weight: 500;
    color: var(--color-black);
    line-height: 54px;
}

.guarantees__intro-right {
    max-width: 640px;
}

.guarantees__intro-right p {
    font-family: var(--font-base);
    font-size: 1.2rem;
    font-weight: 300;
    line-height: 1.55;
    color: rgba(21, 21, 21, 0.68);
}

.guarantees__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 4rem;
    align-items: start;
}

.guarantee-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.guarantee-item__visual {
    height: 150px;
    margin-bottom: 2rem;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    transition: transform 0.3s ease;
}

.guarantee-item__visual:hover {
    transform: translateY(-4px);
}

.guarantee-item__visual img {
    max-width: 100%;
    max-height: 100%;
    width: auto;
    height: auto;
    object-fit: contain;
    display: block;
}

.guarantee-item__content {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1.4rem;
}

.guarantee-item h3 {
    font-family: var(--font-base);
    font-size: 1.2rem;
    font-weight: 700;
    line-height: 1.25;
    color: var(--color-black);
    text-transform: uppercase;
}

.guarantee-item p {
    font-family: var(--font-base);
    font-size: 1.05rem;
    font-weight: 300;
    line-height: 1.55;
    color: rgba(21, 21, 21, 0.86);
    max-width: 470px;
}

.guarantee-item p + p {
    margin-top: 1rem;
}

.guarantee-item__visual--rge {
    width: 250px;
}

.guarantee-item__visual--artipole {
    width: 330px;
}

.guarantee-item__visual--decennale {
    width: 132px;
}

/*-------------CTA DEVIS-------------*/

.quote-cta {
    padding: 6rem 6rem 7rem;
    background-color: var(--color-white);
}

.quote-cta__inner {
    min-height: 470px;
    border-radius: 1rem;
    padding: 6rem 2rem;
    background-color: #070707;
    background-image:
        radial-gradient(circle at 52% 18%, rgba(255, 255, 255, 0.16), rgba(255, 255, 255, 0.05) 24%, transparent 48%),
        radial-gradient(circle at 18% 96%, rgba(255, 255, 255, 0.18), rgba(255, 255, 255, 0.04) 22%, transparent 42%),
        linear-gradient(110deg, rgba(255, 255, 255, 0.04), transparent 38%, rgba(255, 255, 255, 0.035) 68%, transparent),
        linear-gradient(var(--color-black), #050505);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 2rem;
    text-align: center;
    overflow: hidden;
}

.quote-cta h2 {
    font-family: var(--font-base);
    font-size: 3rem;
    font-weight: 500;
    line-height: 1.18;
    color: var(--color-white);
}

.quote-cta p {
    max-width: 640px;
    font-family: var(--font-base);
    font-size: 1.1rem;
    font-weight: 300;
    line-height: 1.55;
    color: rgba(255, 255, 255, 0.86);
    margin-bottom: 0.6rem;
}

.btn-quote {
    background-color: var(--color-yellow);
    color: var(--color-white);
    text-decoration: none;
    font-family: var(--font-base);
    font-size: 1rem;
    font-weight: 600;
    padding: 0.7em 1.15em;
    border-radius: 0.75em;
    display: inline-flex;
    align-items: center;
    gap: 0.6em;
    line-height: 1;
    white-space: nowrap;
    position: relative;
    overflow: hidden;
    z-index: 0;
    transition: color 0.35s ease;
}

.btn-quote::before {
    content: '';
    position: absolute;
    inset: 0;
    background-color: var(--color-white);
    transform: translateX(-110%) skewX(-15deg);
    transition: transform 0.4s ease;
    z-index: -1;
}

.btn-quote:hover { color: var(--color-black); }
.btn-quote:hover::before { transform: translateX(0) skewX(0deg); }

.btn-quote .icon {
    flex-shrink: 0;
    width: 1.25em;
    height: 1.25em;
    position: relative;
    color: var(--color-white);
    display: grid;
    place-items: center;
    overflow: hidden;
    transition: color 0.3s ease;
}

.btn-quote:hover .icon { color: var(--color-black); }

.btn-quote .icon-svg--copy { position: absolute; transform: translate(-220%, 220%); }
.btn-quote:hover .icon-svg:first-child { transition: transform 0.3s ease-in-out; transform: translate(220%, -220%); }
.btn-quote:hover .icon-svg--copy { transition: transform 0.3s ease-in-out 0.1s; transform: translate(0); }

/*-------------FOOTER-------------*/

.site-footer {
    background-color: var(--color-black);
    color: var(--color-white);
    width: 100%;
    padding: 5rem 0 0;
    overflow: hidden;
}

.site-footer__grid,
.site-footer__bottom {
    width: 100%;
    padding-left: 6rem;
    padding-right: 6rem;
}

.site-footer__grid {
    display: grid;
    grid-template-columns: 1.45fr 1fr 1fr 1.2fr;
    gap: 5rem;
    align-items: start;
}

.site-footer__brand img {
    width: 18rem;
    height: auto;
    margin-bottom: 1.8rem;
}

.site-footer__brand p,
.site-footer__contact span,
.site-footer__contact a,
.site-footer__bottom p {
    font-family: var(--font-base);
    font-size: 1.05rem;
    font-weight: 300;
    line-height: 1.5;
    color: rgba(255, 255, 255, 0.78);
}

.site-footer__brand p {
    max-width: 360px;
}

.site-footer__brand strong {
    display: block;
    color: var(--color-white);
    font-weight: 600;
    margin-bottom: 0.3rem;
}

.site-footer__socials {
    display: flex;
    flex-direction: row;
    gap: 1rem;
    list-style: none;
    margin-top: 1.6rem;
}

.site-footer__socials a {
    width: 2rem;
    height: 2rem;
    color: var(--color-yellow);
    display: grid;
    place-items: center;
    transition: transform 0.3s ease, color 0.3s ease;
}

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

.site-footer__socials svg,
.site-footer__top svg {
    width: 100%;
    height: 100%;
    fill: currentColor;
}

.site-footer__nav {
    display: block;
}

.site-footer h2 {
    font-family: var(--font-base);
    font-size: 1.65rem;
    font-weight: 700;
    line-height: 1.2;
    text-transform: uppercase;
    color: var(--color-yellow);
    margin-bottom: 1.3rem;
}

.site-footer__list {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 0.65rem;
    list-style: none;
}

.site-footer__list a,
.site-footer__contact a {
    color: rgba(255, 255, 255, 0.86);
    text-decoration: none;
    transition: color 0.3s ease;
}

.site-footer__list a {
    font-family: var(--font-base);
    font-size: 1.05rem;
    font-weight: 300;
    line-height: 1.25;
}

.site-footer__list a::after {
    display: none;
}

.site-footer__list a:hover,
.site-footer__contact a:hover {
    color: var(--color-yellow);
}

.site-footer__contact address {
    font-style: normal;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.site-footer__contact p {
    display: flex;
    flex-direction: column;
}

.site-footer__contact strong {
    font-family: var(--font-base);
    font-size: 1.45rem;
    font-weight: 500;
    line-height: 1.25;
    color: var(--color-white);
    margin-bottom: 1rem;
}

.site-footer__contact a[href^="mailto"] {
    text-decoration: underline;
    text-underline-offset: 0.2rem;
}

.site-footer__bottom {
    position: relative;
    min-height: 8rem;
    display: flex;
    align-items: flex-end;
    justify-content: center;
    padding-bottom: 2.2rem;
}

.site-footer__top {
    position: absolute;
    right: 6rem;
    bottom: 2.4rem;
    width: 3.4rem;
    height: 3.4rem;
    border: 2px solid var(--color-white);
    border-radius: 50%;
    color: var(--color-white);
    display: grid;
    place-items: center;
    padding: 0.65rem;
    transition: background-color 0.3s ease, color 0.3s ease, transform 0.3s ease;
}

.site-footer__top:hover {
    background-color: var(--color-white);
    color: var(--color-black);
    transform: translateY(-3px);
}

.site-footer__big {
    font-family: var(--font-base);
    display: block;
    width: 100%;
    box-sizing: border-box;
    padding-left: 6rem;
    padding-right: 6rem;
    text-align: center;
    font-size: clamp(4.6rem, 10.2vw, 11rem);
    font-weight: 700;
    line-height: 0.86;
    text-transform: uppercase;
    letter-spacing: -0.05em;
    word-spacing: 0.02em;
    color: var(--color-white);
    transform: translateY(0.14em);
    height: 0.82em;
    overflow: hidden;
    white-space: nowrap;
    opacity: 1;
}

/*-------------PAGE CONTACT-------------*/

.contact-page {
    padding: 0 6rem 3rem;
    background-color: var(--color-white);
}

.contact-page__inner {
    border-radius: 1rem;
    padding: 4rem;
    background-color: #070707;
    background-image:
        radial-gradient(circle at 15% 12%, rgba(255, 255, 255, 0.16), rgba(255, 255, 255, 0.05) 24%, transparent 48%),
        radial-gradient(circle at 92% 88%, rgba(255, 255, 255, 0.14), rgba(255, 255, 255, 0.04) 22%, transparent 42%),
        linear-gradient(110deg, rgba(255, 255, 255, 0.04), transparent 38%, rgba(255, 255, 255, 0.035) 68%, transparent),
        linear-gradient(var(--color-black), #050505);
    display: grid;
    grid-template-columns: 1.1fr 1fr;
    gap: 4.5rem;
    align-items: start;
}

.contact-info h1 {
    font-family: var(--font-base);
    font-size: 2.6rem;
    font-weight: 500;
    line-height: 1.2;
    color: var(--color-white);
    margin-bottom: 1.6rem;
}

.contact-info h1 span {
    color: var(--color-yellow);
}

.contact-info__text {
    display: flex;
    flex-direction: column;
    gap: 1.2rem;
    margin-bottom: 2.8rem;
}

.contact-info__text p {
    font-family: var(--font-base);
    font-size: 1.05rem;
    font-weight: 300;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.78);
    max-width: 480px;
}

.contact-info__grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    margin-bottom: 2.8rem;
}

.contact-info__heading {
    font-family: var(--font-base);
    font-size: 1.3rem;
    font-weight: 600;
    color: var(--color-white);
    margin-bottom: 1rem;
}

.contact-info__grid address,
.contact-info__grid p {
    font-style: normal;
    font-family: var(--font-base);
    font-size: 1rem;
    font-weight: 300;
    line-height: 1.65;
    color: rgba(255, 255, 255, 0.78);
}

.contact-info__socials {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    list-style: none;
}

.contact-info__socials a {
    font-family: var(--font-base);
    font-size: 1rem;
    font-weight: 300;
    color: rgba(255, 255, 255, 0.78);
    text-decoration: none;
    transition: color 0.3s ease;
}

.contact-info__socials a:hover {
    color: var(--color-yellow);
}

.contact-info .site-footer__contact {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
}

.contact-info .site-footer__contact address {
    gap: 0;
}

.contact-form {
    background-color: var(--color-white);
    border-radius: 1rem;
    padding: 2.6rem;
}

.contact-form__title {
    font-family: var(--font-base);
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--color-black);
    margin-bottom: 0.8rem;
}

.contact-form__subtitle {
    font-family: var(--font-base);
    font-size: 0.95rem;
    font-weight: 300;
    line-height: 1.55;
    color: rgba(21, 21, 21, 0.6);
    margin-bottom: 1.8rem;
}

.contact-form__row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
    margin-bottom: 1rem;
}

.contact-form__fields > .contact-form__field {
    margin-bottom: 1rem;
}

.contact-form input[type="text"],
.contact-form input[type="tel"],
.contact-form input[type="email"],
.contact-form textarea {
    width: 100%;
    font-family: var(--font-base);
    font-size: 0.95rem;
    font-weight: 400;
    color: var(--color-black);
    background-color: var(--color-white);
    border: 1px solid #ddd;
    border-radius: 1.5rem;
    padding: 0.9rem 1.3rem;
    transition: border-color 0.3s ease;
}

.contact-form textarea {
    border-radius: 1rem;
    min-height: 130px;
    resize: vertical;
    line-height: 1.5;
}

.contact-form input::placeholder,
.contact-form textarea::placeholder {
    color: rgba(21, 21, 21, 0.4);
}

.contact-form input:focus,
.contact-form textarea:focus {
    outline: none;
    border-color: var(--color-yellow);
}

.contact-form input.is-invalid,
.contact-form textarea.is-invalid {
    border-color: #c0392b;
}

.contact-form__consent.is-invalid label {
    color: #c0392b;
}

.contact-form__consent {
    display: flex;
    align-items: flex-start;
    gap: 0.7rem;
    margin-bottom: 1.6rem;
}

.contact-form__consent input {
    margin-top: 0.2rem;
    flex-shrink: 0;
    accent-color: var(--color-yellow);
}

.contact-form__consent label {
    font-family: var(--font-base);
    font-size: 0.85rem;
    font-weight: 300;
    line-height: 1.5;
    color: rgba(21, 21, 21, 0.7);
}

.contact-form__honeypot {
    position: absolute;
    left: -9999px;
    width: 1px;
    height: 1px;
    overflow: hidden;
}

.contact-form button[type="submit"] {
    width: 100%;
    justify-content: center;
    border: none;
    cursor: pointer;
    font-size: 1.05rem;
}

.contact-form button[type="submit"]:disabled {
    opacity: 0.6;
    cursor: not-allowed;
}

.contact-form button[type="submit"]:disabled::before {
    display: none;
}

.contact-form__status {
    font-family: var(--font-base);
    font-size: 0.9rem;
    font-weight: 500;
    margin-top: 1rem;
    text-align: center;
}

.contact-form__status--error {
    color: #c0392b;
}

.contact-form__success {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 1rem;
    padding: 2.5rem 1rem;
}

.contact-form__success-icon {
    width: 3.4rem;
    height: 3.4rem;
    border-radius: 50%;
    background-color: var(--color-yellow);
    color: var(--color-black);
    display: grid;
    place-items: center;
    animation: contact-success-pop 0.4s ease;
}

.contact-form__success-icon svg {
    width: 1.6rem;
    height: 1.6rem;
    fill: none;
    stroke: var(--color-black);
    stroke-width: 2.5;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.contact-form__success h3 {
    font-family: var(--font-base);
    font-size: 1.3rem;
    font-weight: 600;
    color: var(--color-black);
}

.contact-form__success p {
    font-family: var(--font-base);
    font-size: 0.95rem;
    font-weight: 300;
    color: rgba(21, 21, 21, 0.65);
}

@keyframes contact-success-pop {
    0% { transform: scale(0.4); opacity: 0; }
    100% { transform: scale(1); opacity: 1; }
}

.contact-form[hidden],
.contact-form__success[hidden] {
    display: none;
}

/*-------------CARTE-------------*/

.map-section {
    padding: 0 6rem 6rem;
    background-color: var(--color-white);
}

.map-section__frame {
    border-radius: 1rem;
    overflow: hidden;
    height: 420px;
}

.map-section__frame iframe {
    width: 100%;
    height: 100%;
    border: 0;
    display: block;
}

.map-section__placeholder {
    width: 100%;
    height: 100%;
    background-color: var(--color-black);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    gap: 1.4rem;
    padding: 2rem;
}

.map-section__placeholder p {
    font-family: var(--font-base);
    font-size: 0.95rem;
    font-weight: 300;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.72);
    max-width: 420px;
}

.map-section__placeholder noscript a {
    color: var(--color-yellow);
    font-family: var(--font-base);
    font-size: 0.9rem;
}

/*-------------HERO SERVICE-------------*/

.service-hero {
    min-height: 620px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    margin: 0 6rem;
    border-radius: 1rem;
    padding: 6rem 4rem 4rem;
    background-image: linear-gradient(rgba(21, 21, 21, 0.55), rgba(21, 21, 21, 0.55)), var(--service-hero-image);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.service-hero__eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    color: var(--color-yellow);
    text-transform: uppercase;
    letter-spacing: 0.15em;
    font-family: var(--font-base);
    font-size: 0.85rem;
    font-weight: 600;
    margin-bottom: 1.2rem;
}

.service-hero__eyebrow::before {
    content: '';
    width: 2.5rem;
    height: 2px;
    background-color: var(--color-yellow);
}

.service-hero h1 {
    font-family: var(--font-base);
    font-size: clamp(2.8rem, 6vw, 4.5rem);
    font-weight: 700;
    text-transform: uppercase;
    line-height: 1;
    color: var(--color-white);
    margin-bottom: 1.6rem;
}

.service-hero__text {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    max-width: 760px;
    margin-bottom: 2rem;
}

.service-hero__text p {
    font-family: var(--font-base);
    font-weight: 300;
    font-size: 1.05rem;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.85);
}

/*-------------ATOUTS SERVICE-------------*/

.service-features {
    padding: 5rem 6rem;
    display: flex;
    flex-direction: column;
    gap: 4rem;
}

.service-features__row {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    gap: 2rem;
    padding-left: 4rem;
}

.service-feature {
    flex: 0 1 540px;
    max-width: 540px;
    position: relative;
    z-index: 0;
    padding-top: 1.4rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.service-feature__number {
    position: absolute;
    top: -1.5rem;
    left: -4rem;
    z-index: -1;
    font-family: var(--font-base);
    font-size: 10rem;
    font-weight: 700;
    line-height: 1;
    color: transparent;
    -webkit-text-stroke: 1.5px rgba(21, 21, 21, 0.14);
    pointer-events: none;
}

.service-feature__title {
    position: relative;
    display: block;
    font-family: var(--font-base);
    font-size: 2rem;
    font-weight: 600;
    line-height: 1.3;
    color: var(--color-black);
    margin-bottom: 1.2rem;
}

.service-feature__dot {
    position: absolute;
    left: -1rem;
    top: 0.6em;
    width: 8px;
    height: 8px;
    background-color: var(--color-yellow);
    border-radius: 50%;
    flex-shrink: 0;
}

.service-feature__title-line {
    position: relative;
    display: inline-block;
    width: fit-content;
    padding-bottom: 0.35rem;
}

.service-feature__title-line::after {
    content: '';
    position: absolute;
    left: 2%;
    bottom: 0;
    width: 78%;
    height: 3px;
    background-color: var(--color-yellow);
}

.service-feature p {
    font-family: var(--font-base);
    font-weight: 300;
    font-size: 1.15rem;
    line-height: 1.65;
    color: rgba(21, 21, 21, 0.72);
}

/*-------------PAGES LEGALES-------------*/

.legal-page {
    padding: 0 6rem 5rem;
    background-color: var(--color-white);
}

.legal-page__intro {
    display: flex;
    flex-direction: column;
    gap: 1.4rem;
    padding-top: 5rem;
    margin-bottom: 3rem;
}

.legal-page__label {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    border: 1px solid #ddd;
    border-radius: 2rem;
    padding: 0.3rem 0.8rem;
    font-family: var(--font-base);
    font-size: 0.9rem;
    font-weight: 400;
    color: var(--color-black);
    width: fit-content;
}

.legal-page__dot {
    width: 8px;
    height: 8px;
    background-color: var(--color-yellow);
    border-radius: 50%;
    flex-shrink: 0;
}

.legal-page__intro h1 {
    font-family: var(--font-base);
    font-size: 3rem;
    font-weight: 500;
    color: var(--color-black);
    line-height: 54px;
}

.legal-page__updated {
    font-family: var(--font-base);
    font-size: 0.95rem;
    font-weight: 300;
    color: rgba(21, 21, 21, 0.55);
}

.legal-page__content {
    max-width: 900px;
    background-color: var(--color-white);
    border: 1px solid #ececec;
    box-shadow: 0 2px 24px rgba(21, 21, 21, 0.05);
    border-radius: 1rem;
    padding: 3.5rem;
    display: flex;
    flex-direction: column;
    gap: 2.4rem;
}

.legal-page__block {
    display: flex;
    flex-direction: column;
    gap: 0.9rem;
}

.legal-page__content h2 {
    font-family: var(--font-base);
    font-size: 1.35rem;
    font-weight: 600;
    color: var(--color-black);
}

.legal-page__content p,
.legal-page__content li {
    font-family: var(--font-base);
    font-size: 1rem;
    font-weight: 300;
    line-height: 1.7;
    color: rgba(21, 21, 21, 0.72);
}

.legal-page__content ul {
    display: flex;
    flex-direction: column;
    gap: 0.6rem;
    padding-left: 1.3rem;
    list-style: disc;
}

.legal-page__content strong {
    font-weight: 600;
    color: var(--color-black);
}

.legal-page__content a {
    color: var(--color-black);
    font-weight: 500;
    text-decoration: underline;
    text-underline-offset: 2px;
}

.legal-page__content a:hover {
    color: var(--color-yellow);
}

/*-------------PAGE 404-------------*/

.error-page {
    min-height: 60vh;
    padding: 4rem 6rem 6rem;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: var(--color-white);
}

.error-page__inner {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 1.4rem;
    max-width: 560px;
}

.error-page__code {
    font-family: var(--font-base);
    font-size: 8rem;
    font-weight: 700;
    line-height: 1;
    color: transparent;
    -webkit-text-stroke: 2px var(--color-yellow);
}

.error-page__inner h1 {
    font-family: var(--font-base);
    font-size: 2rem;
    font-weight: 600;
    color: var(--color-black);
}

.error-page__inner p {
    font-family: var(--font-base);
    font-size: 1rem;
    font-weight: 300;
    line-height: 1.65;
    color: rgba(21, 21, 21, 0.7);
}

.error-page__actions {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    margin-top: 0.6rem;
}

.error-page__secondary {
    font-family: var(--font-base);
    font-size: 1rem;
    font-weight: 500;
    color: var(--color-black);
    text-decoration: none;
    border: 1px solid #ddd;
    border-radius: 0.75em;
    padding: 0.7em 1.15em;
    transition: border-color 0.3s ease, color 0.3s ease;
}

.error-page__secondary:hover {
    border-color: var(--color-yellow);
    color: var(--color-yellow);
}

/*-------------CARROUSEL REALISATIONS-------------*/

.realisations {
    padding: 2rem 6rem 6rem;
    display: flex;
    flex-direction: column;
    gap: 2.5rem;
}

.realisations__label {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    border: 1px solid #ddd;
    border-radius: 2rem;
    padding: 0.3rem 0.8rem;
    font-family: var(--font-base);
    font-size: 0.9rem;
    font-weight: 400;
    color: var(--color-black);
    width: fit-content;
}

.realisations__dot {
    width: 8px;
    height: 8px;
    background-color: var(--color-yellow);
    border-radius: 50%;
    flex-shrink: 0;
}

.realisations h2 {
    font-family: var(--font-base);
    font-size: 3rem;
    font-weight: 500;
    color: var(--color-black);
    line-height: 54px;
}

.carousel {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.carousel__viewport {
    width: 100vw;
    margin-left: 50%;
    transform: translateX(-50%);
    overflow: hidden;
}

.carousel__track {
    display: flex;
    gap: 1.5rem;
    transition: transform 0.45s ease;
    will-change: transform;
}

.carousel__slide {
    position: relative;
    flex: 0 0 auto;
    width: 80%;
    max-width: 1220px;
    border-radius: 1rem;
    overflow: hidden;
    opacity: 0.35;
    transform: scale(0.94);
    transition: opacity 0.45s ease, transform 0.45s ease;
}

.carousel__slide img {
    cursor: zoom-in;
}

.carousel__slide::after {
    content: '';
    position: absolute;
    bottom: 1.4rem;
    right: 1.4rem;
    width: 3rem;
    height: 3rem;
    border-radius: 50%;
    background-color: rgba(21, 21, 21, 0.6);
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='white' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Ccircle cx='11' cy='11' r='7'%3E%3C/circle%3E%3Cpath d='M20 20l-3.5-3.5'%3E%3C/path%3E%3Cpath d='M11 8v6M8 11h6'%3E%3C/path%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: center;
    background-size: 1.4rem;
    opacity: 0;
    transform: scale(0.6);
    pointer-events: none;
    transition: opacity 0.3s ease, transform 0.3s ease;
}

.carousel__slide.is-active::after {
    opacity: 1;
    animation: carousel-zoom-hint 2.2s ease-in-out infinite;
}

@keyframes carousel-zoom-hint {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.15); }
}

.carousel__slide.is-active {
    opacity: 1;
    transform: scale(1);
}

.carousel__slide img {
    width: 100%;
    height: 600px;
    object-fit: cover;
    display: block;
}

.carousel__controls {
    display: flex;
    gap: 1rem;
}

.carousel__arrow {
    width: 3.2rem;
    height: 3.2rem;
    border: 2px solid var(--color-black);
    border-radius: 50%;
    background-color: var(--color-white);
    color: var(--color-black);
    display: grid;
    place-items: center;
    cursor: pointer;
    transition: background-color 0.3s ease, color 0.3s ease, transform 0.3s ease;
}

.carousel__arrow:hover {
    background-color: var(--color-black);
    color: var(--color-white);
    transform: translateY(-2px);
}

.carousel__arrow svg {
    width: 1.1rem;
    height: 1.1rem;
    fill: none;
    stroke: currentColor;
    stroke-width: 2;
    stroke-linecap: round;
    stroke-linejoin: round;
}

@media (max-width: 1100px) {
    .about__intro,
    .prestations__intro,
    .guarantees__intro {
        gap: 3rem;
    }

    .about__intro-right,
    .guarantees__intro-right {
        max-width: 540px;
    }

    .about__stats {
        gap: 1.2rem;
    }

    .guarantees__grid {
        gap: 2rem;
    }

    .about-stat__number {
        font-size: 3.4rem;
    }

    .about-stat h3 {
        font-size: 1.45rem;
    }

    .site-footer__grid {
        grid-template-columns: 1.2fr 1fr 1fr;
        gap: 3rem;
    }

    .site-footer__contact {
        grid-column: 1 / -1;
    }

    .contact-page {
        padding-left: 3rem;
        padding-right: 3rem;
    }

    .contact-page__inner {
        grid-template-columns: 1fr;
        gap: 3rem;
        padding: 3rem;
    }

    .service-features {
        gap: 3rem;
    }

    .carousel__slide {
        width: 80%;
    }
}

@media (max-width: 900px) {
    header,
    .prestations,
    .about,
    .guarantees,
    .quote-cta,
    .contact-page,
    .map-section,
    .legal-page {
        padding-left: 2rem;
        padding-right: 2rem;
    }

    .legal-page__content {
        padding: 2.4rem;
    }

    .about__intro,
    .prestations__intro,
    .guarantees__intro {
        flex-direction: column;
        align-items: flex-start;
    }

    .about__intro-left h2,
    .prestations__intro-left h2,
    .guarantees__intro-left h2 {
        font-size: 2.5rem;
        line-height: 1.12;
    }

    .about__stats,
    .prestations__grid {
        grid-template-columns: 1fr 1fr;
    }

    .about-stat--featured {
        grid-column: 1 / -1;
    }

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

    .guarantee-item p {
        max-width: 620px;
    }

    .quote-cta h2 {
        font-size: 2.5rem;
    }

    .site-footer {
        padding-left: 0;
        padding-right: 0;
    }

    .site-footer__grid,
    .site-footer__bottom,
    .site-footer__big {
        padding-left: 2rem;
        padding-right: 2rem;
    }

    .site-footer__top {
        right: 2rem;
    }

    .site-footer__grid {
        grid-template-columns: 1fr 1fr;
    }

    .site-footer__brand {
        grid-column: 1 / -1;
    }

    .contact-page__inner {
        grid-template-columns: 1fr;
    }

    .contact-info__grid,
    .contact-info .site-footer__contact {
        grid-template-columns: 1fr 1fr;
    }

    .map-section__frame {
        height: 340px;
    }

    .service-features {
        gap: 3rem;
        padding: 5rem 2rem;
    }

    .service-features__row {
        flex-direction: column;
        gap: 3rem;
    }

    .service-feature {
        max-width: none;
        flex: 1 1 auto;
    }
}

@media (max-width: 640px) {
    header {
        padding-left: 1.2rem;
        padding-right: 1.2rem;
        padding-top: 0.7rem;
        padding-bottom: 0.7rem;
        margin-bottom: 0;
        position: relative;
    }

    .prestations__intro {
        padding-top: 0;
        margin-bottom: 1.5rem;
    }

    .error-page {
        padding: 3rem 1.2rem 4rem;
    }

    .error-page__code {
        font-size: 5rem;
    }

    .error-page__inner h1 {
        font-size: 1.5rem;
    }

    .error-page__actions {
        flex-direction: column;
        width: 100%;
    }

    .error-page__actions .btn-quote,
    .error-page__secondary {
        width: 100%;
        justify-content: center;
    }

    header:has(#site-nav.is-open) {
        border-bottom-left-radius: 0;
        border-bottom-right-radius: 0;
    }

    header img {
        width: 8rem;
    }

    .nav-toggle {
        display: flex;
        position: relative;
        z-index: 1001;
    }

    .nav-backdrop {
        position: fixed;
        inset: 0;
        z-index: 998;
        background-color: rgba(0, 0, 0, 0.45);
        opacity: 0;
        visibility: hidden;
        transition: opacity 0.3s ease, visibility 0.3s ease;
    }

    .nav-backdrop.is-open {
        visibility: visible;
    }

    #site-nav {
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        width: auto;
        height: auto;
        z-index: 999;
        flex-direction: column;
        align-items: stretch;
        justify-content: flex-start;
        gap: 0;
        margin-top: 0;
        padding: 0.5rem 1rem 1.2rem;
        border-radius: 0 0 1.25rem 1.25rem;
        background-color: var(--color-white);
        box-shadow: 0 24px 50px rgba(0, 0, 0, 0.2);
        transform: translateY(-14px);
        opacity: 0;
        visibility: hidden;
        pointer-events: none;
        transition: opacity 0.3s ease, transform 0.3s ease, visibility 0.3s ease;
    }

    #site-nav.is-open {
        opacity: 1;
        visibility: visible;
        pointer-events: auto;
        transform: translateY(0);
    }

    #site-nav li {
        width: 100%;
        overflow: hidden;
        opacity: 0;
        transform: translateY(-8px);
        transition: opacity 0.3s ease, transform 0.3s ease;
        border-bottom: 1px solid rgba(21, 21, 21, 0.1);
    }

    #site-nav li:last-child {
        border-bottom: none;
    }

    #site-nav.is-open li {
        opacity: 1;
        transform: translateY(0);
    }

    #site-nav.is-open li:nth-child(1) { transition-delay: 0.05s; }
    #site-nav.is-open li:nth-child(2) { transition-delay: 0.1s; }
    #site-nav.is-open li:nth-child(3) { transition-delay: 0.15s; }
    #site-nav.is-open li:nth-child(4) { transition-delay: 0.2s; }

    #site-nav li a {
        display: block;
        padding: 1rem 0.4rem;
        font-size: 1.1rem;
        font-weight: 500;
        color: var(--color-black);
    }

    #site-nav li a#contact {
        display: flex;
        justify-content: center;
        width: 100%;
        margin: 0.8rem 0 0.2rem;
    }

    .cta {
        flex-direction: column;
        gap: 0.8rem;
    }

    .hero {
        min-height: 70vh;
        height: auto;
        margin: 0;
        border-radius: 0;
        padding: 5rem 1.2rem;
    }

    .hero h1 {
        font-size: 2rem;
    }

    .hero p {
        font-size: 1rem;
        line-height: 1.6;
    }

    .prestations,
    .about,
    .guarantees,
    .quote-cta,
    .contact-page,
    .map-section,
    .legal-page {
        padding: 4rem 1.2rem;
    }

    .legal-page__intro {
        padding-top: 0;
        gap: 1rem;
    }

    .legal-page__intro h1 {
        font-size: 2rem;
        line-height: 1.2;
    }

    .legal-page__content {
        padding: 1.6rem;
        border-radius: 1rem;
        gap: 1.8rem;
    }

    .legal-page__content h2 {
        font-size: 1.15rem;
    }

    .map-section {
        padding-top: 0;
    }

    .about,
    .guarantees {
        gap: 3rem;
    }

    .about__intro-left h2,
    .prestations__intro-left h2,
    .guarantees__intro-left h2 {
        font-size: 2.1rem;
    }

    .about__intro-right p,
    .guarantees__intro-right p {
        font-size: 1rem;
    }

    .about__stats,
    .prestations__grid {
        grid-template-columns: 1fr;
    }

    .about__stats {
        padding: 1rem;
        gap: 1rem;
    }

    .about-stat,
    .about-stat--featured {
        padding: 1.4rem;
    }

    .about-stat__number {
        font-size: 3rem;
    }

    .about-stat h3 {
        font-size: 1.35rem;
    }

    .guarantee-item__visual {
        height: 118px;
        margin-bottom: 1rem;
    }

    .guarantee-item__visual--rge {
        width: 220px;
    }

    .guarantee-item__visual--artipole {
        width: 280px;
    }

    .guarantee-item__visual--decennale {
        width: 118px;
    }

    .guarantee-item h3 {
        font-size: 1.05rem;
    }

    .guarantee-item p {
        font-size: 1rem;
    }

    .quote-cta__inner {
        min-height: 390px;
        padding: 4rem 1.2rem;
    }

    .quote-cta h2 {
        font-size: 2rem;
    }

    .quote-cta p {
        font-size: 1rem;
    }

    .btn-quote {
        white-space: normal;
        justify-content: center;
        text-align: center;
    }

    .site-footer {
        padding: 4rem 0 0;
    }

    .site-footer__grid,
    .site-footer__bottom,
    .site-footer__big {
        padding-left: 1.2rem;
        padding-right: 1.2rem;
    }

    .site-footer__grid {
        grid-template-columns: 1fr;
        gap: 2.4rem;
    }

    .site-footer__brand img {
        width: 14rem;
    }

    .site-footer h2 {
        font-size: 1.35rem;
    }

    .site-footer__contact strong {
        font-size: 1.25rem;
    }

    .site-footer__bottom {
        min-height: 8.5rem;
        align-items: center;
        justify-content: flex-start;
        padding-right: 4.5rem;
        padding-bottom: 1.4rem;
    }

    .site-footer__top {
        right: 1.2rem;
        bottom: 2.6rem;
        width: 3rem;
        height: 3rem;
    }

    .site-footer__big {
        width: 100%;
        padding-left: 1.2rem;
        padding-right: 1.2rem;
        font-size: 9vw;
        line-height: 0.9;
        height: 0.86em;
        word-spacing: 0.01em;
        transform: translateY(0.08em);
    }

    .contact-page__inner {
        padding: 1.1rem;
        gap: 2rem;
        border-radius: 1.2rem;
    }

    .contact-info h1 {
        font-size: 1.9rem;
    }

    .contact-info__grid,
    .contact-info .site-footer__contact {
        grid-template-columns: 1fr;
        gap: 1.6rem;
    }

    .contact-form {
        padding: 1.3rem;
        order: -1;
    }

    .contact-info {
        display: contents;
    }

    .contact-info h1 {
        order: -2;
    }

    .contact-form__title {
        font-size: 1.3rem;
    }

    .contact-form__subtitle {
        font-size: 0.9rem;
        margin-bottom: 1.4rem;
    }

    .contact-form__row {
        grid-template-columns: 1fr;
        gap: 1rem;
        margin-bottom: 1.1rem;
    }

    .contact-form__fields > .contact-form__field {
        margin-bottom: 1.1rem;
    }

    .contact-form input[type="text"],
    .contact-form input[type="tel"],
    .contact-form input[type="email"],
    .contact-form textarea {
        font-size: 1rem;
        padding: 0.85rem 1.1rem;
    }

    .contact-form__consent label {
        font-size: 0.9rem;
    }

    .map-section__frame {
        height: 280px;
        border-radius: 0.7rem;
    }

    .service-hero {
        min-height: auto;
        margin: 0;
        border-radius: 0;
        padding: 6rem 1.2rem 3rem;
    }

    .service-features {
        padding: 3rem 1.2rem;
    }

    .service-feature__number {
        position: absolute;
        top: 0;
        left: -2.5rem;
        z-index: -1;
        font-size: 6rem;
    }

    .service-feature__title {
        font-size: 1.5rem;
    }

    .realisations {
        padding: 1rem 1.2rem 4rem;
    }

    .realisations h2 {
        font-size: 2.1rem;
        line-height: 1.15;
    }

    .carousel__slide {
        width: 88%;
    }

    .carousel__slide img {
        height: 280px;
    }
}

/*-------------ANIMATIONS AU SCROLL (DESKTOP UNIQUEMENT)-------------*/

@media (min-width: 901px) {
    .reveal {
        opacity: 0;
        transform: translateY(32px);
        transition: opacity 0.7s ease, transform 0.7s ease;
    }

    .reveal.is-visible {
        opacity: 1;
        transform: translateY(0);
    }
}

/*-------------LIGHTBOX (aperçu image en grand)-------------*/

body.lightbox-open {
    position: fixed;
    left: 0;
    right: 0;
    width: 100%;
    overflow: hidden;
}

.lightbox {
    position: fixed;
    inset: 0;
    z-index: 1000;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 3rem 2rem;
    background-color: rgba(10, 10, 10, 0.92);
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
}

.lightbox.is-open {
    opacity: 1;
    visibility: visible;
}

.lightbox__img {
    max-width: min(92vw, 1400px);
    max-height: 88vh;
    border-radius: 0.6rem;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
    transform: scale(0.94);
    transition: transform 0.3s ease;
}

.lightbox.is-open .lightbox__img {
    transform: scale(1);
}

.lightbox__close {
    position: absolute;
    top: 1.5rem;
    right: 1.5rem;
    width: 3rem;
    height: 3rem;
    border-radius: 50%;
    border: 2px solid rgba(255, 255, 255, 0.4);
    background-color: rgba(255, 255, 255, 0.08);
    color: var(--color-white);
    display: grid;
    place-items: center;
    cursor: pointer;
    transition: background-color 0.3s ease, transform 0.3s ease;
}

.lightbox__close:hover {
    background-color: var(--color-yellow);
    border-color: var(--color-yellow);
    color: var(--color-black);
    transform: rotate(90deg);
}

.lightbox__close svg {
    width: 1.3rem;
    height: 1.3rem;
    fill: none;
    stroke: currentColor;
    stroke-width: 2;
    stroke-linecap: round;
}

@media (max-width: 640px) {
    .lightbox {
        padding: 1.2rem;
    }

    .lightbox__close {
        top: 1rem;
        right: 1rem;
        width: 2.6rem;
        height: 2.6rem;
    }

    .carousel__slide::after {
        width: 2.4rem;
        height: 2.4rem;
        bottom: 1rem;
        right: 1rem;
        background-size: 1.1rem;
    }
}
