/* ═══════════════════════════════════════════════
   PAYEN TRAITEUR — STYLE PRINCIPAL
   ═══════════════════════════════════════════════ */

:root {
    --accent:       #2E7D52;
    --accent-dark:  #1F5C3A;
    --accent-light: #52B788;
    --primary:      #1a1a1a;
    --bg:           #ffffff;
    --bg-alt:       #f9f8f6;
    --bg-dark:      #111111;
    --text:         #2c2c2c;
    --text-light:   #6b6b6b;
    --border:       #e8e2d9;
    --white:        #ffffff;
    --radius:       4px;
    --shadow:       0 4px 24px rgba(0,0,0,.08);
    --shadow-hover: 0 12px 40px rgba(0,0,0,.14);
    --transition:   .3s ease;
    --font-serif:   'Playfair Display', Georgia, serif;
    --font-sans:    'Lato', system-ui, sans-serif;
}

/* ── RESET & BASE ──────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
    font-family: var(--font-sans);
    color: var(--text);
    background: var(--bg);
    line-height: 1.7;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; height: auto; display: block; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }

/* ── TYPOGRAPHY ────────────────────────────────── */
h1, h2, h3 { font-family: var(--font-serif); font-weight: 600; line-height: 1.2; }

/* ── CONTAINER ─────────────────────────────────── */
.container { width: 100%; max-width: 1200px; margin: 0 auto; padding: 0 32px; }

/* ── SECTION ───────────────────────────────────── */
.section { padding: 100px 0; }
.section-dark    { background: var(--bg-dark); color: var(--white); }
.section-contact { background: var(--primary); color: var(--white); }

.section-header { text-align: center; margin-bottom: 64px; }

.section-label {
    font-size: .75rem;
    letter-spacing: .2em;
    text-transform: uppercase;
    color: var(--accent);
    font-weight: 700;
    margin-bottom: 12px;
}

.section-title {
    font-size: clamp(1.9rem, 4vw, 3rem);
    margin-bottom: 20px;
}
.section-dark .section-title,
.section-contact .section-title { color: var(--white); }

.section-divider { width: 48px; height: 2px; background: var(--accent); margin: 0 auto; }
.section-divider.light { background: rgba(255,255,255,.35); }

/* ── BUTTONS ───────────────────────────────────── */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 14px 32px;
    border-radius: var(--radius);
    font-family: var(--font-sans);
    font-size: .88rem;
    font-weight: 700;
    letter-spacing: .08em;
    text-transform: uppercase;
    cursor: pointer;
    border: 2px solid transparent;
    transition: all var(--transition);
}

.btn-primary {
    background: var(--accent);
    color: var(--white);
    border-color: var(--accent);
}
.btn-primary:hover {
    background: var(--accent-dark);
    border-color: var(--accent-dark);
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(46,125,82,.35);
}

.btn-outline {
    background: transparent;
    color: var(--white);
    border-color: rgba(255,255,255,.6);
}
.btn-outline:hover {
    background: var(--white);
    color: var(--primary);
    border-color: var(--white);
    transform: translateY(-2px);
}

/* ── REVEAL ANIMATION ──────────────────────────── */
.reveal { opacity: 0; transform: translateY(28px); transition: opacity .7s ease, transform .7s ease; }
.reveal.visible { opacity: 1; transform: translateY(0); }

/* ══════════════════════════════════════════════
   NAVIGATION
   ══════════════════════════════════════════════ */
#navbar {
    position: fixed;
    top: 0; left: 0; right: 0;
    z-index: 1000;
    transition: background var(--transition), box-shadow var(--transition), padding var(--transition);
    padding: 24px 0;
}

#navbar.scrolled {
    background: rgba(17,17,17,.97);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    box-shadow: 0 2px 20px rgba(0,0,0,.3);
    padding: 14px 0;
}

.nav-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 32px;
}

.nav-logo {
    display: flex;
    align-items: center;
    gap: 12px;
    font-family: var(--font-serif);
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--white);
    letter-spacing: .02em;
}
.nav-logo img { height: 40px; width: auto; object-fit: contain; border-radius: 2px; }

.nav-links { display: flex; align-items: center; gap: 4px; }

.nav-link {
    color: rgba(255,255,255,.85);
    font-size: .85rem;
    font-weight: 400;
    letter-spacing: .04em;
    padding: 8px 14px;
    border-radius: var(--radius);
    transition: color var(--transition);
}
.nav-link:hover { color: var(--accent-light); }

