* {
    margin: 0;
}

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

:root {
    --ink: #17140F;
    --ink-2: #1F1B14;
    --gold: #B8944A;
    --gold-bright: #D9B673;
    --cream: #F3EEE3;
    --cream-2: #EAE2D2;
    --charcoal: #2B2723;
    --white: #FFFFFF;
    --line-dark: rgba(184, 148, 74, 0.35);
    --line-light: rgba(43, 39, 35, 0.14);
    --shadow: 0 18px 40px -18px rgba(23, 20, 15, 0.55);
    --shadow-sm: 0 8px 20px -12px rgba(23, 20, 15, 0.35);
    --whatsapp-green: #25D366;
    --radius: 14px;
    --radius-pill: 999px;

    /* kept for any legacy reference */
    --main-yellow: var(--gold);
    --main-grey: var(--cream-2);
    --main-black: var(--ink);
    --main-white: var(--white);
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Work Sans', Arial, Helvetica, sans-serif;
    color: var(--charcoal);
    background: var(--cream);
    -webkit-font-smoothing: antialiased;
}

img {
    max-width: 100%;
}

a {
    color: inherit;
}

h1, h2, h3 {
    text-wrap: balance;
}

.eyebrow {
    display: block;
    font-family: 'Work Sans', sans-serif;
    font-weight: 600;
    font-size: 0.78rem;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: var(--gold);
}

:focus-visible {
    outline: 2px solid var(--gold-bright);
    outline-offset: 3px;
}

@media (prefers-reduced-motion: reduce) {
    * {
        animation-duration: 0.001ms !important;
        transition-duration: 0.001ms !important;
    }
}

/* ============================================================
   BUTTONS
   ============================================================ */

.btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-family: 'Work Sans', sans-serif;
    font-weight: 600;
    font-size: 0.95rem;
    text-decoration: none;
    padding: 0.85rem 1.9rem;
    border-radius: var(--radius-pill);
    border: 1px solid transparent;
    cursor: pointer;
    transition: transform 0.2s ease, box-shadow 0.2s ease, background-color 0.2s ease, color 0.2s ease, border-color 0.2s ease;
}

.btn-lg {
    padding: 1.05rem 2.4rem;
    font-size: 1.05rem;
}

.btn-gold {
    background: var(--gold);
    color: var(--ink);
}

.btn-gold:hover {
    background: var(--gold-bright);
    transform: translateY(-2px);
    box-shadow: var(--shadow-sm);
}

.btn-ghost-dark {
    border-color: rgba(243, 238, 227, 0.4);
    color: var(--cream);
}

.btn-ghost-dark:hover {
    border-color: var(--gold-bright);
    color: var(--gold-bright);
    transform: translateY(-2px);
}

.btn-ghost-light {
    border-color: rgba(43, 39, 35, 0.3);
    color: var(--charcoal);
}

.btn-ghost-light:hover {
    border-color: var(--charcoal);
    transform: translateY(-2px);
}

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

.btn-whatsapp:hover {
    background: #1ebc59;
    transform: translateY(-2px);
    box-shadow: var(--shadow-sm);
}

.btn svg {
    width: 20px;
    height: 20px;
    fill: currentColor;
    flex-shrink: 0;
}

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

header {
    display: flex;
    flex-direction: column;
    width: 100%;
    position: sticky;
    top: 0;
    left: 0;
    right: 0;
    z-index: 100;
    box-shadow: var(--shadow);
}

.utility {
    background: var(--ink);
    color: var(--cream);
    display: flex;
    justify-content: center;
    gap: 2.5rem;
    padding: 0.55rem 1.5rem;
    font-size: 0.82rem;
    font-weight: 500;
    flex-wrap: wrap;
    border-bottom: 1px solid var(--line-dark);
}

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

.utility a:hover {
    color: var(--gold-bright);
}

.utility span {
    opacity: 0.6;
    margin-right: 0.5rem;
    color: var(--gold);
    text-transform: uppercase;
    font-size: 0.72rem;
    letter-spacing: 0.1em;
}

.header-row {
    background: var(--ink-2);
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 2rem;
    padding: 0.9rem 3rem;
}

