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

:root {
    --sand: #F5F0E8;
    --sand-dark: #EDE5D5;
    --ocean: #1A4A6E;
    --ocean-mid: #2D6A9F;
    --ocean-light: #E8F2FA;
    --wave: #3AAFA9;
    --wave-light: #E5F5F4;
    --text: #1C1C1E;
    --text-muted: #6B6B73;
    --white: #FFFFFF;
    --accent: #E8611A;
    --accent-light: #FFF0E8;
    --radius: 12px;
    --radius-lg: 20px;
    --shadow: 0 4px 24px rgba(26,74,110,0.08);
    --shadow-lg: 0 12px 48px rgba(26,74,110,0.14);
}

html { scroll-behavior: smooth; }

body {
    font-family: 'DM Sans', sans-serif;
    color: var(--text);
    background: var(--white);
    line-height: 1.6;
    font-size: 16px;
}

img, picture, video, canvas, svg { display: block; max-width: 100%; height: auto; }

ul { list-style: none; }

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

/* ============================================
   Topbar
   ============================================ */
.topbar {
    background: var(--ocean);
    color: rgba(255,255,255,0.85);
    font-size: 13px;
    padding: 8px 0;
    text-align: center;
}
.topbar a { color: var(--white); text-decoration: none; font-weight: 500; }
.topbar a:hover { text-decoration: underline; }
.topbar-inner { display: flex; justify-content: center; gap: 32px; flex-wrap: wrap; }

/* ============================================
   Navigation
   ============================================ */
