:root {
    --background: #f5f4ef;
    --text: #101010;
    --muted: #666;
    --line: #d9d7d0;
    --blue: #315cf5;
    --black: #111;
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: "DM Sans", sans-serif;
    background: var(--background);
    color: var(--text);
    line-height: 1.5;
}

img {
    width: 100%;
    display: block;
}

a {
    color: inherit;
    text-decoration: none;
}

h1,
h2,
h3,
blockquote {
    font-family: "DM Serif Display", serif;
    font-weight: 400;
}


/* HEADER */

.header {
    max-width: 1440px;
    margin: auto;
    height: 100px;
    display: flex;
    align-items: center;
    padding: 0 5%;
    gap: 50px;
}

.logo {
    display: flex;
    align-items: center;
    font-weight: 700;
    letter-spacing: 2px;
    font-size: 18px;
}

.logo > span:last-child span {
    color: var(--blue);
}

.logo-symbol {
    color: var(--blue);
    margin-right: 8px;
}

nav {
    margin-left: auto;
    display: flex;
    gap: 35px;
    font-size: 13px;
}

nav a {
    transition: opacity .25s ease;
}

nav a:hover {
    opacity: .45;
}


/* BUTTONS */

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 13px 22px;
    border-radius: 30px;
    font-size: 13px;
    transition:
        transform .25s ease,
        background .25s ease;
}

.btn:hover {
    transform: translateY(-2px);
}

.btn-dark {
    background: #111;
    color: white;
}

.btn-blue {
    background: var(--blue);
    color: white;
}

.btn-outline {
    border: 1px solid var(--line);
}


/* HERO */

.hero {
    max-width: 1440px;
    margin: auto;
    min-height: 560px;
    padding: 45px 5% 75px;

    display: grid;
    grid-template-columns: 0.95fr 1.1fr;
    gap: 60px;

    align-items: center;
}
.hero-content {
    max-width: 580px;
}

.eyebrow {
    color: var(--blue);
    font-size: 10px;
    font-weight: 600;
    letter-spacing: 1.3px;
    margin-bottom: 18px;
}

.hero h1 {
    font-size: clamp(58px, 5vw, 72px);
    line-height: 0.98;
    letter-spacing: -2px;
    max-width: 570px;
}

.hero-description {
    max-width: 470px;
    color: var(--muted);
    font-size: 16px;
    line-height: 1.55;
    margin: 28px 0 30px;
}

.hero-buttons {
    display: flex;
    gap: 12px;
}

.hero-visual {
    width: 100%;
    overflow: hidden;
    align-self: center;
    position: relative;
}

.hero-slider {
    position: relative;
    width: 100%;
    aspect-ratio: 16 / 9;
    overflow: hidden;
    cursor: grab;
    user-select: none;
    touch-action: pan-y;

    border-radius: 6px;

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

    transition:
        box-shadow 0.35s ease,
        transform 0.35s ease;
}
.hero-slider:hover {
    box-shadow:
        0 14px 34px rgba(0, 0, 0, 0.11),
        0 4px 12px rgba(0, 0, 0, 0.06);

    transform: translateY(-2px);
}
.hero-slider:active {
    cursor: grabbing;
}

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

    opacity: 0;
    transform: translateX(35px) scale(0.985);

    transition:
        opacity 0.65s ease,
        transform 0.65s cubic-bezier(.2,.8,.2,1);

    pointer-events: none;
}

.hero-slide.active {
    opacity: 1;
    transform: translateX(0) scale(1);
    pointer-events: auto;
}

.hero-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    pointer-events: none;
}


/* DOTS */

.hero-dots {
    display: flex;
    justify-content: center;
    gap: 7px;
    margin-top: 16px;
}

.hero-dot {
    width: 8px;
    height: 8px;

    border: 0;
    border-radius: 50%;

    background: #c9c9c9;

    cursor: pointer;

    transition:
        width .3s ease,
        background .3s ease;
}

.hero-dot.active {
    width: 24px;
    border-radius: 10px;
    background: #315cf5;
}


/* GENERAL */

