:root {
    --black: #050404;
    --black2: #0a0908;
    --panel: #100f0d;
    --brown: #24170f;
    --gold: #b68242;
    --gold2: #d2a363;
    --cream: #f2e7d4;
    --text: #e5dac8;
    --muted: #a69884;
    --line: rgba(182, 130, 66, 0.34);
    --softLine: rgba(255, 255, 255, 0.07);
    --page: 1180px;
}

/* ================= RESET ================= */

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    background: #000;
    color: var(--text);
    font-family: "Avenir Next", Avenir, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

body::before {
    content: "";
    position: fixed;
    inset: 0;
    background:
        radial-gradient(circle at 50% 12%, rgba(182, 130, 66, 0.12), transparent 420px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.025) 1px, transparent 1px),
        linear-gradient(rgba(255, 255, 255, 0.018) 1px, transparent 1px);
    background-size: auto, 42px 42px, 42px 42px;
    opacity: 0.55;
    pointer-events: none;
    z-index: -1;
}

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

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

/* ================= PAGE ================= */

.page {
    width: min(100%, var(--page));
    margin: 0 auto;
    background: #070606;
    box-shadow: 0 0 90px rgba(0, 0, 0, 0.95);
    overflow: hidden;
}

/* ================= HEADER ================= */

.header {
    height: 138px;
    padding: 32px 44px 0;
    background: linear-gradient(180deg, #070606 0%, #080706 100%);
    border-bottom: 1px solid var(--softLine);
    position: relative;
    z-index: 5;
}

.brand {
    display: flex;
    align-items: center;
    gap: 18px;
}

.crest {
    width: 78px;
    height: 78px;
    display: grid;
    place-items: center;
    color: var(--gold2);
    font-family: Georgia, serif;
    font-size: 18px;
    letter-spacing: -1px;
    border: 1px solid var(--gold);
    background:
        radial-gradient(circle, rgba(210, 163, 99, 0.12), transparent 65%),
        linear-gradient(135deg, rgba(182, 130, 66, 0.10), transparent);
    position: relative;
}

.crest::before,
.crest::after {
    content: "";
    position: absolute;
    inset: 8px;
    border: 1px solid rgba(210, 163, 99, 0.38);
}

.crest::after {
    inset: 16px;
    transform: rotate(45deg);
}

.crest span {
    position: relative;
    z-index: 2;
}

.brand-text strong {
    display: block;
    color: var(--gold2);
    font-family: Georgia, "Times New Roman", serif;
    font-size: clamp(30px, 3vw, 42px);
    font-weight: 400;
    line-height: 0.95;
    letter-spacing: 0.04em;
    text-transform: uppercase;
}

.brand-text em {
    display: block;
    color: var(--cream);
    font-style: normal;
    font-size: 15px;
    line-height: 1;
    margin-top: 10px;
    letter-spacing: 0.06em;
}

/* ================= NAV ================= */

.nav {
    position: absolute;
    right: 44px;
    bottom: 22px;
    display: flex;
    gap: 34px;
    align-items: center;
    color: var(--cream);
    font-size: 12px;
    font-weight: 500;
    letter-spacing: 0.06em;
    text-transform: uppercase;
}

.nav a {
    color: rgba(242, 231, 212, 0.82);
    position: relative;
    padding-bottom: 10px;
}

.nav a.active,
.nav a:hover {
    color: var(--gold2);
}

.nav a.active::after,
.nav a:hover::after {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    height: 2px;
    background: var(--gold);
}

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

.menu-button {
    display: none;
    border: 0;
    background: transparent;
    padding: 6px;
}

.menu-button span {
    display: block;
    width: 28px;
    height: 2px;
    margin: 6px 0;
    background: var(--cream);
}

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

.hero {
    position: relative;
    min-height: calc(100vh - 138px);
    overflow: hidden;
    border-bottom: 1px solid var(--line);
    background: #080706;
}
.hero h1 {
    margin: 0;
    font-family: Georgia, "Times New Roman", serif;
    font-size: clamp(38px, 3.7vw, 38px);
    line-height: 1.4;
    font-weight: 400;
    letter-spacing: -0.03em;
    text-transform: uppercase;
    color: var(--cream);
    text-shadow: 0 3px 18px rgba(0, 0, 0, 0.75);
    transform: translateY(-45px);
}

.hero h1 .line {
    display: block;
    white-space: nowrap;
}

.hero h1 .gold {
    color: var(--gold2);
}

.hero-text {
    position: relative;
    z-index: 2;
    width: 56%;
    min-height: calc(100vh - 138px);
    padding: 0 0 150px 54px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    transform: translateY(-55px);
}
.hero p {
    margin: 42px 0 0;
    color: rgba(242, 231, 212, 0.86);
    font-size: clamp(15px, 1.45vw, 18px);
    line-height: 1.85;
    max-width: 510px;
}

.hero-actions {
    display: flex;
    gap: 14px;
    flex-wrap: wrap;
    margin-top: 40px;
}

.hero-actions .button {
    margin-top: 0;
}

.hero-bg {
    position: absolute;
    inset: 0;
    z-index: 0;
    background-size: cover;
    background-position: center right;
    background-repeat: no-repeat;
    filter: contrast(1.08) saturate(0.78) brightness(0.78);
    transform: scale(1.04);
    animation: slowZoom 18s ease-in-out infinite alternate;
}

.hero-mask {
    position: absolute;
    inset: 0;
    z-index: 1;
    pointer-events: none;
    background:
        linear-gradient(
            90deg,
            rgba(5, 4, 4, 1) 0%,
            rgba(5, 4, 4, 0.98) 18%,
            rgba(5, 4, 4, 0.90) 34%,
            rgba(5, 4, 4, 0.55) 52%,
            rgba(5, 4, 4, 0.18) 70%,
            rgba(5, 4, 4, 0.35) 100%
        ),
        linear-gradient(
            180deg,
            rgba(0, 0, 0, 0.20) 0%,
            rgba(0, 0, 0, 0.05) 48%,
            rgba(0, 0, 0, 0.88) 100%
        );
}

.button {
    display: inline-flex;
    width: fit-content;
    max-width: max-content;
    height: 48px;
    align-items: center;
    justify-content: center;
    padding: 0 24px;
    color: #fff;
    background: linear-gradient(135deg, rgba(210, 163, 99, 0.72), rgba(128, 83, 33, 0.68));
    border: 1px solid rgba(210, 163, 99, 0.55);
    font-size: 12px;
    font-weight: 900;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    box-shadow: 0 18px 38px rgba(0, 0, 0, 0.30);
    transition: transform 0.25s ease, filter 0.25s ease, background 0.25s ease;
}

.button-secondary {
    background: rgba(0, 0, 0, 0.28);
    color: var(--cream);
}

.hero-values {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 3;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    min-height: 118px;
    background: rgba(5, 5, 5, 0.78);
    border-top: 1px solid var(--line);
    backdrop-filter: blur(8px);
}

.hero-values article {
    text-align: center;
    padding: 22px 18px 18px;
    border-right: 1px solid var(--softLine);
}

.hero-values article:last-child {
    border-right: 0;
}

.hero-values span {
    display: block;
    color: var(--gold2);
    font-size: 24px;
    line-height: 1;
    margin-bottom: 9px;
}

.hero-values strong {
    display: block;
    color: var(--gold2);
    font-size: 13px;
    font-weight: 900;
    letter-spacing: 0.06em;
    text-transform: uppercase;
}

.hero-values p {
    margin: 7px 0 0;
    color: var(--muted);
    font-size: 12px;
    line-height: 1.35;
}

.value-svg {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 14px;
}

.value-svg svg {
    width: 38px;
    height: 38px;
    stroke: var(--gold2);
    stroke-width: 2;
    fill: none;
    stroke-linecap: round;
    stroke-linejoin: round;
    filter: drop-shadow(0 0 10px rgba(210, 163, 99, 0.18));
}

/* ================= BUTTON ================= */

.button {
    display: inline-flex;
    height: 50px;
    align-items: center;
    margin-top: 38px;
    padding: 0 26px;
    color: #fff;
    background: linear-gradient(135deg, var(--gold2), #805321);
    border: 1px solid rgba(255, 255, 255, 0.10);
    font-size: 12px;
    font-weight: 900;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    box-shadow: 0 18px 38px rgba(0, 0, 0, 0.38);
    transition: transform 0.25s ease, filter 0.25s ease;
}

.button:hover {
    transform: translateY(-3px);
    filter: brightness(1.08);
}



/* ================= ATELIER ================= */

.atelier {
    display: grid;
    grid-template-columns: 54% 46%;
    min-height: 100vh;
    border-bottom: 1px solid var(--line);
    background: #0b0a09;
}

.atelier-image {
    position: relative;
    overflow: hidden;
    border-right: 1px solid var(--softLine);
    min-height: 100vh;
}

.atelier-image::after {
    content: "";
    position: absolute;
    inset: 0;
    background:
        linear-gradient(
            90deg,
            rgba(0, 0, 0, 0.10) 0%,
            rgba(0, 0, 0, 0.18) 55%,
            rgba(11, 10, 9, 0.78) 100%
        ),
        linear-gradient(
            180deg,
            rgba(0, 0, 0, 0.10) 0%,
            rgba(0, 0, 0, 0.65) 100%
        );
    pointer-events: none;
}

.atelier-image img {
    height: 100%;
    min-height: 100vh;
    object-fit: cover;
    object-position: center;
    filter: contrast(1.05) saturate(0.78) brightness(0.68);
    transition: transform 0.9s ease;
}

.atelier:hover .atelier-image img {
    transform: scale(1.04);
}

.atelier-content {
    min-height: 100vh;
    padding: 80px 64px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    background:
        radial-gradient(circle at top left, rgba(182, 130, 66, 0.13), transparent 320px),
        linear-gradient(180deg, #100f0d 0%, #070606 100%);
}

.atelier-content h2, .popup-overlay h2 {
    margin: 0 0 40px;
    color: var(--gold2);
    font-family: Georgia, "Times New Roman", serif;
    font-size: clamp(34px, 3.4vw, 52px);
    font-weight: 400;
    line-height: 1.16;
    text-transform: uppercase;
}

.atelier-content p {
    max-width: 520px;
    margin: 0 0 22px;
    color: rgba(242, 231, 212, 0.78);
    font-size: clamp(15px, 1.3vw, 18px);
    line-height: 1.85;
}

.text-link {
    display: inline-flex;
    width: fit-content;
    margin-top: 22px;
    color: var(--gold2);
    font-size: 12px;
    font-weight: 900;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.text-link::after {
    content: "→";
    margin-left: 10px;
    transition: transform 0.25s ease;
}

.text-link:hover::after {
    transform: translateX(5px);
}

h2.popup-title {
    font-size: 1.4em;
    line-height: 1.1;
}

.popup-title span {
    display: block;
}

.popup-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 9999;
    padding: 24px;

    opacity: 0;
    visibility: hidden;
    pointer-events: none;

    transition:
        opacity 0.35s ease,
        visibility 0.35s ease,
        background 0.35s ease;
}

.popup-overlay.active {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    background: rgba(0, 0, 0, 0.72);
}

.popup-box {
    position: relative;
    width: min(720px, 100%);
    max-height: 82vh;
    background: linear-gradient(145deg, #160f0a, #0d0805);
    border: 1px solid rgba(201, 158, 94, 0.45);
    box-shadow:
        0 30px 90px rgba(0, 0, 0, 0.65),
        inset 0 0 0 1px rgba(255, 255, 255, 0.03);

    padding: 42px 46px;
    color: #e8ded0;

    transform: translateY(28px) scale(0.94);
    opacity: 0;
    filter: blur(8px);

    transition:
        transform 0.42s cubic-bezier(0.16, 1, 0.3, 1),
        opacity 0.35s ease,
        filter 0.42s ease;
}

.popup-overlay.active .popup-box {
    transform: translateY(0) scale(1);
    opacity: 1;
    filter: blur(0);
}

.popup-box::before {
    content: "";
    position: absolute;
    inset: 0;
    border-radius: inherit;
    background: radial-gradient(
        circle at top left,
        rgba(201, 158, 94, 0.18),
        transparent 42%
    );
    pointer-events: none;
}

.popup-text {
    position: relative;
    max-height: 52vh;
    overflow-y: auto;
    padding-right: 16px;
    font-size: 18px;
    line-height: 1.7;
    color: rgba(232, 222, 208, 0.88);
}

.popup-text p {
    margin: 0 0 18px;
}

.popup-close {
    position: absolute;
    top: 14px;
    right: 18px;
    z-index: 2;
    border: none;
    background: transparent;
    color: #c99e5e;
    font-size: 34px;
    line-height: 1;
    cursor: pointer;
    transition: transform 0.25s ease, color 0.25s ease;
}

.popup-close:hover {
    color: #fff;
    transform: rotate(90deg);
}

.popup-technicien {
    margin-bottom: 20px;

    display: flex;
    align-items: center;
    gap: 22px;
}

.technicien-photo {
    width: 150px;
    height: 150px;
    border-radius: 50%;
    padding: 4px;
    background: linear-gradient(135deg, var(--gold2), rgba(255,255,255,0.28));
    box-shadow: 0 0 18px rgba(212, 176, 96, 0.18);
    flex: 0 0 auto;
}

.technicien-photo img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
    border-radius: 50%;
    border: 2px solid rgba(20, 16, 12, 0.95);
}

.technicien-info {
    display: flex;
    flex-direction: column;
    line-height: 1.25;
}

.technicien-label {
    font-size: 14px;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: rgba(255,255,255,0.66);
    margin-bottom: 7px;
}

.technicien-info strong {
    font-family: Georgia, "Times New Roman", serif;
    font-size: 30px;
    font-weight: 400;
    color: var(--gold2);
}

.popup-keywords {
    position: relative;
    margin-top: 34px;
    padding-top: 24px;
    overflow: hidden;
    border-top: 1px solid rgba(212, 176, 96, 0.28);
}

.popup-keywords::before,
.popup-keywords::after {
    content: "";
    position: absolute;
    top: 24px;
    bottom: 0;
    width: 80px;
    z-index: 2;
    pointer-events: none;
}

.popup-keywords::before {
    left: 0;
    background: linear-gradient(
        90deg,
        rgba(18, 14, 10, 0.98),
        rgba(18, 14, 10, 0)
    );
}

.popup-keywords::after {
    right: 0;
    background: linear-gradient(
        270deg,
        rgba(18, 14, 10, 0.98),
        rgba(18, 14, 10, 0)
    );
}

.popup-keywords:hover .keywords-track {
    animation-play-state: paused;
}

.keywords-track {
    display: flex;
    align-items: center;
    gap: 12px;
    width: max-content;
    animation: keywordsScroll 38s linear infinite;
}

.keywords-track span {
    display: inline-flex;
    align-items: center;
    white-space: nowrap;

    padding: 9px 16px;
    border-radius: 999px;

    font-size: 13px;
    letter-spacing: 0.04em;
    color: var(--gold2);

    border: 1px solid rgba(212, 176, 96, 0.38);
    background: linear-gradient(
        135deg,
        rgba(212, 176, 96, 0.18),
        rgba(255, 255, 255, 0.04)
    );

    box-shadow:
        inset 0 1px 0 rgba(255, 255, 255, 0.08),
        0 8px 18px rgba(0, 0, 0, 0.20);
}

@keyframes keywordsScroll {
    from {
        transform: translateX(0);
    }
    to {
        transform: translateX(-50%);
    }
}

/* ================= PRESTATIONS ================= */

.prestations {
    padding: 44px 28px 52px;
    background: #080706;
    border-bottom: 1px solid var(--line);
}

.section-title {
    margin: 0 0 32px;
    text-align: center;
    color: var(--gold2);
    font-family: Georgia, "Times New Roman", serif;
    font-size: clamp(28px, 3vw, 38px);
    font-weight: 400;
    letter-spacing: 0.03em;
    text-transform: uppercase;
}

.cards {
    --columns: 4;
    --card-min: 210px;
    --card-max: 245px;

    display: grid;
    grid-template-columns: repeat(var(--columns), minmax(var(--card-min), var(--card-max)));
    gap: 26px;
    justify-content: center;
}

.cards.is-4 {
    --columns: 4;
}

.cards.is-6 {
    --columns: 6;
}

.card {
    min-height: 300px;
    display: flex;
    flex-direction: column;
    border: 1px solid var(--line);
    background: linear-gradient(180deg, #11100e 0%, #080706 100%);
    overflow: hidden;
    transition: transform 0.25s ease, border-color 0.25s ease;
}

.card:hover {
    transform: translateY(-4px);
    border-color: rgba(210, 163, 99, 0.8);
}

.card img {
    height: 135px;
    object-fit: cover;
    filter: contrast(1.08) saturate(0.70) brightness(0.68);
    transition: transform 0.45s ease;
}

.card:hover img {
    transform: scale(1.06);
}

.card div {
    padding: 17px 16px 18px;
}

.card h3 {
    margin: 0 0 10px;
    color: var(--gold2);
    font-size: 14px;
    line-height: 1.25;
    font-weight: 900;
    letter-spacing: 0.03em;
    text-transform: uppercase;
}

.card p {
    min-height: 62px;
    margin: 0;
    color: var(--muted);
    font-size: 12px;
    line-height: 1.5;
}

.card span {
    display: inline-flex;
    margin-top: 12px;
    color: var(--gold2);
    font-size: 10px;
    font-weight: 900;
    text-transform: uppercase;
}

.card span::after {
    content: "→";
    margin-left: 6px;
}

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

.footer {
    display: grid;
    grid-template-columns: 1.1fr 1.1fr 1.3fr;
    min-height: 280px;
    background:
        radial-gradient(circle at top left, rgba(182, 130, 66, 0.12), transparent 360px),
        linear-gradient(90deg, rgba(38, 22, 13, 0.72), rgba(8, 7, 6, 0.96)),
        #080706;
    border-top: 1px solid var(--line);
    border-bottom: 1px solid var(--softLine);
}

.footer > div {
    padding: 42px 46px;
    border-right: 1px solid var(--softLine);
}

.footer > div:last-child {
    border-right: 0;
}

/* Bloc marque */

.footer-brand strong {
    display: block;
    color: var(--gold2);
    font-family: Georgia, "Times New Roman", serif;
    font-size: clamp(24px, 2.2vw, 34px);
    font-weight: 400;
    line-height: 1.05;
    letter-spacing: 0.06em;
    text-transform: uppercase;
}

.footer-brand em {
    display: block;
    color: var(--cream);
    font-style: normal;
    margin-top: 12px;
    font-size: 15px;
}

.footer-brand p {
    max-width: 340px;
    margin: 28px 0 0;
    color: rgba(242, 231, 212, 0.62);
    font-size: 14px;
    line-height: 1.7;
}

/* Bloc infos */

.footer-contact {
    display: grid;
    gap: 18px;
    align-content: center;
}

.footer-contact a,
.footer-contact div {
    display: grid;
    grid-template-columns: 34px 1fr;
    gap: 14px;
    align-items: start;
    color: rgba(242, 231, 212, 0.82);
    font-size: 15px;
    line-height: 1.5;
}

.footer-contact a {
    transition: color 0.25s ease, transform 0.25s ease;
}

.footer-contact a:hover {
    color: var(--gold2);
    transform: translateX(4px);
}

.footer-icon {
    width: 34px;
    height: 34px;
    display: grid;
    place-items: center;
    color: var(--gold2);
    border: 1px solid rgba(210, 163, 99, 0.45);
    background: rgba(0, 0, 0, 0.28);
    font-size: 15px;
}

/* Bloc map */

.footer-map {
    padding: 24px;
}

.footer-map iframe {
    width: 100%;
    height: 100%;
    min-height: 230px;
    border: 1px solid rgba(210, 163, 99, 0.35);
    filter: grayscale(1) invert(0.88) contrast(0.95) brightness(0.72);
    opacity: 0.78;
}

.footer-map:hover iframe {
    opacity: 0.95;
}

/* Legal */

.legal {
    padding: 16px 10px 18px;
    text-align: center;
    background: #050404;
    color: rgba(242, 231, 212, 0.42);
    font-size: 10px;
    text-transform: uppercase;
    letter-spacing: 0.08em;
}

.legal span {
    margin: 0 12px;
}

/* ================= LEGAL ================= */

.legal {
    padding: 16px 10px 18px;
    text-align: center;
    background: #050404;
    color: rgba(242, 231, 212, 0.42);
    font-size: 10px;
    text-transform: uppercase;
    letter-spacing: 0.08em;
}

.legal span {
    margin: 0 12px;
}

/* ================= ANIMATIONS ================= */

.reveal {
    opacity: 0;
    transform: translateY(24px);
    transition: opacity 0.75s ease, transform 0.75s ease;
}

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

.delay-1 {
    transition-delay: 0.12s;
}

.delay-2 {
    transition-delay: 0.22s;
}

.delay-3 {
    transition-delay: 0.32s;
}

.delay-4 {
    transition-delay: 0.42s;
}

@keyframes slowZoom {
    from {
        transform: scale(1.03);
    }

    to {
        transform: scale(1.08);
    }
}

/* ================= RESPONSIVE ================= */

@media (max-width: 980px) {
    :root {
        --page: 100%;
    }

    .header {
        height: auto;
        padding: 24px 24px;
    }

    .brand-text strong {
        font-size: 25px;
    }

    .crest {
        width: 58px;
        height: 58px;
    }

    .menu-button {
        display: block;
        position: absolute;
        right: 24px;
        top: 38px;
    }

    .nav {
        position: static;
        display: none;
        width: 100%;
        margin-top: 22px;
        flex-direction: column;
        align-items: flex-start;
        gap: 0;
    }

    .nav.open {
        display: flex;
    }

    .nav a {
        width: 100%;
        padding: 15px 0;
        border-top: 1px solid var(--softLine);
    }

    .hero {

            min-height: 720px;

        }

        .hero-bg {

            background-position: center right;

        }

        .hero-mask {

            background:

                linear-gradient(

                    180deg,

                    rgba(5, 4, 4, 0.92) 0%,

                    rgba(5, 4, 4, 0.70) 45%,

                    rgba(5, 4, 4, 0.96) 100%

                );

        }

        .hero-text {

            width: 100%;

            min-height: 720px;

            padding: 80px 32px 70px;

            justify-content: flex-end;

        }

        .hero h1 {

            font-size: clamp(42px, 9vw, 58px);

        }

    .values {
        grid-template-columns: repeat(2, 1fr);
    }

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

    .atelier-image {
        border-right: 0;
        min-height: 320px;
    }

    .cards {
        grid-template-columns: repeat(2, 1fr);
    }

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

    .footer > div {
        border-right: 0;
        border-bottom: 1px solid var(--softLine);
    }
}

@media (max-width: 560px) {
    .brand {
        gap: 12px;
    }

    .brand-text strong {
        font-size: 18px;
    }

    .brand-text em {
        font-size: 11px;
    }

    .crest {
        width: 48px;
        height: 48px;
    }

    .hero {

           min-height: 650px;

       }

       .hero-text {

           min-height: 650px;

           padding: 70px 24px 54px;

       }

       .hero h1 {

           font-size: 39px;

       }

       .hero p {

           font-size: 14px;

       }

    .values,
    .cards {
        grid-template-columns: 1fr;
    }

    .value {
        border-right: 0;
        border-bottom: 1px solid var(--softLine);
    }

    .atelier-content {
        padding: 34px 26px;
    }

    .prestations {
        padding: 36px 18px 42px;
    }

    .card {
        min-height: auto;
    }
}

@media (max-width: 640px) {
    .popup-keywords {
        margin-top: 26px;
        padding-top: 20px;
    }

    .popup-keywords::before,
    .popup-keywords::after {
        top: 20px;
        width: 44px;
    }

    .keywords-track {
        gap: 9px;
        animation-duration: 32s;
    }

    .keywords-track span {
        padding: 8px 13px;
        font-size: 12px;
    }
}