nav {
    background: var(--white);
    border-bottom: 1px solid rgba(0,0,0,0.07);
    position: sticky; top: 0; z-index: 100;
    box-shadow: 0 2px 16px rgba(0,0,0,0.06);
}
.nav-inner {
    max-width: 1140px;
    margin: 0 auto;
    padding: 0 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 72px;
}
.logo {
    font-family: 'DM Serif Display', serif;
    font-size: 24px;
    color: var(--ocean);
    text-decoration: none;
    letter-spacing: -0.5px;
    display: flex;
    align-items: center;
}
.logo img { height: 48px; width: auto; display: block; }
.nav-links { display: flex; gap: 32px; }
.nav-links a {
    text-decoration: none;
    color: var(--text-muted);
    font-size: 14px;
    font-weight: 500;
    letter-spacing: 0.02em;
    transition: color 0.2s;
}
.nav-links a:hover { color: var(--ocean); }
.nav-cta {
    background: var(--accent);
    color: var(--white) !important;
    padding: 10px 22px;
    border-radius: 50px;
    font-weight: 600 !important;
    letter-spacing: 0 !important;
    transition: background 0.2s, transform 0.15s !important;
    white-space: nowrap;
}
.nav-cta:hover { background: #c94f12 !important; transform: translateY(-1px); }

/* ============================================
   Hero
   ============================================ */
.hero {
    background:
        linear-gradient(135deg, rgba(14,36,55,0.82) 0%, rgba(14,36,55,0.65) 50%, rgba(14,36,55,0.78) 100%),
        url('../assets/hero-biarritz.jpg') center center / cover no-repeat;
    position: relative;
    overflow: hidden;
    padding: 100px 24px 80px;
}
.wave-deco {
    position: absolute;
    bottom: -2px; left: 0; right: 0;
    height: 60px;
    background: var(--white);
    clip-path: ellipse(55% 100% at 50% 100%);
}
.hero-inner {
    max-width: 820px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
    text-align: center;
}
.hero-content { display: flex; flex-direction: column; align-items: center; }
.hero h1 { max-width: 780px; }
.hero-subtitle { max-width: 620px; }
.hero-actions { justify-content: center; }
.hero-stats { justify-content: center; }
.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(58,175,169,0.2);
    border: 1px solid rgba(58,175,169,0.4);
    color: #7EEDE9;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    padding: 6px 16px;
    border-radius: 50px;
    margin-bottom: 24px;
}
.hero h1 {
    font-family: 'DM Serif Display', serif;
    font-size: clamp(36px, 5vw, 58px);
    color: var(--white);
    line-height: 1.1;
    margin-bottom: 20px;
    letter-spacing: -1px;
}
.hero h1 em { font-style: italic; color: #7EEDE9; }
.hero-subtitle {
    color: rgba(255,255,255,0.75);
    font-size: 18px;
    line-height: 1.7;
    margin-bottom: 36px;
    font-weight: 300;
}
.hero-actions { display: flex; gap: 16px; flex-wrap: wrap; }
.btn-primary {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: var(--accent);
    color: var(--white);
    padding: 16px 32px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 16px;
    text-decoration: none;
    transition: background 0.2s, transform 0.15s, box-shadow 0.2s;
    box-shadow: 0 8px 24px rgba(232,97,26,0.4);
}
.btn-primary:hover { background: #c94f12; transform: translateY(-2px); box-shadow: 0 12px 32px rgba(232,97,26,0.5); }
.btn-secondary {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(255,255,255,0.1);
    color: var(--white);
    padding: 16px 28px;
    border-radius: 50px;
    font-weight: 500;
    font-size: 16px;
    text-decoration: none;
    border: 1px solid rgba(255,255,255,0.25);
    transition: background 0.2s;
}
.btn-secondary:hover { background: rgba(255,255,255,0.18); }
.hero-stats {
    display: flex;
    gap: 32px;
    margin-top: 48px;
    padding-top: 36px;
    border-top: 1px solid rgba(255,255,255,0.12);
}
.hero-stat-num {
    font-family: 'DM Serif Display', serif;
    font-size: 36px;
    color: var(--white);
    line-height: 1;
}
.hero-stat-label {
    font-size: 13px;
    color: rgba(255,255,255,0.55);
    margin-top: 4px;
}

/* Formulaire hero */
.hero-form-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 36px 32px;
    box-shadow: var(--shadow-lg);
}
.hero-form-card h2 {
    font-family: 'DM Serif Display', serif;
    font-size: 22px;
    color: var(--ocean);
    margin-bottom: 6px;
}
.hero-form-card > p {
    color: var(--text-muted);
    font-size: 14px;
    margin-bottom: 24px;
}
.form-group { margin-bottom: 16px; }
.form-group label {
    display: block;
    font-size: 13px;
    font-weight: 500;
    color: var(--text-muted);
    margin-bottom: 6px;
}
.form-group input,
.form-group textarea,
.form-group select {
    width: 100%;
    padding: 12px 16px;
    border: 1.5px solid #E5E5EA;
    border-radius: var(--radius);
    font-family: 'DM Sans', sans-serif;
    font-size: 15px;
    color: var(--text);
    background: var(--white);
    transition: border-color 0.2s;
    outline: none;
}
.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
    border-color: var(--ocean-mid);
    box-shadow: 0 0 0 3px rgba(45,106,159,0.1);
}
.form-group textarea { resize: vertical; min-height: 90px; }
.form-submit {
    width: 100%;
    padding: 15px;
    background: var(--ocean);
    color: var(--white);
    border: none;
    border-radius: 50px;
    font-family: 'DM Sans', sans-serif;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.2s, transform 0.15s;
    margin-top: 8px;
}
.form-submit:hover { background: var(--ocean-mid); transform: translateY(-1px); }
.form-note {
    text-align: center;
    font-size: 12px;
    color: var(--text-muted);
    margin-top: 12px;
}

/* ============================================
   Trust bar
   ============================================ */
.trust-bar {
    background: var(--sand);
    padding: 28px 24px;
    border-bottom: 1px solid var(--sand-dark);
}
.trust-bar-inner {
    max-width: 1140px;
    margin: 0 auto;
    display: flex;
    justify-content: center;
    gap: 48px;
    flex-wrap: wrap;
    align-items: center;
}
.trust-item {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 14px;
    font-weight: 500;
    color: var(--ocean);
}
.trust-icon {
    width: 20px;
    height: 20px;
    background: var(--ocean);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}
