:root {
    --pink: #d79ab8;
    --pink-dark: #c783a4;
    --gold: #c9a15d;
    --cream: #fffaf7;
    --cream-2: #f8edf2;
    --white: #ffffff;
    --dark: #2f2929;
    --text: #756c6c;
    --border: rgba(47, 41, 41, 0.10);
    --shadow-soft: 0 25px 70px rgba(54, 43, 43, 0.08);
    --shadow-medium: 0 35px 90px rgba(54, 43, 43, 0.14);
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body { font-family: 'Poppins', sans-serif; background: var(--cream); color: var(--dark); overflow-x: hidden; }
img { max-width: 100%; display: block; }
a { color: inherit; }
main { display: block; width: 100%; }
.container { width: min(1180px, 90%); margin: 0 auto; }

/* Header */
.site-header {
    background: rgba(255, 250, 247, 0.96);
    border-bottom: 1px solid rgba(47, 41, 41, 0.06);
    position: relative;
    z-index: 1000;
    padding: 14px 0 20px;
}
.site-header__inner {
    width: min(1180px, 90%);
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 16px;
}
.site-header__logo img { height: 102px; width: auto; object-fit: contain; }
.site-nav { display: flex; align-items: center; justify-content: center; gap: 38px; flex-wrap: wrap; }
.site-nav a {
    text-decoration: none;
    color: var(--dark);
    font-size: 14px;
    font-weight: 800;
    letter-spacing: 3px;
    text-transform: uppercase;
    transition: .25s ease;
}
.site-nav a:hover { color: var(--pink); }
.site-nav__cta {
    padding: 16px 32px;
    border-radius: 999px;
    background: var(--pink);
    color: #fff !important;
}
.site-nav__cta:hover { background: var(--pink-dark); }

/* Hero — version premium */
.hero {
    position: relative;
    min-height: 760px;
    height: calc(100vh - 190px);
    max-height: 900px;
    display: flex;
    align-items: center;
    padding: 90px 24px 110px;
    background-image: url("../images/hero.jpg");
    background-position: 58% center;
    background-size: cover;
    background-repeat: no-repeat;
    overflow: hidden;
    isolation: isolate;
}
.hero__overlay {
    position: absolute;
    inset: 0;
    z-index: -1;
    background: linear-gradient(90deg, rgba(31,25,25,.66) 0%, rgba(31,25,25,.50) 34%, rgba(31,25,25,.20) 68%, rgba(31,25,25,.08) 100%);
}
.hero__content {
    width: min(1180px, 90%);
    margin: 0 auto;
    color: #fff;
}
.hero__kicker {
    margin: 0 0 24px;
    color: #f2afd0;
    font-size: 13px;
    font-weight: 800;
    letter-spacing: 4px;
    line-height: 1.5;
    text-transform: uppercase;
}
.hero h1 {
    max-width: 760px;
    margin: 0 0 30px;
    color: #fff;
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(64px, 7.2vw, 104px);
    font-weight: 600;
    line-height: .88;
    letter-spacing: -2px;
}
.hero__text {
    max-width: 670px;
    margin: 0 0 38px;
    color: rgba(255,255,255,.92);
    font-size: 19px;
    font-weight: 400;
    line-height: 1.75;
}
.hero__actions {
    display: flex;
    align-items: center;
    gap: 16px;
    flex-wrap: wrap;
    margin-bottom: 36px;
}
.hero .btn {
    min-width: 180px;
    min-height: 58px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0 32px;
    border: 1px solid transparent;
    border-radius: 999px;
    text-decoration: none;
    font-size: 16px;
    font-weight: 800;
    transition: transform .3s ease, background-color .3s ease, color .3s ease, border-color .3s ease, box-shadow .3s ease;
}
.hero .btn--primary {
    background: #d790b3;
    color: #fff;
    box-shadow: 0 18px 45px rgba(215,144,179,.32);
}
.hero .btn--primary:hover {
    background: #c5789e;
    transform: translateY(-3px);
    box-shadow: 0 24px 55px rgba(215,144,179,.42);
}
.hero .btn--secondary {
    border-color: rgba(255,255,255,.78);
    background: rgba(255,255,255,.16);
    color: #fff;
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
}
.hero .btn--secondary:hover {
    border-color: #fff;
    background: #fff;
    color: var(--dark);
    transform: translateY(-3px);
}
.hero__rating {
    display: flex;
    align-items: center;
    gap: 14px;
    flex-wrap: wrap;
    color: rgba(255,255,255,.84);
    font-size: 15px;
}
.hero__stars {
    color: #e2b75f;
    font-size: 21px;
    letter-spacing: 2px;
}
.hero__rating strong { color: #fff; font-size: 16px; }
.hero__rating-divider { width: 4px; height: 4px; border-radius: 50%; background: rgba(255,255,255,.65); }
.hero__scroll {
    position: absolute;
    left: 50%;
    bottom: 25px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2px;
    color: rgba(255,255,255,.82);
    text-decoration: none;
    text-transform: uppercase;
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 2px;
    transform: translateX(-50%);
}
.hero__scroll-arrow { font-size: 21px; animation: heroScrollBounce 1.8s infinite; }
@keyframes heroScrollBounce { 0%,100%{transform:translateY(0)} 50%{transform:translateY(7px)} }

/* Global sections */
.section { padding: 130px 0; }
.section-heading { text-align: center; max-width: 850px; margin: 0 auto 70px; }
.section-heading h2,
.about__content h2,
.contact__card h2 {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(46px, 6vw, 76px);
    line-height: 1;
    color: var(--dark);
    margin-bottom: 28px;
}
.section-heading p,
.about__content p,
.contact__card p { font-size: 18px; line-height: 1.8; color: var(--text); }

/* Services */
.services-section,
.services {
    background: var(--cream);
}

.services-section .section-heading {
    text-align: center;
    max-width: 850px;
    margin: 0 auto 70px;
}

.services-section .section-kicker {
    display: inline-block;
    margin-bottom: 18px;
    color: var(--pink);
    font-size: 14px;
    font-weight: 800;
    letter-spacing: 4px;
    text-transform: uppercase;
}

.services-section .section-heading h2 {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(46px, 6vw, 76px);
    line-height: 1;
    color: var(--dark);
    margin-bottom: 28px;
}

.services-section .section-heading p {
    font-size: 18px;
    line-height: 1.8;
    color: var(--text);
}

.services-grid,
.services__grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 28px;
}

.service-card {
    display: flex;
    flex-direction: column;
    position: relative;
    min-width: 0;
    overflow: hidden;
    border-radius: 30px;
    background: #fff;
    box-shadow: var(--shadow-soft);
    transition: transform .35s ease, box-shadow .35s ease;
}

.service-card::before {
    display: none;
}

.service-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-medium);
}