.brandmark {
    display: flex;
    align-items: center;
    gap: 0.85rem;
    text-decoration: none;
}

.header-logo {
    height: 60px;
    width: auto;
    mix-blend-mode: screen;
    -webkit-mask-image: radial-gradient(ellipse 62% 78% at center, black 45%, transparent 92%);
    mask-image: radial-gradient(ellipse 62% 78% at center, black 45%, transparent 92%);
}

.wordmark {
    font-family: 'Fraunces', serif;
    font-style: italic;
    font-weight: 600;
    font-size: 1.5rem;
    color: var(--cream);
    letter-spacing: 0.01em;
}

.site-nav {
    display: flex;
    align-items: center;
    gap: 0.35rem;
}

.site-nav a {
    text-decoration: none;
    color: var(--cream);
    font-size: 0.92rem;
    font-weight: 500;
    padding: 0.6rem 1rem;
    border-radius: var(--radius-pill);
    transition: background-color 0.2s ease, color 0.2s ease;
}

.site-nav a:hover {
    background: rgba(243, 238, 227, 0.08);
    color: var(--gold-bright);
}

.site-nav a.current {
    color: var(--ink);
    background: var(--gold);
}

.header-actions {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.nav-toggle {
    display: none;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 5px;
    width: 42px;
    height: 42px;
    flex-shrink: 0;
    background: transparent;
    border: 1px solid rgba(243, 238, 227, 0.3);
    border-radius: 10px;
    cursor: pointer;
    padding: 0;
}

.nav-toggle span {
    display: block;
    width: 18px;
    height: 2px;
    background: var(--cream);
    border-radius: 2px;
    transition: transform 0.2s ease, opacity 0.2s ease;
}

.nav-toggle[aria-expanded="true"] span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
}

.nav-toggle[aria-expanded="true"] span:nth-child(2) {
    opacity: 0;
}

.nav-toggle[aria-expanded="true"] span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
}

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

footer {
    background: var(--ink);
    color: var(--cream);
    padding-top: 4.5rem;
    font-family: 'Work Sans', sans-serif;
}

.footer-directory {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 3rem 3rem 3rem;
    display: grid;
    grid-template-columns: 1.1fr 1fr 1fr 1fr;
    gap: 3rem;
}

.footer-brand .wordmark {
    display: block;
    margin-bottom: 0.9rem;
}

.footer-brand p {
    color: rgba(243, 238, 227, 0.75);
    font-size: 0.9rem;
    line-height: 1.6;
    max-width: 32ch;
    margin-bottom: 1.4rem;
}

.footer-col h4 {
    font-family: 'Work Sans', sans-serif;
    font-weight: 600;
    font-size: 0.78rem;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--gold-bright);
    margin-bottom: 1.1rem;
}

.footer-col ul {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 0.55rem;
}

.footer-col li {
    color: rgba(243, 238, 227, 0.75);
    font-size: 0.88rem;
}

.footer-villes li {
    display: flex;
    justify-content: space-between;
    gap: 1rem;
}

.footer-villes li span:last-child {
    color: rgba(243, 238, 227, 0.45);
    font-variant-numeric: tabular-nums;
}

.footer-note {
    padding-top: 0.7rem;
    color: rgba(243, 238, 227, 0.5);
    font-size: 0.85rem;
}

.footer-bottom {
    border-top: 1px solid var(--line-dark);
    padding: 1.4rem 2rem;
    display: flex;
    justify-content: center;
    gap: 2rem;
    flex-wrap: wrap;
    font-size: 0.82rem;
    color: rgba(243, 238, 227, 0.6);
}

.footer-bottom a {
    text-decoration: none;
    color: inherit;
}

.footer-bottom a:hover {
    color: var(--gold-bright);
}

/* WhatsApp floating button (site-wide) */