.section {
    max-width: 1440px;
    margin: auto;
    padding: 100px 5%;
}

.section h2 {
    font-size: clamp(44px, 4vw, 66px);
    line-height: 1;
    letter-spacing: -1px;
}

.section-heading > p:last-child,
.section-description {
    color: var(--muted);
    margin-top: 18px;
}


/* PROJECTS */

/* SELECTED WORK */

.work-section {
    padding-top: 110px;
    padding-bottom: 120px;
}

.section-heading {
    max-width: 700px;
}

.section-heading > p:last-child {
    max-width: 520px;
    line-height: 1.55;
}


/* GRID */

.projects-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 70px 28px;
    margin-top: 60px;
}


/* PROJECT */

.project {
    cursor: pointer;
    transition: transform 0.45s cubic-bezier(.2,.8,.2,1);
}

.project:hover {
    transform: translateY(-6px);
}


/* IMAGE */

.project-image {
    position: relative;
    overflow: hidden;

    width: 100%;
    aspect-ratio: 16 / 9;

    border-radius: 12px;

    background: #e8e7e2;

    box-shadow:
        0 4px 14px rgba(0,0,0,.04);

    transition:
        box-shadow .45s ease,
        transform .45s ease;
}

.project-image img {
    width: 100%;
    height: 100%;

    object-fit: cover;
    display: block;

    transition:
        transform .8s cubic-bezier(.2,.8,.2,1),
        filter .5s ease;
}


/* ZOOM */

.project:hover .project-image img {
    transform: scale(1.035);
}


/* SOFT SHADOW ON HOVER */

.project:hover .project-image {
    box-shadow:
        0 18px 45px rgba(0,0,0,.10);
}


/* ARROW */

.project-image::after {
    content: "↗";

    position: absolute;
    right: 18px;
    bottom: 18px;

    width: 42px;
    height: 42px;

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

    background: rgba(255,255,255,.94);
    color: #111;

    border-radius: 50%;

    font-size: 18px;

    opacity: 0;
    transform:
        translateY(8px)
        scale(.9);

    transition:
        opacity .35s ease,
        transform .35s cubic-bezier(.2,.8,.2,1);
}

.project:hover .project-image::after {
    opacity: 1;

    transform:
        translateY(0)
        scale(1);
}


/* META */

.project-meta {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;

    gap: 20px;

    padding-top: 16px;
}

.project-meta h3 {
    font-size: 28px;
    line-height: 1;

    font-style: italic;

    transition:
        transform .35s ease;
}

.project:hover .project-meta h3 {
    transform: translateX(4px);
}

.project-meta p {
    margin-top: 7px;

    font-size: 11px;

    color: var(--muted);
}

.project-meta > span {
    padding-top: 3px;

    font-size: 10px;

    color: var(--muted);
}

/* SERVICES */

.services h2 {
    margin-bottom: 50px;
}

.service {
    border-top: 1px solid var(--line);
    min-height: 130px;
    display: grid;
    grid-template-columns: 80px 1fr 1fr;
    align-items: center;
}

.service:last-child {
    border-bottom: 1px solid var(--line);
}

.service > span {
    color: var(--blue);
    font-size: 12px;
}

.service h3 {
    font-size: 31px;
}

.service p {
    color: var(--muted);
    max-width: 360px;
}


/* PROCESS */

.process-grid {
    margin-top: 55px;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

.process-step {
    border-top: 1px solid var(--line);
    padding-top: 18px;
}

.process-step > span {
    color: var(--blue);
    font-size: 36px;
}

.process-step h3 {
    font-size: 25px;
    margin: 6px 0 12px;
}

.process-step p {
    color: var(--muted);
    font-size: 13px;
}


/* TESTIMONIALS */

.testimonial-intro {
    margin: 15px 0 45px;
    color: var(--muted);
    font-style: italic;
}

.testimonial-main {
    background: var(--black);
    color: white;
    border-radius: 18px;
    padding: 40px;
    min-height: 320px;
    display: flex;
    flex-direction: column;
}

.testimonial-main small,
.testimonial-card small {
    color: #8facff;
    font-size: 9px;
    letter-spacing: 1px;
}

.testimonial-main blockquote {
    margin: auto 0;
    font-size: clamp(31px, 3vw, 50px);
}

.testimonial-bottom {
    border-top: 1px solid #333;
    padding-top: 18px;
    display: flex;
    justify-content: space-between;
    align-items: end;
}

.testimonial-bottom strong,
.testimonial-card strong {
    display: block;
    font-size: 11px;
}

.testimonial-bottom span,
.testimonial-card span {
    display: block;
    font-size: 9px;
    opacity: .65;
}

.testimonial-bottom a {
    font-size: 9px;
    color: #6f92ff;
}

.testimonial-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
    margin-top: 24px;
}