.service-card__image {
    position: relative;
    width: 100%;
    height: 220px;
    overflow: hidden;
    background: #f4e9ee;
}

.service-card__image img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
    object-position: center center;
    transition: transform .45s ease;
}

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

/* Ajuste le cadrage de chaque photo si nécessaire */
.service-card:nth-child(1) .service-card__image img { object-position: center 38%; }
.service-card:nth-child(2) .service-card__image img { object-position: center center; }
.service-card:nth-child(3) .service-card__image img { object-position: center 35%; }
.service-card:nth-child(4) .service-card__image img { object-position: center center; }
.service-card:nth-child(5) .service-card__image img { object-position: center center; }
.service-card:nth-child(6) .service-card__image img { object-position: center 64%; }

.service-card__content {
    display: flex;
    flex: 1;
    flex-direction: column;
    padding: 22px 28px 28px;
}

.service-card__number {
    display: none;
}

.service-card h3 {
    margin-bottom: 16px;
    color: var(--dark);
    font-family: 'Cormorant Garamond', serif;
    font-size: 34px;
    line-height: 1.05;
}

.service-card p {
    margin-bottom: 24px;
    color: var(--text);
    font-size: 15px;
    line-height: 1.75;
}

.service-card__content > a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    align-self: flex-start;
    gap: 8px;
    min-height: 44px;
    margin-top: auto;
    padding: 0 18px;
    border-radius: 999px;
    background: var(--pink);
    color: #fff;
    text-decoration: none;
    font-size: 13px;
    font-weight: 800;
    box-shadow: 0 12px 28px rgba(215, 154, 184, 0.24);
    transition: transform .3s ease, background-color .3s ease, box-shadow .3s ease;
}

.service-card__content > a span {
    color: #fff;
    font-size: 18px;
    transition: transform .3s ease;
}

.service-card__content > a:hover {
    background: var(--pink-dark);
    color: #fff;
    transform: translateY(-2px);
    box-shadow: 0 16px 34px rgba(215, 154, 184, 0.32);
}

.service-card__content > a:hover span {
    transform: translateX(5px);
}