.nav-btn {
    background: var(--accent);
    color: var(--white) !important;
    font-size: .78rem;
    font-weight: 700;
    letter-spacing: .08em;
    text-transform: uppercase;
    padding: 10px 20px;
    border-radius: var(--radius);
    transition: all var(--transition);
    margin-left: 8px;
}
.nav-btn:hover {
    background: var(--accent-dark);
    transform: translateY(-1px);
    box-shadow: 0 4px 16px rgba(46,125,82,.4);
}

.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 4px;
}
.nav-toggle span {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--white);
    border-radius: 2px;
    transition: all var(--transition);
}

/* ══════════════════════════════════════════════
   HERO — DIAPORAMA
   ══════════════════════════════════════════════ */
#hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    background: var(--primary);
}

/* Conteneur des slides */
.hero-bg {
    position: absolute;
    inset: 0;
    overflow: hidden;
}

/* Chaque slide fond */
.hero-slide {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    opacity: 0;
    transition: opacity 1.5s ease;
    will-change: opacity;
}
.hero-slide.active { opacity: 1; }

/* Si image unique (pas de slides) */
.hero-bg-single {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        to bottom,
        rgba(0,0,0,.28) 0%,
        rgba(0,0,0,.52) 50%,
        rgba(0,0,0,.72) 100%
    );
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    color: var(--white);
    max-width: 820px;
    padding: 0 24px;
    animation: heroFadeIn 1.2s ease forwards;
}

@keyframes heroFadeIn {
    from { opacity: 0; transform: translateY(24px); }
    to   { opacity: 1; transform: translateY(0); }
}

.hero-eyebrow {
    font-size: .72rem;
    letter-spacing: .3em;
    text-transform: uppercase;
    color: var(--accent-light);
    margin-bottom: 20px;
    font-weight: 700;
}

.hero-title {
    font-size: clamp(2.4rem, 6vw, 5rem);
    font-weight: 700;
    line-height: 1.1;
    margin-bottom: 24px;
    text-shadow: 0 2px 20px rgba(0,0,0,.3);
}

.hero-subtitle {
    font-size: clamp(.95rem, 2vw, 1.25rem);
    font-weight: 300;
    margin-bottom: 48px;
    opacity: .9;
    letter-spacing: .03em;
}

.hero-buttons { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }

/* Dots du diaporama */
.hero-dots {
    position: absolute;
    bottom: 80px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 10px;
    z-index: 2;
}
.hero-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    border: 2px solid rgba(255,255,255,.5);
    background: transparent;
    cursor: pointer;
    transition: all var(--transition);
    padding: 0;
}
.hero-dot.active {
    background: var(--accent-light);
    border-color: var(--accent-light);
    transform: scale(1.3);
}

/* Scroll indicator */
.hero-scroll {
    position: absolute;
    bottom: 36px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 2;
}
.hero-scroll span {
    display: block;
    width: 24px;
    height: 40px;
    border: 2px solid rgba(255,255,255,.35);
    border-radius: 12px;
    position: relative;
}
.hero-scroll span::before {
    content: '';
    position: absolute;
    top: 6px;
    left: 50%;
    transform: translateX(-50%);
    width: 4px;
    height: 8px;
    background: var(--accent-light);
    border-radius: 2px;
    animation: scrollBounce 2s ease-in-out infinite;
}
@keyframes scrollBounce {
    0%, 100% { transform: translateX(-50%) translateY(0); opacity: 1; }
    80%       { transform: translateX(-50%) translateY(12px); opacity: 0; }
}

/* ══════════════════════════════════════════════
   SERVICES
   ══════════════════════════════════════════════ */
#services { background: var(--bg-alt); }

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 28px;
}

.service-card {
    background: var(--white);
    border-radius: 8px;
    overflow: hidden;
    box-shadow: var(--shadow);
    border: 1px solid var(--border);
    transition: transform var(--transition), box-shadow var(--transition), border-color var(--transition);
    opacity: 0;
    transform: translateY(24px);
}
.service-card.visible { opacity: 1; transform: translateY(0); }
.service-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-hover);
    border-color: var(--accent-light);
}