.trust-icon svg { width: 11px; height: 11px; fill: white; }

/* ============================================
   Sections
   ============================================ */
section { padding: 80px 24px; }
.section-label {
    display: inline-block;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--wave);
    margin-bottom: 12px;
}
.section-title {
    font-family: 'DM Serif Display', serif;
    font-size: clamp(30px, 4vw, 44px);
    color: var(--ocean);
    line-height: 1.15;
    margin-bottom: 16px;
    letter-spacing: -0.5px;
}
.section-subtitle {
    font-size: 18px;
    color: var(--text-muted);
    max-width: 540px;
    line-height: 1.65;
    font-weight: 300;
}
.section-header { margin-bottom: 56px; }
.container { max-width: 1140px; margin: 0 auto; }

/* ============================================
   Avantages
   ============================================ */
.avantages { background: var(--white); }
.avantages-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 24px;
}
.avantage-card {
    background: var(--white);
    border: 1.5px solid var(--sand-dark);
    border-radius: var(--radius-lg);
    padding: 28px 24px;
    transition: border-color 0.2s, box-shadow 0.2s, transform 0.2s;
    position: relative;
    overflow: hidden;
}
.avantage-card::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--ocean), var(--wave));
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.3s;
}
.avantage-card:hover {
    border-color: var(--ocean-light);
    box-shadow: var(--shadow);
    transform: translateY(-3px);
}
.avantage-card:hover::before { transform: scaleX(1); }
.avantage-icon {
    width: 48px;
    height: 48px;
    background: var(--ocean-light);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 16px;
}
.avantage-icon svg { width: 22px; height: 22px; fill: var(--ocean); }
.avantage-card h3 {
    font-size: 15px;
    font-weight: 600;
    color: var(--text);
    margin-bottom: 8px;
    line-height: 1.3;
}
.avantage-card p {
    font-size: 14px;
    color: var(--text-muted);
    line-height: 1.55;
}

/* ============================================
   Galerie
   ============================================ */
.galerie { background: var(--sand); }
.galerie-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    grid-template-rows: 260px 260px;
    gap: 16px;
}
.galerie-item {
    border-radius: var(--radius-lg);
    overflow: hidden;
    position: relative;
    background: var(--ocean-light);
}
.galerie-item:first-child { grid-row: span 2; }
.galerie-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.4s;
}
.galerie-item:hover .galerie-img { transform: scale(1.04); }
.galerie-placeholder {
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, var(--ocean-light), var(--wave-light));
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--ocean-mid);
    font-size: 13px;
    font-weight: 500;
    text-align: center;
    padding: 16px;
}

/* ============================================
   Offres
   ============================================ */