.whatsapp-float {
    position: fixed;
    bottom: 25px;
    right: 25px;
    width: 60px;
    height: 60px;
    background-color: var(--whatsapp-green);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    box-shadow: 0 4px 14px rgba(0, 0, 0, 0.4);
    z-index: 999;
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.whatsapp-float:hover {
    transform: scale(1.08);
    box-shadow: 0 6px 18px rgba(0, 0, 0, 0.5);
}

.whatsapp-float svg {
    width: 32px;
    height: 32px;
    fill: var(--white);
}

/* ============================================================
   FORM BANNER (index page, after redirect from a form)
   ============================================================ */

.form-banner {
    padding: 1.1rem 1.5rem;
    text-align: center;
    font-family: 'Work Sans', sans-serif;
    font-weight: 600;
    font-size: 0.95rem;
}

.form-banner.success {
    background: var(--gold);
    color: var(--ink);
}

.form-banner.error {
    background: #B5493B;
    color: var(--white);
}

/* ============================================================
   HERO (index page)
   ============================================================ */

.hero {
    position: relative;
    min-height: 86vh;
    display: flex;
    align-items: flex-end;
    background-image:
        linear-gradient(180deg, rgba(23, 20, 15, 0.35) 0%, rgba(23, 20, 15, 0.25) 38%, rgba(23, 20, 15, 0.9) 96%),
        url(images/taxi-picture.jpg);
    background-size: cover;
    background-position: center 60%;
    background-repeat: no-repeat;
}

.hero-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 3rem 4.5rem 3rem;
    width: 100%;
}

.hero .eyebrow {
    color: var(--gold-bright);
    margin-bottom: 1.1rem;
}

.hero-title {
    font-family: 'Fraunces', serif;
    font-style: italic;
    font-weight: 600;
    color: var(--cream);
    font-size: clamp(3rem, 7vw, 6rem);
    line-height: 0.95;
    margin-bottom: 1.3rem;
}

.hero-lede {
    font-size: 1.2rem;
    color: var(--cream-2);
    max-width: 46ch;
    line-height: 1.55;
    margin-bottom: 2.2rem;
}

.hero-ctas {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

/* ============================================================
   SECTION SCAFFOLDING (shared)
   ============================================================ */

.section-inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 6rem 3rem;
}

.section-head {
    max-width: 56ch;
    margin-bottom: 3.2rem;
}

.section-head h2 {
    font-family: 'Fraunces', serif;
    font-weight: 600;
    font-size: clamp(1.9rem, 3vw, 2.6rem);
    color: var(--ink);
    margin-top: 0.9rem;
}

/* ============================================================
   SERVICES (index page)
   ============================================================ */

.services {
    background: var(--cream);
}

.card-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.75rem;
}

.service-card {
    background: var(--white);
    border: 1px solid var(--line-light);
    border-radius: 18px;
    padding: 2.2rem 2rem;
    box-shadow: var(--shadow-sm);
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.service-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 20px 36px -18px rgba(43, 39, 35, 0.4);
}

.service-card .icon {
    width: 46px;
    height: 46px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 12px;
    background: var(--cream-2);
    color: var(--gold);
    margin-bottom: 1.3rem;
}

.service-card .icon svg {
    width: 22px;
    height: 22px;
    fill: none;
    stroke: currentColor;
    stroke-width: 2;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.service-card h3 {
    font-family: 'Fraunces', serif;
    font-weight: 600;
    font-size: 1.25rem;
    color: var(--ink);
    margin-bottom: 0.6rem;
}

.service-card p {
    color: var(--charcoal);
    font-size: 0.95rem;
    line-height: 1.6;
    opacity: 0.85;
    margin-bottom: 0.9rem;
}

.service-card a.more {
    font-size: 0.88rem;
    font-weight: 600;
    color: var(--gold);
    text-decoration: none;
}

.service-card a.more:hover {
    color: var(--ink);
}

/* ============================================================
   ZONE D'INTERVENTION (index page)
   ============================================================ */

.zone {
    background: var(--cream-2);
}

.zone .section-inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3.5rem;
    align-items: center;
}

.zone-copy p {
    color: var(--charcoal);
    line-height: 1.7;
    margin-top: 1.2rem;
    font-size: 1.02rem;
}

.zone-map-wrapper {
    width: 100%;
    aspect-ratio: 4 / 3.2;
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow);
    border: 1px solid var(--line-light);
}

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

/* ============================================================
   SUB-HERO (titre_pages — inner page headers)
   ============================================================ */