.service-img-placeholder {
    width: 100%;
    height: 200px;
    background: linear-gradient(135deg, #eaf2ec 0%, #d4e8da 100%);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 8px;
    color: var(--text-light);
}
.service-img-placeholder svg { width: 40px; height: 40px; opacity: .35; stroke: var(--accent); }

.service-body { padding: 28px; }

.service-title {
    font-family: var(--font-serif);
    font-size: 1.2rem;
    margin-bottom: 10px;
    color: var(--primary);
}
.service-title::after {
    content: '';
    display: block;
    width: 32px;
    height: 2px;
    background: var(--accent);
    margin-top: 10px;
}

.service-desc { color: var(--text-light); font-size: .9rem; line-height: 1.7; }

/* ══════════════════════════════════════════════
   GALERIE — CAROUSEL
   ══════════════════════════════════════════════ */
.gallery-outer {
    position: relative;
    padding: 0 60px;
}

.gc-viewport {
    overflow: hidden;
    border-radius: 8px;
    touch-action: pan-y;
}

.gc-track {
    display: flex;
    gap: 12px;
    transition: transform .45s cubic-bezier(.25,.46,.45,.94);
    will-change: transform;
}

.gc-item {
    flex-shrink: 0;
    border-radius: 8px;
    overflow: hidden;
    cursor: pointer;
    position: relative;
    aspect-ratio: 4/3;
}

.gc-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform .5s ease;
}

.gc-item-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,0);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background var(--transition);
}
.gc-item-overlay svg {
    width: 40px;
    height: 40px;
    color: var(--white);
    opacity: 0;
    transform: scale(.8);
    transition: all var(--transition);
}
.gc-item:hover img { transform: scale(1.06); }
.gc-item:hover .gc-item-overlay { background: rgba(30,92,58,.4); }
.gc-item:hover .gc-item-overlay svg { opacity: 1; transform: scale(1); }

/* Flèches de navigation */
.gc-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 48px;
    height: 48px;
    border-radius: 50%;
    border: 2px solid rgba(255,255,255,.3);
    background: rgba(30,92,58,.7);
    color: var(--white);
    font-size: 1.6rem;
    line-height: 1;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all var(--transition);
    z-index: 3;
    backdrop-filter: blur(4px);
}
.gc-arrow:hover { background: var(--accent); border-color: var(--accent); transform: translateY(-50%) scale(1.08); }
.gc-arrow:disabled { opacity: .3; cursor: default; transform: translateY(-50%); }
.gc-prev { left: 4px; }
.gc-next { right: 4px; }

/* Dots */
.gc-dots {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin-top: 24px;
    flex-wrap: wrap;
}
.gc-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    border: none;
    background: rgba(255,255,255,.3);
    cursor: pointer;
    transition: all var(--transition);
    padding: 0;
}
.gc-dot.active {
    background: var(--accent-light);
    transform: scale(1.3);
}

.gallery-empty {
    text-align: center;
    padding: 60px 0;
    color: rgba(255,255,255,.4);
    font-style: italic;
}

/* ══════════════════════════════════════════════
   NEWS
   ══════════════════════════════════════════════ */
.news-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 28px;
}

.news-card {
    background: var(--white);
    border-radius: 8px;
    overflow: hidden;
    box-shadow: var(--shadow);
    border: 1px solid var(--border);
    transition: transform var(--transition), box-shadow var(--transition);
    opacity: 0;
    transform: translateY(24px);
}
.news-card.visible { opacity: 1; transform: translateY(0); }
.news-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-hover); }

.news-img { width: 100%; height: 200px; object-fit: cover; }
.news-body { padding: 28px; }

.news-date {
    font-size: .72rem;
    font-weight: 700;
    letter-spacing: .1em;
    text-transform: uppercase;
    color: var(--accent);
    margin-bottom: 10px;
}

.news-title {
    font-family: var(--font-serif);
    font-size: 1.15rem;
    margin-bottom: 10px;
    color: var(--primary);
    line-height: 1.3;
}

.news-content {
    color: var(--text-light);
    font-size: .9rem;
    line-height: 1.7;
    display: -webkit-box;
    -webkit-line-clamp: 4;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.news-empty { text-align: center; padding: 60px 0; color: var(--text-light); font-style: italic; }

/* ══════════════════════════════════════════════
   CONTACT
   ══════════════════════════════════════════════ */
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 32px 80px;
    max-width: 700px;
    margin: 0 auto;
}

.contact-rdv {
    text-align: center;
    margin-top: 52px;
}

.contact-item {
    display: flex;
    gap: 20px;
    align-items: flex-start;
}