.offres { background: var(--white); }
.offres-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 28px;
}
.offre-card {
    border: 1.5px solid var(--sand-dark);
    border-radius: var(--radius-lg);
    padding: 36px 28px;
    position: relative;
    transition: box-shadow 0.2s, transform 0.2s;
}
.offre-card:hover { box-shadow: var(--shadow-lg); transform: translateY(-4px); }
.offre-card.featured {
    border-color: var(--ocean);
    background: var(--ocean);
    color: var(--white);
}
.offre-badge {
    position: absolute;
    top: -14px; left: 50%;
    transform: translateX(-50%);
    background: var(--accent);
    color: var(--white);
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    padding: 5px 16px;
    border-radius: 50px;
    white-space: nowrap;
}
.offre-card h3 {
    font-family: 'DM Serif Display', serif;
    font-size: 24px;
    margin-bottom: 8px;
    color: var(--ocean);
}
.offre-card.featured h3 { color: var(--white); }
.offre-card > p {
    font-size: 14px;
    color: var(--text-muted);
    margin-bottom: 24px;
}
.offre-card.featured > p { color: rgba(255,255,255,0.7); }
.offre-price {
    display: flex;
    align-items: baseline;
    flex-wrap: wrap;
    gap: 8px;
    padding: 16px 0 20px;
    margin-bottom: 16px;
    border-top: 1px solid var(--sand-dark);
    border-bottom: 1px solid var(--sand-dark);
}
.offre-card.featured .offre-price {
    border-top-color: rgba(255,255,255,0.12);
    border-bottom-color: rgba(255,255,255,0.12);
}
.offre-price-num {
    font-family: 'DM Serif Display', serif;
    font-size: 42px;
    line-height: 1;
    color: var(--white);
}
.offre-price-period {
    font-size: 15px;
    color: rgba(255,255,255,0.75);
    font-weight: 500;
}
.offre-price-note {
    width: 100%;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: #7EEDE9;
}
.offre-features { margin-bottom: 32px; }
.offre-features li {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    font-size: 14px;
    color: var(--text-muted);
    padding: 8px 0;
    border-bottom: 1px solid var(--sand-dark);
}
.offre-card.featured .offre-features li {
    color: rgba(255,255,255,0.8);
    border-bottom-color: rgba(255,255,255,0.12);
}
.offre-features li::before {
    content: '';
    width: 18px;
    height: 18px;
    border-radius: 50%;
    background: var(--wave-light);
    flex-shrink: 0;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 18 18' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M5 9l3 3 5-5' stroke='%233AAFA9' stroke-width='2' fill='none' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
    background-size: contain;
    margin-top: 1px;
}
.offre-card.featured .offre-features li::before {
    background-color: rgba(58,175,169,0.25);
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 18 18' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M5 9l3 3 5-5' stroke='%237EEDE9' stroke-width='2' fill='none' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
}
.btn-offre {
    display: block;
    text-align: center;
    padding: 14px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 15px;
    text-decoration: none;
    transition: all 0.2s;
    border: 2px solid var(--ocean);
    color: var(--ocean);
}
.btn-offre:hover { background: var(--ocean); color: var(--white); }
.offre-card.featured .btn-offre {
    background: var(--accent);
    border-color: var(--accent);
    color: var(--white);
    box-shadow: 0 6px 20px rgba(232,97,26,0.4);
}
.offre-card.featured .btn-offre:hover { background: #c94f12; }

/* ============================================
   Localisation
   ============================================ */
.localisation { background: var(--sand); }
.localisation-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: start;
}
.map-embed {
    border-radius: var(--radius-lg);
    overflow: hidden;
    height: 360px;
    box-shadow: var(--shadow);
}
.map-embed iframe { width: 100%; height: 100%; border: 0; display: block; }
.loc-details { padding-top: 8px; }
.loc-item {
    display: flex;
    gap: 16px;
    padding: 20px 0;
    border-bottom: 1px solid var(--sand-dark);
    align-items: flex-start;
}
.loc-icon {
    width: 44px;
    height: 44px;
    background: var(--ocean-light);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}
.loc-icon svg { width: 20px; height: 20px; fill: var(--ocean); }
.loc-item h4 { font-size: 14px; font-weight: 600; margin-bottom: 4px; color: var(--text); }
.loc-item p { font-size: 14px; color: var(--text-muted); line-height: 1.5; }
.loc-item a { color: var(--ocean); }
.loc-item a.loc-phone { font-weight: 600; }

/* ============================================
   CTA final
   ============================================ */