.titre_pages {
    background:
        linear-gradient(180deg, rgba(23, 20, 15, 0.55), rgba(23, 20, 15, 0.85)),
        linear-gradient(120deg, var(--ink), var(--ink-2));
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 0.6rem;
    width: 100%;
    padding: 4.5rem 2rem;
    text-align: center;
}

.titre_pages .eyebrow {
    color: var(--gold-bright);
}

.titre_pages h1 {
    color: var(--cream);
    font-family: 'Fraunces', serif;
    font-style: italic;
    font-weight: 600;
    font-size: clamp(2.2rem, 4vw, 3.2rem);
}

/* ============================================================
   PAGE A PROPOS
   ============================================================ */

.main_apropos {
    background: var(--cream);
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    gap: 4rem;
    padding: 6rem 3rem;
    max-width: 1200px;
    margin: 0 auto;
}

.marine_desc {
    display: flex;
    flex-direction: column;
    justify-content: center;
    color: var(--charcoal);
    max-width: 60ch;
}

.marine_desc .eyebrow {
    margin-bottom: 0.9rem;
}

.marine_desc h1 {
    font-family: 'Fraunces', serif;
    font-weight: 600;
    font-size: 2.2rem;
    color: var(--ink);
    padding-bottom: 1.2rem;
}

.marine_desc p {
    font-size: 1rem;
    line-height: 1.75;
    margin-bottom: 1.1rem;
}

.main_apropos img {
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    max-width: 320px;
}

.partenaire_apropos {
    background: var(--ink);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 3rem;
    padding: 5rem 2rem;
}

.partenaire_apropos h1 {
    text-align: center;
    font-family: 'Fraunces', serif;
    font-style: italic;
    font-weight: 600;
    color: var(--cream);
    font-size: 2.4rem;
}

.row_partenaire {
    display: flex;
    flex-direction: row;
    justify-content: center;
    flex-wrap: wrap;
    gap: 1.75rem;
    max-width: 1100px;
}

.partenaires {
    display: flex;
    flex-direction: row;
    align-items: stretch;
    border-radius: 14px;
    width: 380px;
    background: var(--white);
    box-shadow: var(--shadow-sm);
    transition: transform 0.25s ease, box-shadow 0.25s ease;
    overflow: hidden;
}

.partenaires:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow);
}

.partenaires img {
    width: 130px;
    height: auto;
    object-fit: contain;
    padding: 1.1rem;
    flex-shrink: 0;
    background: var(--white);
}

.partenaires a {
    font-family: 'Fraunces', serif;
    font-weight: 600;
    font-size: 1rem;
    color: var(--ink);
    text-decoration: none;
}

.partenaires a span {
    color: var(--gold);
}

.text_partenaire {
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 0.4rem;
    padding: 1rem 1.2rem;
    border-left: 1px solid var(--line-light);
}

.text_partenaire p {
    font-size: 0.85rem;
    color: var(--charcoal);
    opacity: 0.75;
}

/* ============================================================
   CONTACT / DEVIS / RESERVATION FORMS
   ============================================================ */

.contact {
    display: flex;
    flex-direction: column;
    background: var(--cream);
}

.formcontact {
    display: flex;
    justify-content: center;
    padding: 4.5rem 2rem;
}

.formcontact form {
    background: var(--white);
    border-radius: 20px;
    box-shadow: var(--shadow);
    border: 1px solid var(--line-light);
    padding: 3rem;
    width: 100%;
    max-width: 620px;
}

.formcontact > form > p {
    font-size: 0.85rem;
    color: var(--charcoal);
    opacity: 0.7;
    margin-bottom: 1.8rem;
}

.red {
    color: #B5493B;
    font-size: 0.85em;
}

.formcontact label {
    display: block;
    font-family: 'Work Sans', sans-serif;
    font-weight: 600;
    font-size: 0.78rem;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--charcoal);
    margin-bottom: 0.5rem;
}

.rowformcontact {
    display: flex;
    flex-direction: row;
    gap: 1.5rem;
}

.contentformcontact {
    display: flex;
    flex-direction: column;
    width: 100%;
    margin-bottom: 1.4rem;
}

.conditional-fields {
    display: flex;
    flex-direction: column;
    width: 100%;
}