.testimonial-card {
    min-height: 260px;
    border-radius: 18px;
    border: 1px solid var(--line);
    padding: 32px;
    display: flex;
    flex-direction: column;
}

.testimonial-card blockquote {
    font-size: 29px;
    line-height: 1;
    margin: auto 0;
}

.blue-card {
    background: #dce5ff;
    border: 0;
}


/* ABOUT */

.about {
    display: grid;
    grid-template-columns: 250px 1fr;
    gap: 70px;
}

.about-content {
    max-width: 850px;
}

.about-content h2 {
    margin-bottom: 32px;
}

.about-content > p {
    color: var(--muted);
    margin-bottom: 18px;
    max-width: 700px;
}

.stats {
    border-top: 1px solid var(--line);
    border-bottom: 1px solid var(--line);
    margin-top: 35px;
    padding: 20px 0;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
}

.stats strong {
    display: block;
    color: var(--blue);
    font-size: 26px;
}

.stats span {
    color: var(--muted);
    font-size: 11px;
}

.text-link {
    display: inline-block;
    margin-top: 25px;
    color: var(--blue);
}


/* CONTACT */

.contact-banner {
    background: #111;
    color: white;
    border-radius: 18px;
    padding: 55px;
}

.contact-banner h2 {
    max-width: 800px;
}

.contact-banner > p:not(.eyebrow) {
    color: #aaa;
    max-width: 500px;
    margin: 25px 0;
}

.email-link {
    margin-left: 20px;
    text-decoration: underline;
    font-size: 13px;
}

.project-form {
    margin-top: 45px;
    border: 1px solid var(--line);
    border-radius: 18px;
    padding: 35px;
}

.form-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

label {
    display: flex;
    flex-direction: column;
    font-size: 11px;
    font-weight: 600;
    margin-bottom: 20px;
}

input,
select,
textarea {
    margin-top: 8px;
    width: 100%;
    padding: 15px;
    border: 1px solid var(--line);
    border-radius: 8px;
    background: #faf9f6;
    font-family: inherit;
}

textarea {
    resize: vertical;
}

.form-submit {
    border: 0;
    background: var(--blue);
    color: white;
    width: 100%;
    padding: 15px;
    border-radius: 30px;
    cursor: pointer;
}

.response-time {
    color: #888;
    font-size: 10px;
    margin-top: 14px;
}


/* FOOTER */

footer {
    max-width: 1440px;
    margin: auto;
    padding: 60px 5% 30px;
}

.footer-main {
    border-top: 1px solid var(--line);
    border-bottom: 1px solid var(--line);
    padding: 35px 0;

    display: flex;
    align-items: center;
    justify-content: space-between;

    gap: 40px;
}

.footer-logo {
    display: flex;
    align-items: center;
    flex-shrink: 0;
}

.footer-logo img {
    width: 120px;
    height: auto;
    display: block;
}

.footer-links {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 28px;
    font-size: 11px;
}

.footer-links {
    display: flex;
    gap: 28px;
    font-size: 11px;
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    color: #777;
    font-size: 9px;
    padding-top: 25px;
}


/* ANIMATIONS */

.reveal {
    opacity: 0;
    transform: translateY(35px);
    transition:
        opacity .8s cubic-bezier(.2,.8,.2,1),
        transform .8s cubic-bezier(.2,.8,.2,1);
}

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


/* RESPONSIVE */