.cta-section {
    background: linear-gradient(135deg, var(--ocean) 0%, #0D2E45 100%);
    padding: 80px 24px;
    position: relative;
    overflow: hidden;
}
.cta-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 30% 50%, rgba(58,175,169,0.15) 0%, transparent 60%),
                radial-gradient(circle at 70% 50%, rgba(45,106,159,0.2) 0%, transparent 60%);
}
.cta-section > * { position: relative; z-index: 1; }
.cta-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}
.cta-text .cta-label {
    color: #7EEDE9;
    margin-bottom: 14px;
}
.cta-section h2 {
    font-family: 'DM Serif Display', serif;
    font-size: clamp(28px, 4vw, 44px);
    color: var(--white);
    margin-bottom: 16px;
    letter-spacing: -0.5px;
    line-height: 1.15;
}
.cta-text > p {
    color: rgba(255,255,255,0.7);
    font-size: 18px;
    max-width: 460px;
    margin: 0 0 32px;
    font-weight: 300;
}
.cta-mail { font-size: 15px !important; margin-top: 20px !important; }
.cta-mail a { color: rgba(255,255,255,0.75); text-decoration: underline; text-underline-offset: 3px; }
.cta-mail a:hover { color: var(--white); }
.cta-phone {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    color: var(--white);
    font-size: 22px;
    font-weight: 700;
    font-family: 'DM Serif Display', serif;
    text-decoration: none;
    transition: opacity 0.2s;
}
.cta-phone:hover { opacity: 0.8; }
.phone-badge {
    background: rgba(255,255,255,0.12);
    border: 1px solid rgba(255,255,255,0.2);
    border-radius: 50px;
    padding: 16px 32px;
    display: flex;
    align-items: center;
    gap: 12px;
}
.cta-section .hero-form-card {
    animation: none;
    margin: 0;
}

/* ============================================
   FAQ
   ============================================ */
.faq { background: var(--white); }
.faq-list { max-width: 720px; margin: 0 auto; }
.faq-item { border-bottom: 1.5px solid var(--sand-dark); }
.faq-question {
    width: 100%;
    background: none;
    border: none;
    text-align: left;
    padding: 22px 0;
    font-family: 'DM Sans', sans-serif;
    font-size: 16px;
    font-weight: 600;
    color: var(--text);
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 16px;
}
.faq-arrow {
    width: 28px;
    height: 28px;
    border-radius: 50%;
    background: var(--ocean-light);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: background 0.2s, transform 0.3s;
}
.faq-arrow svg { width: 12px; height: 12px; fill: var(--ocean); }
.faq-item.open .faq-arrow { background: var(--ocean); transform: rotate(180deg); }
.faq-item.open .faq-arrow svg { fill: white; }
.faq-answer { max-height: 0; overflow: hidden; transition: max-height 0.35s ease; }
.faq-answer-inner {
    padding: 0 0 22px;
    font-size: 15px;
    color: var(--text-muted);
    line-height: 1.7;
}
.faq-centered { text-align: center; }
.faq-centered .section-title { max-width: 500px; margin: 0 auto 16px; }

/* ============================================
   Guide SEO (accordéon)
   ============================================ */
.guide-section {
    background: var(--sand);
    padding: 64px 24px;
}
.guide-details {
    max-width: 820px;
    margin: 0 auto;
    background: var(--white);
    border: 1.5px solid var(--sand-dark);
    border-radius: var(--radius-lg);
    overflow: hidden;
    transition: box-shadow 0.2s, border-color 0.2s;
}
.guide-details[open] {
    box-shadow: var(--shadow);
    border-color: var(--ocean-light);
}
.guide-summary {
    cursor: pointer;
    padding: 24px 28px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    transition: background 0.15s;
    list-style: none;
}
.guide-summary::-webkit-details-marker { display: none; }
.guide-summary::marker { content: none; }
.guide-summary:hover { background: rgba(26,74,110,0.03); }
.guide-summary-text { display: flex; flex-direction: column; gap: 4px; min-width: 0; }
.guide-summary-kicker {
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--wave);
}
.guide-summary-title {
    font-family: 'DM Serif Display', serif;
    font-size: clamp(19px, 2.2vw, 26px);
    color: var(--ocean);
    line-height: 1.25;
    letter-spacing: -0.3px;
}
.guide-summary-arrow {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: var(--ocean-light);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: background 0.2s, transform 0.3s;
}
.guide-summary-arrow svg { width: 14px; height: 14px; fill: var(--ocean); }
.guide-details[open] .guide-summary-arrow {
    background: var(--ocean);
    transform: rotate(180deg);
}
.guide-details[open] .guide-summary-arrow svg { fill: var(--white); }