.contact-icon {
    width: 44px;
    height: 44px;
    background: rgba(82,183,120,.12);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    border: 1px solid rgba(82,183,120,.25);
}
.contact-icon svg { width: 18px; height: 18px; stroke: var(--accent-light); }

.contact-label {
    display: block;
    font-size: .72rem;
    letter-spacing: .12em;
    text-transform: uppercase;
    color: rgba(255,255,255,.5);
    margin-bottom: 4px;
    font-weight: 700;
}
.contact-value { color: var(--white); font-size: 1rem; line-height: 1.5; white-space: pre-line; }
a.contact-value:hover { color: var(--accent-light); }

/* ══════════════════════════════════════════════
   MOYENS DE PAIEMENT
   ══════════════════════════════════════════════ */
.payment-bar {
    background: #0a0a0a;
    border-top: 1px solid rgba(255,255,255,.06);
    padding: 18px 0;
}

.payment-bar-inner {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 12px 0;
}

.payment-title {
    font-size: .68rem;
    letter-spacing: .16em;
    text-transform: uppercase;
    color: rgba(255,255,255,.28);
    font-weight: 700;
    white-space: nowrap;
    padding-right: 28px;
    margin-right: 28px;
    border-right: 1px solid rgba(255,255,255,.08);
    flex-shrink: 0;
}

.payment-methods {
    display: flex;
    align-items: center;
    gap: 24px;
    flex-wrap: wrap;
}

.payment-item {
    display: flex;
    align-items: center;
    gap: 7px;
    color: rgba(255,255,255,.45);
    font-size: .8rem;
    letter-spacing: .015em;
}

.payment-item svg { stroke: rgba(255,255,255,.25); flex-shrink: 0; }

/* ══════════════════════════════════════════════
   FOOTER
   ══════════════════════════════════════════════ */
#footer {
    background: #0a0a0a;
    padding: 32px 0;
    border-top: 1px solid rgba(255,255,255,.05);
}
.footer-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 16px;
}
.footer-brand {
    display: flex;
    align-items: center;
    gap: 12px;
    font-family: var(--font-serif);
    font-size: 1.1rem;
    color: var(--white);
}
.footer-brand img { height: 32px; }
.footer-copy { color: rgba(255,255,255,.3); font-size: .8rem; }

/* ══════════════════════════════════════════════
   MODAL RDV
   ══════════════════════════════════════════════ */
#rdvModal {
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,.65);
    z-index: 1500;
    display: none;
    align-items: center;
    justify-content: center;
    padding: 20px;
    backdrop-filter: blur(6px);
    -webkit-backdrop-filter: blur(6px);
}
#rdvModal.active { display: flex; }

.rdv-box {
    background: var(--white);
    border-radius: 16px;
    width: 100%;
    max-width: 440px;
    padding: 44px 40px 40px;
    position: relative;
    box-shadow: 0 24px 64px rgba(0,0,0,.25);
    animation: rdvIn .3s ease;
}
@keyframes rdvIn {
    from { opacity: 0; transform: scale(.94) translateY(12px); }
    to   { opacity: 1; transform: scale(1)   translateY(0); }
}

.rdv-close {
    position: absolute;
    top: 16px; right: 20px;
    background: none;
    border: none;
    font-size: 1.8rem;
    line-height: 1;
    color: var(--text-light);
    cursor: pointer;
    transition: color var(--transition), transform var(--transition);
    padding: 4px;
}
.rdv-close:hover { color: var(--text); transform: rotate(90deg); }

.rdv-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--accent) 0%, var(--accent-dark) 100%);
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
}
.rdv-icon svg { width: 28px; height: 28px; stroke: var(--white); }

.rdv-box h3 {
    font-family: var(--font-serif);
    font-size: 1.5rem;
    text-align: center;
    margin-bottom: 6px;
    color: var(--primary);
}
.rdv-box p {
    text-align: center;
    color: var(--text-light);
    font-size: .9rem;
    margin-bottom: 28px;
    line-height: 1.6;
}

.rdv-contacts { display: flex; flex-direction: column; gap: 12px; }

.rdv-contact-item {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 16px 20px;
    border-radius: 10px;
    border: 1.5px solid var(--border);
    background: var(--bg-alt);
    transition: all var(--transition);
    color: var(--text);
}
.rdv-contact-item:hover {
    border-color: var(--accent);
    background: rgba(46,125,82,.04);
    transform: translateX(4px);
}