/* About */
.about {
    background: linear-gradient(135deg, #fffaf7 0%, #f8edf2 100%);
}

.about__grid {
    display: grid;
    grid-template-columns: minmax(0, .95fr) minmax(0, 1.05fr);
    gap: 80px;
    align-items: center;
}

.about__visual {
    position: relative;
    min-height: 650px;
    overflow: hidden;
    border-radius: 38px;
    background: #f5e8ee;
    box-shadow: var(--shadow-medium);
}

.about__image {
    width: 100%;
    height: 100%;
    min-height: 650px;
    display: block;
    object-fit: cover;
    object-position: 50% center;
    transition: transform .6s ease;
}

.about__visual:hover .about__image {
    transform: scale(1.025);
}

.section-kicker {
    display: inline-block;
    margin-bottom: 18px;
    color: var(--pink);
    font-size: 13px;
    font-weight: 800;
    letter-spacing: 4px;
    text-transform: uppercase;
}

.about__content h2 {
    max-width: 650px;
    margin-bottom: 32px;
    color: var(--dark);
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(48px, 5.6vw, 74px);
    font-weight: 600;
    line-height: .98;
}

.about__content p {
    max-width: 650px;
    margin-bottom: 20px;
    color: var(--text);
    font-size: 18px;
    line-height: 1.85;
}

.about__content p strong { color: var(--dark); }

.about__list {
    display: grid;
    gap: 16px;
    margin: 34px 0 38px;
    padding: 0;
}

.about__list li {
    display: flex;
    align-items: center;
    gap: 14px;
    list-style: none;
    color: var(--dark);
    font-size: 17px;
    font-weight: 700;
}

.about__list li::before {
    content: '✓';
    flex: 0 0 34px;
    width: 34px;
    height: 34px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: rgba(215, 154, 184, .17);
    color: var(--pink-dark);
    font-size: 16px;
    font-weight: 900;
}

.about__button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 54px;
    padding: 0 30px;
    border-radius: 999px;
    background: var(--pink);
    color: #fff;
    text-decoration: none;
    font-size: 15px;
    font-weight: 800;
    box-shadow: 0 16px 38px rgba(215, 154, 184, .28);
    transition: transform .3s ease, background-color .3s ease, box-shadow .3s ease;
}

.about__button:hover {
    background: var(--pink-dark);
    transform: translateY(-3px);
    box-shadow: 0 22px 48px rgba(215, 154, 184, .38);
}

.about__rating {
    display: flex;
    align-items: center;
    gap: 13px;
    margin-top: 28px;
}

.about__rating span {
    color: var(--gold);
    font-size: 20px;
    letter-spacing: 2px;
}

.about__rating strong {
    color: var(--dark);
    font-size: 15px;
}

/* =====================================================
   GALLERY
===================================================== */

.gallery{
    background:#fff;
}

.gallery__grid{
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:24px;
}

.gallery__item{
    position:relative;
    display:block;
    height:340px;
    overflow:hidden;
    border-radius:30px;
    background:#f4e9ee;
    box-shadow:0 22px 60px rgba(54,43,43,.10);
    text-decoration:none;
}

.gallery__item img{
    width:100%;
    height:100%;
    object-fit:cover;
    object-position:center;
    transition:.45s;
}

.gallery__overlay{
    position:absolute;
    inset:0;
    display:flex;
    justify-content:center;
    align-items:center;
    background:rgba(47,41,41,.35);
    color:#fff;
    font-size:13px;
    font-weight:800;
    letter-spacing:2px;
    text-transform:uppercase;
    opacity:0;
    transition:.3s;
}

.gallery__item:hover img{
    transform:scale(1.05);
    filter:brightness(.9);
}

.gallery__item:hover .gallery__overlay{
    opacity:1;
}

/* Lightbox */

.gallery-lightbox{
    position:fixed;
    inset:0;
    z-index:9999;
    display:none;
    justify-content:center;
    align-items:center;
    background:rgba(0,0,0,.88);
}

.gallery-lightbox.is-open{
    display:flex;
}

.gallery-lightbox__image{
    max-width:90%;
    max-height:90%;
    border-radius:20px;
}

.gallery-lightbox__close{
    position:absolute;
    top:25px;
    right:30px;
    width:52px;
    height:52px;
    border:none;
    border-radius:50%;
    background:#fff;
    color:#2f2929;
    font-size:32px;
    cursor:pointer;
}

@media(max-width:1000px){

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

.gallery__item{
    height:300px;
}

}