@media (max-width: 900px) {

    nav {
        display: none;
    }

    .header {
        height: 80px;
    }

    .header .btn {
        margin-left: auto;
    }

    .hero {
        grid-template-columns: 1fr;
        padding-top: 70px;
    }

    .hero-visual {
        margin-top: 20px;
    }

    .projects-grid {
        grid-template-columns: 1fr;
    }

    .service {
        grid-template-columns: 50px 1fr;
        padding: 25px 0;
    }

    .service p {
        grid-column: 2;
        margin-top: 12px;
    }

    .process-grid {
        grid-template-columns: 1fr 1fr;
    }

    .about {
        grid-template-columns: 1fr;
    }

}


@media (max-width: 600px) {

    .header {
        padding: 0 20px;
    }

    .header > .btn {
        padding: 10px 14px;
        font-size: 11px;
    }

    .hero,
    .section {
        padding-left: 20px;
        padding-right: 20px;
    }

    .hero {
        gap: 40px;
    }

    .hero h1 {
        font-size: 52px;
    }

    .hero-buttons {
        flex-direction: column;
        align-items: flex-start;
    }

    .process-grid {
        grid-template-columns: 1fr;
    }

    .testimonial-grid {
        grid-template-columns: 1fr;
    }

    .testimonial-main,
    .testimonial-card,
    .contact-banner {
        padding: 25px;
    }

    .form-grid {
        grid-template-columns: 1fr;
    }

    .stats {
        gap: 15px;
    }

    .footer-main {
        flex-direction: column;
        gap: 30px;
    }

    .footer-links {
        flex-wrap: wrap;
    }
} /* ferme le @media */
.logo img {
    width: 170px;
    height: auto;
    display: block;
}
.footer-logo img {
    width: 120px;
    height: auto;
    display: block;
}
/* ========================================
   PROJECT CASE STUDY
======================================== */

.case-study {
    overflow: hidden;
}


/* PROJECT HERO */

.project-hero {
    max-width: 1440px;
    margin: auto;
    padding: 90px 5% 110px;
}

.project-hero-top {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    gap: 60px;

    margin-bottom: 55px;
}

.project-hero h1 {
    font-family: "DM Serif Display", serif;
    font-size: clamp(80px, 10vw, 150px);
    font-weight: 400;
    line-height: .8;
    letter-spacing: -5px;
}


.project-info {
    display: grid;
    grid-template-columns: repeat(3, auto);
    gap: 50px;
}