.rdv-cicon {
    width: 42px;
    height: 42px;
    background: rgba(46,125,82,.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}
.rdv-cicon svg { width: 18px; height: 18px; stroke: var(--accent); }

.rdv-contact-item span {
    display: block;
    font-size: .72rem;
    font-weight: 700;
    letter-spacing: .08em;
    text-transform: uppercase;
    color: var(--accent);
    margin-bottom: 2px;
}
.rdv-contact-item strong { font-size: .95rem; font-weight: 600; color: var(--primary); }

/* ══════════════════════════════════════════════
   LIGHTBOX
   ══════════════════════════════════════════════ */
#lightbox {
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,.96);
    z-index: 2000;
    display: none;
    align-items: center;
    justify-content: center;
}
#lightbox.active { display: flex; }

.lightbox-content {
    max-width: 90vw;
    max-height: 90vh;
    display: flex;
    align-items: center;
    justify-content: center;
}
.lightbox-content img {
    max-width: 90vw;
    max-height: 90vh;
    object-fit: contain;
    border-radius: 4px;
    box-shadow: 0 8px 60px rgba(0,0,0,.5);
}

.lightbox-close,
.lightbox-prev,
.lightbox-next {
    position: absolute;
    background: none;
    border: none;
    color: var(--white);
    cursor: pointer;
    transition: all var(--transition);
    padding: 12px;
    line-height: 1;
}
.lightbox-close { top: 20px; right: 20px; font-size: 2.4rem; opacity: .7; }
.lightbox-close:hover { opacity: 1; transform: rotate(90deg); }

.lightbox-prev, .lightbox-next {
    font-size: 4rem;
    top: 50%;
    transform: translateY(-50%);
    opacity: .6;
}
.lightbox-prev { left: 20px; }
.lightbox-next { right: 20px; }
.lightbox-prev:hover { opacity: 1; transform: translateY(-50%) translateX(-4px); }
.lightbox-next:hover { opacity: 1; transform: translateY(-50%) translateX(4px); }

/* ══════════════════════════════════════════════
   RESPONSIVE
   ══════════════════════════════════════════════ */

/* Tablettes */
@media (max-width: 1024px) {
    .gallery-outer { padding: 0 48px; }
    .contact-grid { gap: 28px 48px; }
}

/* Mobile large */
@media (max-width: 900px) {
    .nav-links {
        display: none;
        position: absolute;
        top: 100%;
        left: 0; right: 0;
        background: rgba(17,17,17,.98);
        flex-direction: column;
        padding: 20px 32px 28px;
        gap: 4px;
        border-top: 1px solid rgba(255,255,255,.08);
    }
    .nav-links.open { display: flex; }
    .nav-toggle { display: flex; }

    .contact-grid { grid-template-columns: 1fr; gap: 24px; }
    .hero-slide { background-attachment: scroll; }
    .section { padding: 72px 0; }
    .container { padding: 0 20px; }
    .services-grid { grid-template-columns: repeat(auto-fill, minmax(260px, 1fr)); gap: 20px; }
    .news-grid { grid-template-columns: repeat(auto-fill, minmax(260px, 1fr)); gap: 20px; }
    .section-header { margin-bottom: 44px; }
}

/* Mobile */
@media (max-width: 640px) {
    .payment-title { display: none; }
    .payment-methods { gap: 16px; }
    .payment-item { font-size: .75rem; }
    .hero-title { font-size: clamp(2rem, 8vw, 2.8rem); }
    .hero-buttons { flex-direction: column; align-items: center; }
    .hero-buttons .btn { width: 260px; justify-content: center; }
    .services-grid { grid-template-columns: 1fr; }
    .news-grid { grid-template-columns: 1fr; }
    .section { padding: 56px 0; }
    .gallery-outer { padding: 0 40px; }
    .gc-arrow { width: 38px; height: 38px; font-size: 1.3rem; }
    .gc-prev { left: -2px; }
    .gc-next { right: -2px; }
    .lightbox-prev { left: 4px; font-size: 2.8rem; }
    .lightbox-next { right: 4px; font-size: 2.8rem; }
    .rdv-box { padding: 36px 24px 32px; }
    .footer-inner { flex-direction: column; text-align: center; }
    .contact-item { gap: 14px; }
    .contact-icon { width: 38px; height: 38px; }
}

/* Très petit */
@media (max-width: 400px) {
    .container { padding: 0 16px; }
    .btn { padding: 12px 24px; }
    .gallery-outer { padding: 0 36px; }
}