.guide-body {
    padding: 8px 28px 36px;
    border-top: 1px solid var(--sand-dark);
}
.guide-body h3 {
    font-family: 'DM Serif Display', serif;
    font-size: 22px;
    color: var(--ocean);
    margin: 32px 0 12px;
    letter-spacing: -0.3px;
    line-height: 1.3;
}
.guide-body h3:first-child { margin-top: 24px; }
.guide-body p {
    font-size: 15px;
    line-height: 1.75;
    color: var(--text);
    opacity: 0.82;
    margin-bottom: 14px;
}
.guide-body p:last-child { margin-bottom: 0; }
.guide-body strong { color: var(--ocean); font-weight: 600; opacity: 1; }

@media (max-width: 600px) {
    .guide-section { padding: 48px 20px; }
    .guide-summary { padding: 20px; gap: 12px; }
    .guide-body { padding: 8px 20px 28px; }
    .guide-body h3 { font-size: 19px; }
    .guide-body p { font-size: 14.5px; }
}

/* ============================================
   Footer
   ============================================ */
footer {
    background: var(--text);
    color: rgba(255,255,255,0.6);
    padding: 60px 24px 32px;
}
.footer-grid {
    max-width: 1140px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 48px;
    margin-bottom: 48px;
}
.footer-brand a { display: inline-block; margin-bottom: 16px; }
.footer-brand img { height: 64px; width: auto; }
.footer-brand p { font-size: 14px; line-height: 1.65; max-width: 280px; }
footer h4 {
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--white);
    margin-bottom: 16px;
}
footer ul li { margin-bottom: 10px; }
footer ul a {
    font-size: 14px;
    color: rgba(255,255,255,0.55);
    text-decoration: none;
    transition: color 0.2s;
}
footer ul a:hover { color: var(--white); }
.footer-bottom {
    max-width: 1140px;
    margin: 0 auto;
    padding-top: 28px;
    border-top: 1px solid rgba(255,255,255,0.08);
    display: flex;
    justify-content: space-between;
    font-size: 13px;
    flex-wrap: wrap;
    gap: 12px;
}

/* ============================================
   Utilitaires
   ============================================ */
.sr-only {
    position: absolute; width: 1px; height: 1px;
    padding: 0; margin: -1px; overflow: hidden;
    clip: rect(0,0,0,0); border: 0;
}

/* ============================================
   Responsive
   ============================================ */
@media (max-width: 900px) {
    .cta-grid { grid-template-columns: 1fr; gap: 40px; }
    .cta-text { text-align: center; }
    .cta-text > p { margin-left: auto; margin-right: auto; }
    .galerie-grid { grid-template-columns: 1fr 1fr; grid-template-rows: auto; }
    .galerie-item:first-child { grid-row: span 1; grid-column: span 2; }
    .localisation-grid { grid-template-columns: 1fr; }
    .footer-grid { grid-template-columns: 1fr 1fr; gap: 32px; }
    .nav-links { display: none; }
}
@media (max-width: 600px) {
    section { padding: 60px 20px; }
    .hero { padding: 80px 20px 60px; }
    .galerie-grid { grid-template-columns: 1fr; }
    .galerie-item:first-child { grid-column: span 1; }
    .footer-grid { grid-template-columns: 1fr; }
    .hero-stats { gap: 20px; }
    .trust-bar-inner { gap: 20px; }
}

/* ============================================
   Animations
   ============================================ */
@keyframes fadeUp {
    from { opacity: 0; transform: translateY(28px); }
    to { opacity: 1; transform: translateY(0); }
}
.hero-content > * { animation: fadeUp 0.7s ease both; }
.hero-content > *:nth-child(1) { animation-delay: 0.1s; }
.hero-content > *:nth-child(2) { animation-delay: 0.2s; }
.hero-content > *:nth-child(3) { animation-delay: 0.3s; }
.hero-content > *:nth-child(4) { animation-delay: 0.4s; }
.hero-content > *:nth-child(5) { animation-delay: 0.5s; }
.hero-form-card { animation: fadeUp 0.7s ease 0.3s both; }