@media(max-width:760px){

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

.gallery__item{
    height:260px;
}

}
/* Contact */
.contact { background: var(--cream); }

.contact__grid {
    display: grid;
    grid-template-columns: minmax(0, .95fr) minmax(0, 1.05fr);
    gap: 70px;
    align-items: start;
}

.contact__card {
    display: flex;
    flex-direction: column;
    padding: 66px;
    border-radius: 38px;
    background: #fff;
    box-shadow: var(--shadow-soft);
}

.contact__card h2 {
    max-width: 540px;
    margin-bottom: 28px;
    color: var(--dark);
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(48px, 5.6vw, 72px);
    font-weight: 600;
    line-height: .98;
}

.contact__intro {
    max-width: 520px;
    margin-bottom: 40px;
    color: var(--text);
    font-size: 18px;
    line-height: 1.8;
}

.contact__info { display: grid; gap: 24px; margin-bottom: 38px; }
.contact__info > div { padding-bottom: 23px; border-bottom: 1px solid var(--border); }
.contact__info strong { display: block; margin-bottom: 9px; color: var(--pink); font-size: 13px; font-weight: 800; letter-spacing: 2px; text-transform: uppercase; }
.contact__info span, .contact__info a { color: var(--dark); font-size: 17px; line-height: 1.7; text-decoration: none; }
.contact__info > div > a:not(.contact__map-link):hover { color: var(--pink-dark); }

.contact__map-link { display: inline-flex; margin-top: 10px; color: var(--pink-dark) !important; font-size: 14px !important; font-weight: 800; transition: transform .3s ease, color .3s ease; }
.contact__map-link:hover { color: var(--dark) !important; transform: translateX(4px); }
.contact__closed { display: block; margin-top: 8px; color: var(--pink-dark) !important; font-weight: 700; }