.formcontact input,
.formcontact textarea,
#typeCourse {
    background: var(--cream);
    border: 1.5px solid var(--line-light);
    border-radius: 10px;
    padding: 0.85rem 1.1rem;
    font-family: 'Work Sans', sans-serif;
    font-size: 0.95rem;
    color: var(--charcoal);
    width: 100%;
    transition: border-color 0.2s ease, background-color 0.2s ease;
}

.formcontact textarea {
    min-height: 140px;
    resize: vertical;
}

.formcontact input:focus,
.formcontact textarea:focus,
#typeCourse:focus {
    outline: none;
    border-color: var(--gold);
    background: var(--white);
}

::placeholder {
    color: rgba(43, 39, 35, 0.4);
}

#send-button {
    background-color: var(--ink);
    color: var(--cream);
    text-align: center;
    padding: 0.95rem 2.6rem;
    font-family: 'Work Sans', sans-serif;
    font-weight: 600;
    font-size: 0.95rem;
    border: none;
    border-radius: var(--radius-pill);
    cursor: pointer;
    transition: background-color 0.25s ease, transform 0.25s ease, box-shadow 0.25s ease;
    margin-top: 0.5rem;
}

#send-button:hover {
    background-color: var(--gold);
    color: var(--ink);
    transform: translateY(-2px);
    box-shadow: var(--shadow-sm);
}

#typeCourse {
    cursor: pointer;
}

#typeCourse option {
    background-color: var(--white);
    color: var(--charcoal);
}

.contactdirect {
    background: var(--ink);
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    gap: 3rem;
    padding: 2.5rem 2rem;
}

.emailtel {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.35rem;
    text-align: center;
}

.emailtel p:first-child {
    font-family: 'Work Sans', sans-serif;
    font-weight: 600;
    font-size: 0.72rem;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--gold-bright);
}

.emailtel p:last-child {
    color: var(--cream);
    font-size: 1.05rem;
}

.whatsapp-inline {
    display: inline-flex;
    align-items: center;
    gap: 0.6rem;
    background-color: var(--whatsapp-green);
    color: var(--white) !important;
    font-family: 'Work Sans', sans-serif;
    font-weight: 600;
    font-size: 0.9rem;
    text-decoration: none;
    padding: 0.75rem 1.6rem;
    border-radius: var(--radius-pill);
    box-shadow: var(--shadow-sm);
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.whatsapp-inline:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow);
}

.whatsapp-inline svg {
    width: 22px;
    height: 22px;
    fill: var(--white);
    flex-shrink: 0;
}

.fincontact {
    position: relative;
    background: linear-gradient(180deg, rgba(23, 20, 15, 0.55), rgba(23, 20, 15, 0.75)), url(images/vsl.jpg);
    background-size: cover;
    background-position: center;
    height: 40vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 2rem;
}

.fincontact p {
    font-family: 'Fraunces', serif;
    font-style: italic;
    font-weight: 600;
    color: var(--cream);
    font-size: clamp(1.4rem, 3vw, 2rem);
    max-width: 30ch;
}

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

.image_informations {
    background:
        linear-gradient(180deg, rgba(23, 20, 15, 0.55), rgba(23, 20, 15, 0.85)),
        url(images/informations.jpg);
    background-size: cover;
    background-position: center;
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    padding: 3.5rem 2rem;
    gap: 1.5rem;
}

.image_informations a {
    text-decoration: none;
}

.top_informations {
    display: flex;
    flex-direction: column;
    max-width: 780px;
    margin: 0 auto;
    padding: 5rem 2rem;
}

.rowlogos_informations {
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    gap: 2.5rem;
    padding: 0 0 2.5rem 0;
}

.rowlogos_informations img {
    width: 60px;
}

.top_informations h1 {
    color: var(--ink);
    font-family: 'Fraunces', serif;
    font-weight: 600;
    font-size: 2rem;
    text-align: center;
    margin-bottom: 2rem;
}

.top_informations h2 {
    color: var(--ink);
    font-family: 'Fraunces', serif;
    font-weight: 600;
    font-size: 1.5rem;
    margin-top: 2.8rem;
    margin-bottom: 1rem;
}

.top_informations p {
    font-size: 1.02rem;
    line-height: 1.75;
    color: var(--charcoal);
}