.project-info div {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.project-info span {
    color: var(--muted);
    font-size: 9px;
    letter-spacing: 1px;
}

.project-info strong {
    font-size: 12px;
    font-weight: 500;
}


.project-cover {
    width: 100%;
    overflow: hidden;
    border-radius: 12px;
}

.project-cover img {
    width: 100%;
    height: auto;
    display: block;

    transition:
        transform 1.2s cubic-bezier(.2,.8,.2,1);
}

.project-cover:hover img {
    transform: scale(1.015);
}



/* OVERVIEW */

.project-overview {
    max-width: 1440px;
    margin: auto;

    padding: 120px 5%;

    display: grid;
    grid-template-columns: 280px 1fr;
    gap: 70px;
}

.overview-content {
    max-width: 850px;
}

.overview-content h2 {
    font-family: "DM Serif Display", serif;

    font-size: clamp(48px, 5vw, 76px);
    font-weight: 400;

    line-height: .98;
    letter-spacing: -2px;

    margin-bottom: 40px;
}

.overview-content p {
    max-width: 620px;

    color: var(--muted);

    font-size: 15px;
    line-height: 1.6;

    margin-bottom: 18px;
}



/* LARGE IMAGE */

.case-image {
    max-width: 1440px;
    margin: auto;
    padding: 0 5%;
}

.case-image img {
    width: 100%;

    display: block;

    border-radius: 12px;
}



/* GALLERY */

.project-gallery {
    max-width: 1440px;

    margin: auto;

    padding: 20px 5% 120px;

    display: grid;
    grid-template-columns: 1fr 1fr;

    gap: 24px;
}

.gallery-image {
    overflow: hidden;
    border-radius: 12px;
}

.gallery-image img {
    width: 100%;
    height: 100%;

    object-fit: cover;

    display: block;

    transition:
        transform .9s cubic-bezier(.2,.8,.2,1);
}

.gallery-image:hover img {
    transform: scale(1.025);
}



/* PROJECT CTA */

.project-cta {
    max-width: 1295px;

    margin: 30px auto 100px;

    padding: 70px;

    background: #111;
    color: white;

    border-radius: 18px;
}

.project-cta h2 {
    font-family: "DM Serif Display", serif;

    font-size: clamp(50px, 5vw, 75px);

    font-weight: 400;

    line-height: .95;

    margin-bottom: 35px;
}



/* NEXT PROJECT */

.next-project {
    max-width: 1295px;

    margin: auto;

    padding: 60px 0 100px;

    border-top: 1px solid var(--line);
}

.next-project > p {
    color: var(--blue);

    font-size: 9px;
    letter-spacing: 1.2px;

    margin-bottom: 30px;
}

.next-project a {
    display: flex;

    justify-content: space-between;
    align-items: center;

    font-family: "DM Serif Display", serif;

    font-size: clamp(60px, 8vw, 120px);

    line-height: 1;

    transition:
        transform .4s cubic-bezier(.2,.8,.2,1);
}

.next-project a:hover {
    transform: translateX(8px);
}



/* PROJECT MOBILE */

@media (max-width: 900px) {

    .project-hero {
        padding-top: 60px;
    }

    .project-hero-top {
        flex-direction: column;
        align-items: flex-start;
    }

    .project-info {
        width: 100%;

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

    .project-overview {
        grid-template-columns: 1fr;
        gap: 25px;
    }

    .project-gallery {
        grid-template-columns: 1fr;
    }

    .project-cta {
        margin-left: 5%;
        margin-right: 5%;
    }

}


@media (max-width: 600px) {

    .project-hero h1 {
        font-size: 75px;
        letter-spacing: -3px;
    }

    .project-info {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .project-overview {
        padding-top: 80px;
        padding-bottom: 80px;
    }

    .project-cta {
        padding: 35px 25px;
    }

    .next-project {
        margin-left: 5%;
        margin-right: 5%;
    }

}
/* AURA GALLERY ANIMATION */

.project-gallery .gallery-image {
    opacity: 0;
    transform: translateY(50px) scale(0.96);

    transition:
        opacity 0.9s ease,
        transform 1s cubic-bezier(.2,.8,.2,1);
}

.project-gallery .gallery-image.visible {
    opacity: 1;
    transform: translateY(0) scale(1);
}

/* deuxième image légèrement retardée */

.project-gallery .gallery-image:nth-child(2) {
    transition-delay: 0.15s;
}
/* EXTRA CASE STUDY IMAGES */

.case-image + .project-gallery {
    padding-top: 25px;
}

.final-case-image {
    padding-bottom: 120px;
}
/* ========================================
   NOVA CASE STUDY
======================================== */

.nova-showcase {
    max-width: 1295px;
    margin: 20px auto 120px;

    background: #101412;
    color: white;

    border-radius: 18px;

    padding: 70px;

    display: grid;
    grid-template-columns: .7fr 1.3fr;

    align-items: center;
    gap: 70px;

    overflow: hidden;
}

.nova-showcase h2 {
    font-family: "DM Serif Display", serif;

    font-size: clamp(48px, 5vw, 76px);

    font-weight: 400;
    line-height: .95;

    margin-bottom: 30px;
}

.nova-showcase-text > p:last-child {
    max-width: 390px;

    color: #a5aaa7;

    font-size: 14px;
    line-height: 1.6;
}

.nova-showcase-image {
    overflow: hidden;
    border-radius: 10px;
}

.nova-showcase-image img {
    width: 100%;
    display: block;

    transition:
        transform 1s cubic-bezier(.2,.8,.2,1);
}

.nova-showcase:hover .nova-showcase-image img {
    transform: scale(1.025);
}


@media (max-width: 900px) {

    .nova-showcase {
        margin-left: 5%;
        margin-right: 5%;

        padding: 40px;

        grid-template-columns: 1fr;
    }

}


@media (max-width: 600px) {

    .nova-showcase {
        padding: 25px;
    }

}
/* NOVA GALLERY */

.nova-final-gallery {
    padding-bottom: 120px;
}
/* ========================================
   ORIGINAL FEEDBACK MODAL
======================================== */

.feedback-open {
    border: 0;
    background: transparent;

    color: var(--blue);

    font-family: inherit;
    font-size: 9px;
    letter-spacing: .5px;

    padding: 0;
    cursor: pointer;

    margin-top: 16px;

    transition: opacity .25s ease;
}

.feedback-open:hover {
    opacity: .55;
}


/* MODAL */

.feedback-modal {
    position: fixed;
    inset: 0;

    z-index: 9999;

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

    padding: 30px;

    opacity: 0;
    visibility: hidden;

    transition:
        opacity .35s ease,
        visibility .35s ease;
}

.feedback-modal.active {
    opacity: 1;
    visibility: visible;
}


/* DARK BACKGROUND */

.feedback-backdrop {
    position: absolute;
    inset: 0;

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

    backdrop-filter: blur(6px);
    -webkit-backdrop-filter: blur(6px);
}


/* IMAGE WINDOW */

.feedback-modal-content {
    position: relative;

    z-index: 2;

    max-width: 900px;
    max-height: 88vh;

    opacity: 0;

    transform:
        translateY(25px)
        scale(.96);

    transition:
        opacity .4s ease,
        transform .45s cubic-bezier(.2,.8,.2,1);
}

.feedback-modal.active .feedback-modal-content {
    opacity: 1;

    transform:
        translateY(0)
        scale(1);
}


.feedback-modal-content img {
    display: block;

    max-width: 100%;
    max-height: 82vh;

    width: auto;
    height: auto;

    border-radius: 12px;

    box-shadow:
        0 30px 80px rgba(0,0,0,.35);
}


/* CLOSE BUTTON */

.feedback-close {
    position: absolute;

    top: -18px;
    right: -18px;

    width: 42px;
    height: 42px;

    border: 0;
    border-radius: 50%;

    background: white;
    color: #111;

    font-size: 25px;
    line-height: 1;

    cursor: pointer;

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

    box-shadow:
        0 8px 30px rgba(0,0,0,.2);

    transition:
        transform .25s ease;
}

.feedback-close:hover {
    transform: rotate(90deg);
}


body.modal-open {
    overflow: hidden;
}


@media (max-width: 600px) {

    .feedback-modal {
        padding: 18px;
    }

    .feedback-close {
        top: -15px;
        right: -5px;
    }

}
/* ========================================
   MOBILE POLISH
======================================== */

@media (max-width: 600px) {

    /* GENERAL SECTIONS */

    .section {
        padding-top: 72px;
        padding-bottom: 72px;
    }


    /* HERO */

    .hero {
        min-height: auto;
        padding-top: 55px;
        padding-bottom: 65px;
    }

    .hero-slider {
        margin-top: 5px;
    }

    .hero-dots {
        margin-top: 10px;
    }


    /* SELECTED WORK */

    .work-section {
        padding-top: 75px;
        padding-bottom: 80px;
    }

    .projects-grid {
        margin-top: 42px;
        gap: 52px;
    }


    /* SERVICES */

    .services {
        padding-top: 75px;
        padding-bottom: 75px;
    }

    .services h2 {
        margin-bottom: 35px;
    }

    .service {
        min-height: auto;
        padding: 28px 0;

        grid-template-columns: 35px 1fr;
    }

    .service h3 {
        font-size: 30px;
    }

    .service p {
        margin-top: 14px;
    }


    /* PROCESS */

    .process {
        padding-top: 75px;
        padding-bottom: 75px;
    }

    .process-grid {
        margin-top: 38px;
        gap: 0;
    }

    .process-step {
        padding: 27px 0;
    }


    /* TESTIMONIALS */

    .testimonials {
        padding-top: 75px;
        padding-bottom: 75px;
    }

    .testimonial-intro {
        margin-bottom: 32px;
    }

    .testimonial-grid {
        gap: 18px;
        margin-top: 18px;
    }


    /* ABOUT */

    .about {
        padding-top: 75px;
        padding-bottom: 75px;
        gap: 35px;
    }

    .about-content h2 {
        margin-bottom: 26px;
    }


    /* CONTACT */

    #contact {
        padding-top: 75px;
        padding-bottom: 75px;
    }

    .contact-banner {
        padding: 32px 24px;
    }

    .project-form {
        margin-top: 25px;
        padding: 22px;
    }

    input,
    select,
    textarea {
        padding: 14px;
    }


    /* FOOTER */

    footer {
        padding-left: 20px;
        padding-right: 20px;
    }
}
/* ========================================
   MOBILE FOOTER + ABOUT TITLE FIX
======================================== */

@media (max-width: 600px) {

    /* ABOUT TITLE */

    .about-content h2 {
        font-size: 38px;
        line-height: 0.98;
        letter-spacing: -1px;
    }


    /* FOOTER */

    .footer-main {
        flex-direction: column;
        align-items: flex-start;
        gap: 28px;
        padding: 30px 0;
    }

    .footer-logo img {
        width: 115px;
    }

    .footer-links {
        width: 100%;

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

        gap: 16px 30px;

        font-size: 11px;
    }

    .footer-links a {
        width: fit-content;
    }

    .footer-bottom {
        flex-direction: column;
        gap: 10px;

        padding-top: 20px;
    }
}
/* FORM SELECT FIX */

.project-form,
.form-grid,
.project-form label {
    min-width: 0;
}

.project-form select,
.project-form input,
.project-form textarea {
    width: 100%;
    max-width: 100%;
    min-width: 0;
    box-sizing: border-box;
}

@media (max-width: 600px) {

    .project-form select {
        width: 100%;
        max-width: 100%;
    }

}
/* ========================================
   MOBILE MENU
======================================== */

.mobile-menu-toggle {
    display: none;
}

.mobile-menu {
    display: none;
}


/* MOBILE */

@media (max-width: 900px) {

    .desktop-nav,
    .desktop-project-btn {
        display: none;
    }


    /* HAMBURGER */

    .mobile-menu-toggle {
        margin-left: auto;

        width: 46px;
        height: 46px;

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

        background: transparent;

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

        gap: 6px;

        cursor: pointer;

        position: relative;
        z-index: 10002;
    }

    .mobile-menu-toggle span {
        width: 18px;
        height: 1.5px;

        background: #111;

        display: block;

        transition:
            transform .35s cubic-bezier(.2,.8,.2,1),
            opacity .25s ease;
    }


    /* HAMBURGER → X */

    .mobile-menu-toggle.active span:first-child {
        transform: translateY(3.75px) rotate(45deg);
    }

    .mobile-menu-toggle.active span:last-child {
        transform: translateY(-3.75px) rotate(-45deg);
    }


    /* MENU */

    .mobile-menu {
        position: fixed;
        inset: 0;

        z-index: 10000;

        display: block;

        background: var(--background);

        opacity: 0;
        visibility: hidden;

        transform: translateY(-15px);

        transition:
            opacity .4s ease,
            visibility .4s ease,
            transform .45s cubic-bezier(.2,.8,.2,1);
    }

    .mobile-menu.active {
        opacity: 1;
        visibility: visible;
        transform: translateY(0);
    }


    .mobile-menu-inner {
        height: 100%;

        padding:
            115px
            25px
            30px;

        display: flex;
        flex-direction: column;
    }


    .mobile-menu-label {
        color: var(--blue);

        font-size: 9px;
        font-weight: 600;

        letter-spacing: 1.2px;

        margin-bottom: 35px;
    }


    /* LINKS */

    .mobile-nav {
        display: flex;
        flex-direction: column;

        margin: 0;
    }

    .mobile-nav a {
        width: 100%;

        padding: 17px 0;

        border-bottom: 1px solid var(--line);

        display: flex;
        align-items: baseline;

        gap: 20px;

        font-family: "DM Serif Display", serif;

        font-size: 43px;
        line-height: 1;

        opacity: 0;
        transform: translateY(20px);

        transition:
            opacity .45s ease,
            transform .45s cubic-bezier(.2,.8,.2,1);
    }

    .mobile-nav a:first-child {
        border-top: 1px solid var(--line);
    }

    .mobile-nav a span {
        color: var(--blue);

        font-family: "DM Sans", sans-serif;

        font-size: 10px;
    }


    /* LINK ANIMATION */

    .mobile-menu.active .mobile-nav a {
        opacity: 1;
        transform: translateY(0);
    }

    .mobile-menu.active .mobile-nav a:nth-child(1) {
        transition-delay: .08s;
    }

    .mobile-menu.active .mobile-nav a:nth-child(2) {
        transition-delay: .13s;
    }

    .mobile-menu.active .mobile-nav a:nth-child(3) {
        transition-delay: .18s;
    }

    .mobile-menu.active .mobile-nav a:nth-child(4) {
        transition-delay: .23s;
    }


    /* CTA */

    .mobile-menu-cta {
        width: fit-content;

        margin-top: 32px;

        padding: 14px 22px;

        border-radius: 30px;

        background: var(--blue);
        color: white;

        font-size: 13px;
    }


    /* BOTTOM */

    .mobile-menu-bottom {
        margin-top: auto;

        padding-top: 20px;

        border-top: 1px solid var(--line);

        display: flex;
        justify-content: space-between;
        gap: 15px;

        color: var(--muted);

        font-size: 9px;
    }


    body.menu-open {
        overflow: hidden;
    }
}
.form-status {
    margin-top: 14px;
    font-size: 12px;
    min-height: 18px;
}

.form-status.success {
    color: #168447;
}

.form-status.error {
    color: #c63838;
}

.form-submit:disabled {
    opacity: .65;
    cursor: wait;
}

/* ========================================
   AURA / PROJECT PAGES — MOBILE POLISH
======================================== */

@media (max-width: 600px) {

    /* PROJECT HERO */

    .project-hero {
        padding: 55px 20px 60px;
    }

    .project-hero-top {
        margin-bottom: 45px;
        gap: 35px;
    }

    .project-hero h1 {
        font-size: 68px;
        line-height: .9;
    }


    /* PROJECT INFORMATION */

    .project-info {
        gap: 18px;
    }


    /* OVERVIEW SECTIONS */

    .project-overview {
        padding: 70px 20px;
        gap: 28px;
    }

    .overview-content h2 {
        font-size: 43px;
        line-height: .98;
        letter-spacing: -1px;
        margin-bottom: 30px;
    }


    /* LARGE SLIDES */

    .case-image {
        padding-left: 20px;
        padding-right: 20px;
    }


    /* TWO-SLIDE GALLERIES */

    .project-gallery {
        padding:
            20px
            20px
            55px;

        gap: 18px;
    }


    /* LAST IMAGE */

    .final-case-image {
        padding-bottom: 70px;
    }


    /* CTA */

    .project-cta {
        margin:
            30px
            20px
            75px;

        padding: 38px 26px;
    }

    .project-cta h2 {
        font-size: 44px;
        line-height: .96;
    }


    /* NEXT PROJECT */

    .next-project {
        margin-left: 20px;
        margin-right: 20px;

        padding-top: 45px;
        padding-bottom: 70px;
    }

    .next-project a {
        font-size: 58px;
    }
}

/* DIABETES TITLE FIX */

@media (max-width: 600px) {

    .diabetes-project h1 {
        font-size: 47px;
        line-height: 0.94;
        letter-spacing: -1.5px;
        overflow-wrap: break-word;
    }

}

/* ESPACE ENTRE DEUX GRANDES SLIDES CONSÉCUTIVES */

.case-study .case-image + .case-image {
    margin-top: 24px;
}

@media (max-width: 600px) {

    .case-study .case-image + .case-image {
        margin-top: 18px;
    }

}