.contact__actions { display: flex; gap: 14px; flex-wrap: wrap; margin-top: auto; }
.contact__button { min-height: 54px; display: inline-flex; align-items: center; justify-content: center; padding: 0 28px; border-radius: 999px; text-decoration: none; font-size: 14px; font-weight: 800; transition: transform .3s ease, background-color .3s ease, color .3s ease, box-shadow .3s ease; }
.contact__button--primary { background: var(--pink); color: #fff; box-shadow: 0 15px 35px rgba(215, 154, 184, .28); }
.contact__button--primary:hover { background: var(--pink-dark); transform: translateY(-3px); box-shadow: 0 20px 42px rgba(215, 154, 184, .38); }
.contact__button--whatsapp { background: var(--dark); color: #fff; }
.contact__button--whatsapp:hover { background: #1f1a1a; transform: translateY(-3px); }

.contact__social { display: flex; align-items: center; gap: 18px; flex-wrap: wrap; margin-top: 30px; padding-top: 24px; border-top: 1px solid var(--border); }
.contact__social span { color: var(--text); font-size: 13px; font-weight: 700; letter-spacing: 2px; text-transform: uppercase; }
.contact__social a { color: var(--dark); text-decoration: none; font-size: 14px; font-weight: 800; transition: color .3s ease; }
.contact__social a:hover { color: var(--pink-dark); }

.contact__map-card {
    overflow: hidden;
    border-radius: 38px;
    background: #fff;
    box-shadow: 0 30px 90px rgba(54, 43, 43, .12);
}

.contact__map {
    height: 430px;
    overflow: hidden;
    background: #f2ece9;
}

.contact__map iframe {
    width: 100%;
    height: 100%;
    display: block;
    border: 0;
}

.contact__map-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    padding: 24px 28px;
    background: #fff;
}

.contact__map-footer div { display: grid; gap: 5px; }
.contact__map-footer strong { color: var(--dark); font-family: 'Cormorant Garamond', serif; font-size: 25px; }
.contact__map-footer span { color: var(--text); font-size: 14px; }
.contact__map-footer a { flex: 0 0 auto; display: inline-flex; align-items: center; justify-content: center; min-height: 46px; padding: 0 20px; border-radius: 999px; background: var(--pink); color: #fff; text-decoration: none; font-size: 13px; font-weight: 800; transition: transform .3s ease, background-color .3s ease; }
.contact__map-footer a:hover { background: var(--pink-dark); transform: translateY(-2px); }


/* Footer */
.site-footer { background: var(--dark); color: #fff; padding: 70px 0 30px; }
.site-footer__grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr; gap: 50px; }
.site-footer__logo { height: 92px; width: auto; margin-bottom: 16px; }
.site-footer h3 { font-family: 'Cormorant Garamond', serif; font-size: 30px; margin-bottom: 16px; }
.site-footer p,
.site-footer a { color: rgba(255,255,255,.75); line-height: 1.8; text-decoration: none; }
.site-footer__bottom { text-align: center; margin-top: 50px; padding-top: 24px; border-top: 1px solid rgba(255,255,255,.12); color: rgba(255,255,255,.55); }
.whatsapp-floating { position: fixed; right: 28px; bottom: 28px; z-index: 9998; padding: 18px 30px; border-radius: 999px; background: #20d466; color: #fff; text-decoration: none; font-weight: 800; box-shadow: 0 18px 45px rgba(32,212,102,.35); }

/* Default page */
.default-page { padding: 90px 0; }
.default-page h1 { font-family: 'Cormorant Garamond', serif; font-size: 64px; margin-bottom: 24px; }

/* Responsive */
@media (max-width: 1000px) {
    .services-grid,
    .services__grid { grid-template-columns: repeat(2, 1fr); }
    .about__grid,
    .contact__grid,
    .site-footer__grid { grid-template-columns: 1fr; gap: 50px; }
    .gallery__grid { grid-template-columns: repeat(2, 1fr); }
    .contact__map { min-height: 460px; }
}
@media (max-width: 760px) {
    .site-header__logo img { height: 82px; }
    .site-nav { gap: 18px; }
    .site-nav a { font-size: 12px; letter-spacing: 2px; }
    .site-nav__cta { padding: 14px 24px; }
    .hero { min-height: auto; padding: 70px 16px; }
    .hero__card { min-height: auto; padding: 55px 24px; border-radius: 0 0 42px 42px; }
    .hero__text { font-size: 18px; }
    .section { padding: 90px 0; }
    .services-grid,
    .services__grid,
    .gallery__grid { grid-template-columns: 1fr; }
    .service-card { min-height: auto; }
    .service-card__image { height: 210px; }
    .service-card__content { padding: 24px; }
    .about__visual { min-height: 420px; border-radius: 28px; }
    .about__circle { width: 135px; height: 135px; right: 18px; bottom: 28px; }
    .about__circle strong { font-size: 26px; }
    .about__points div { border-radius: 22px; align-items: flex-start; }
    .gallery__item--tall,
    .gallery__item--wide { grid-row: auto; grid-column: auto; }
    .contact__card { padding: 42px 28px; border-radius: 28px; }
    .contact__map { min-height: 360px; border-radius: 28px; }
    .whatsapp-floating { right: 18px; bottom: 18px; padding: 15px 22px; font-size: 14px; }
}
/* =====================================================
   TRUST SECTION
===================================================== */

.trust-section {
    position: relative;
    z-index: 5;
    padding: 0 0 95px;
    background: #fffaf7;
}

.trust-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 22px;
    margin-top: -45px;
}

.trust-item {
    display: flex;
    align-items: flex-start;
    gap: 22px;
    min-height: 190px;
    padding: 34px 30px;
    border: 1px solid rgba(47, 41, 41, 0.07);
    border-radius: 28px;
    background: rgba(255, 255, 255, 0.96);
    box-shadow: 0 24px 60px rgba(54, 43, 43, 0.10);
    transition:
        transform 0.3s ease,
        box-shadow 0.3s ease;
}

.trust-item:hover {
    transform: translateY(-7px);
    box-shadow: 0 32px 75px rgba(54, 43, 43, 0.15);
}

.trust-icon {
    flex: 0 0 58px;
    width: 58px;
    height: 58px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: #f8e4ee;
    color: #d28eaf;
    font-family: Georgia, serif;
    font-size: 28px;
    line-height: 1;
}

.trust-item h2 {
    margin: 2px 0 10px;
    color: #2f2929;
    font-family: "Cormorant Garamond", serif;
    font-size: 30px;
    line-height: 1.05;
}

.trust-item p {
    margin: 0;
    color: #756c6c;
    font-size: 15px;
    line-height: 1.7;
}

/* Tablette */

@media (max-width: 1000px) {
    .trust-grid {
        grid-template-columns: 1fr;
        max-width: 720px;
    }

    .trust-item {
        min-height: auto;
    }
}

/* Mobile */

@media (max-width: 760px) {
    .trust-section {
        padding-bottom: 75px;
    }

    .trust-grid {
        margin-top: -25px;
    }

    .trust-item {
        gap: 18px;
        padding: 28px 24px;
        border-radius: 24px;
    }

    .trust-icon {
        flex-basis: 50px;
        width: 50px;
        height: 50px;
        font-size: 24px;
    }

    .trust-item h2 {
        font-size: 27px;
    }
}

/* Latest responsive overrides */
@media (max-width: 1000px) {
    .about__grid,
    .contact__grid {
        grid-template-columns: 1fr;
        gap: 50px;
    }

    .about__visual,
    .about__image {
        min-height: 570px;
    }

    .contact__card { padding: 56px; }
    .contact__map { height: 380px; }
}

@media (max-width: 760px) {
    .about__visual,
    .about__image {
        min-height: 470px;
        border-radius: 28px;
    }

    .about__image { object-position: 52% center; }
    .about__content h2 { font-size: clamp(44px, 13vw, 62px); }
    .about__content p { font-size: 17px; line-height: 1.75; }
    .about__list li { align-items: flex-start; font-size: 16px; }
    .about__button { width: 100%; max-width: 310px; }

    .contact__card { padding: 42px 26px; border-radius: 28px; }
    .contact__card h2 { font-size: clamp(44px, 13vw, 62px); }
    .contact__intro { font-size: 17px; }
    .contact__actions { flex-direction: column; }
    .contact__button { width: 100%; }
    .contact__social { align-items: flex-start; }
    .contact__map-card { border-radius: 28px; }
    .contact__map { height: 300px; }
    .contact__map-footer { flex-direction: column; align-items: flex-start; padding: 22px; }
    .contact__map-footer a { width: 100%; }
}

/* =====================================================
   MOBILE HEADER + HERO FIX
   Corrige le texte du Hero coupé sur iPhone
===================================================== */

@media (max-width: 760px) {

    .site-header {
        padding: 12px 0 16px;
    }

    .site-header__inner {
        width: min(100% - 28px, 560px);
        gap: 14px;
    }

    .site-header__logo img {
        height: 78px;
        width: auto;
    }

    .site-nav {
        width: 100%;
        gap: 14px 18px;
        justify-content: center;
    }

    .site-nav a {
        font-size: 11px;
        letter-spacing: 1.6px;
    }

    .site-nav__cta {
        padding: 12px 20px;
    }

    .hero {
        height: auto;
        min-height: 760px;
        max-height: none;
        align-items: flex-start;
        padding: 72px 18px 90px;
        background-position: 62% center;
        overflow: visible;
    }

    .hero__content {
        width: 100%;
        margin: 0 auto;
    }

    .hero__kicker {
        margin: 0 0 20px;
        font-size: 11px;
        line-height: 1.55;
        letter-spacing: 2.4px;
    }

    .hero__kicker span {
        display: block;
        margin-top: 4px;
    }

    .hero h1 {
        margin-bottom: 24px;
        font-size: clamp(54px, 15vw, 74px);
        line-height: .94;
        letter-spacing: -1px;
    }

    .hero__text {
        margin-bottom: 30px;
        font-size: 17px;
        line-height: 1.65;
    }

    .hero__actions {
        gap: 14px;
        margin-bottom: 28px;
    }

    .hero .btn {
        width: 100%;
        min-width: 0;
        min-height: 56px;
    }

    .hero__rating {
        gap: 9px;
        font-size: 13px;
    }

    .hero__scroll {
        display: none;
    }

    .whatsapp-floating {
        right: 16px;
        bottom: 18px;
        padding: 14px 20px;
        font-size: 14px;
    }
}

/* Footer legal */

.site-footer__bottom{
    text-align:center;
    margin-top:50px;
    padding-top:24px;
    border-top:1px solid rgba(255,255,255,.12);
}

.site-footer__bottom p{
    margin-bottom:18px;
    color:rgba(255,255,255,.60);
    font-size:13px;
    line-height:1.7;
}

.site-footer__legal{
    display:flex;
    justify-content:center;
    align-items:center;
    gap:16px;
    flex-wrap:wrap;
}

.site-footer__legal a{
    color:rgba(255,255,255,.85);
    font-size:13px;
    font-weight:700;
    text-decoration:none;
    transition:.3s;
}

.site-footer__legal a:hover{
    color:var(--pink);
}

.site-footer__legal span{
    color:rgba(255,255,255,.35);
}

@media (max-width:760px){

    .site-footer__legal{
        flex-direction:column;
        gap:10px;
    }

    .site-footer__legal span{
        display:none;
    }

}