.top_informations ul {
    margin-top: 1.5rem;
    padding-left: 1.3rem;
    display: flex;
    flex-direction: column;
    gap: 0.9rem;
}

.top_informations li {
    font-size: 1rem;
    line-height: 1.6;
    color: var(--charcoal);
}

.gareaeroport_informations {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    background: var(--cream-2);
    padding: 4.5rem 2rem;
}

.gareaeroport_informations p {
    padding-top: 1.2rem;
    max-width: 60ch;
    font-size: 1.02rem;
    line-height: 1.75;
    color: var(--charcoal);
}

.gareaeroport_informations h1 {
    color: var(--ink);
    font-family: 'Fraunces', serif;
    font-weight: 600;
    font-size: 1.9rem;
}

/* ============================================================
   MENTIONS LEGALES
   ============================================================ */

.mentionslegales-juridique {
    display: flex;
    flex-direction: column;
    max-width: 760px;
    margin: 0 auto;
    padding: 4.5rem 2rem 6rem 2rem;
    gap: 0.6rem;
}

.mentionslegales-juridique h1 {
    font-family: 'Fraunces', serif;
    font-weight: 600;
    font-size: 1.6rem;
    color: var(--ink);
    margin-top: 2.4rem;
}

.mentionslegales-juridique h1:first-child {
    margin-top: 0;
}

.mentionslegales-juridique p {
    font-size: 0.95rem;
    line-height: 1.75;
    color: var(--charcoal);
}

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

@media only screen and (max-width: 900px) {
    .utility {
        gap: 1rem;
        font-size: 0.72rem;
    }

    .header-row {
        padding: 0.8rem 1.25rem;
    }

    .header-logo {
        height: 42px;
    }

    .wordmark {
        font-size: 1.15rem;
    }

    .header-row {
        position: relative;
    }

    .site-nav {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        flex-direction: column;
        align-items: stretch;
        gap: 0.2rem;
        background: var(--ink-2);
        border-top: 1px solid var(--line-dark);
        box-shadow: var(--shadow);
        padding: 0.75rem 1.25rem 1.25rem 1.25rem;
    }

    .site-nav.is-open {
        display: flex;
    }

    .site-nav a {
        padding: 0.9rem 1rem;
    }

    .header-actions {
        gap: 0.6rem;
    }

    .header-actions .btn {
        padding: 0.6rem 1.2rem;
        font-size: 0.85rem;
    }

    .nav-toggle {
        display: flex;
    }

    .hero {
        min-height: 70vh;
    }

    .hero-content {
        padding: 0 1.5rem 3rem 1.5rem;
    }

    .hero-ctas {
        gap: 0.6rem;
    }

    .hero-ctas .btn {
        padding: 0.7rem 1.3rem;
        font-size: 0.85rem;
    }

    .section-inner {
        padding: 3.5rem 1.5rem;
    }

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

    .zone .section-inner {
        grid-template-columns: 1fr;
    }

    .main_apropos {
        flex-direction: column-reverse;
        padding: 3rem 1.5rem;
        gap: 2rem;
    }

    .main_apropos img {
        max-width: 220px;
    }

    .partenaires {
        width: 100%;
        max-width: 380px;
    }

    .formcontact {
        padding: 2.5rem 1.25rem;
    }

    .formcontact form {
        padding: 2rem 1.5rem;
    }

    .rowformcontact {
        flex-direction: column;
        gap: 0;
    }

    .contactdirect {
        gap: 1.75rem;
        padding: 2rem 1.5rem;
    }

    .footer-directory {
        grid-template-columns: 1fr 1fr;
        row-gap: 2.5rem;
        padding: 0 1.5rem 2.5rem 1.5rem;
    }

    .whatsapp-float {
        width: 50px;
        height: 50px;
        bottom: 15px;
        right: 15px;
    }

    .whatsapp-float svg {
        width: 26px;
        height: 26px;
    }

    .top_informations {
        padding: 3rem 1.5rem;
    }
}

@media only screen and (max-width: 560px) {
    .footer-directory {
        grid-template-columns: 1fr;
    }

    .utility {
        gap: 0.5rem 1rem;
    }

    .utility-base {
        display: none;
    }
}
