body{visibility:visible}
/* contact.css — même design system que index/about */

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { overflow-y: scroll; scroll-behavior: smooth; }

body {
    background-color: #faf7f2;
    color: #1d1510;
    font-family: -apple-system, 'Helvetica Neue', Arial, sans-serif;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

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

/* ── HEADER ─────────────────────────────────── */
header {
    position: fixed;
    top: 0; left: 0;
    width: 100%;
    z-index: 1000;
    background: #faf7f2;
    border-bottom: 1px solid #e8ddd0;
    box-shadow: 0 1px 20px rgba(0,0,0,.06);
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 14px 50px;
    box-sizing: border-box;
}

header::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 2px;
    background: linear-gradient(90deg, transparent, #b8962e 30%, #e8c84a 50%, #b8962e 70%, transparent);
}

.real img {
    height: 54px; width: auto; display: block;
    transition: transform 0.3s ease;
}
.real img:hover { transform: scale(1.04); }

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

.nav a {
    font-family: Arial, sans-serif;
    font-size: 0.78rem; font-weight: 600;
    text-transform: uppercase; letter-spacing: 1.8px;
    color: #3a3a3a;
    padding: 8px 14px;
    border-radius: 4px;
    position: relative;
    transition: color 0.25s ease;
}

.nav a::after {
    content: '';
    position: absolute;
    bottom: 4px; left: 50%;
    width: 0; height: 1.5px;
    background: #b8962e;
    transform: translateX(-50%);
    transition: width 0.3s ease;
}

.nav a:hover, .nav a.active { color: #b8962e; }
.nav a:hover::after, .nav a.active::after { width: 65%; }

.lang-selector {
    position: relative; display: inline-block;
    padding: 8px 14px; cursor: pointer;
    font-family: Arial, sans-serif;
    font-size: 0.78rem; font-weight: 700;
    letter-spacing: 1.8px; color: #b8962e;
}

.lang-dropdown {
    display: none;
    position: absolute;
    background: #faf7f2;
    border: 1px solid #e8e0ce;
    box-shadow: 0 8px 24px rgba(0,0,0,.1);
    top: calc(100% + 4px); left: 0;
    min-width: 56px; border-radius: 4px; z-index: 1001;
}

.lang-dropdown a {
    display: block; padding: 8px 12px;
    color: #3a3a3a; font-size: 0.75rem;
    font-weight: 600; letter-spacing: 1.5px;
    text-align: center; transition: background 0.2s, color 0.2s;
}
.lang-dropdown a:hover { background: #b8962e; color: #fff; }
.lang-selector:hover .lang-dropdown { display: block; }

.hamburger {
    display: none; flex-direction: column;
    cursor: pointer; z-index: 1001; gap: 5px;
}
.hamburger span {
    width: 26px; height: 2px;
    background: #1a1208; border-radius: 2px;
    transition: all 0.3s ease;
}
.hamburger.active span:nth-child(1) { transform: rotate(45deg) translate(7px,7px); }
.hamburger.active span:nth-child(2) { opacity: 0; }
.hamburger.active span:nth-child(3) { transform: rotate(-45deg) translate(6px,-6px); }

/* ── MAIN ────────────────────────────────────── */
main { flex: 1; padding-top: 82px; }

/* ── HERO ────────────────────────────────────── */
.contact-hero {
    background: #faf7f2;
    text-align: center;
    padding: 64px 40px 56px;
    border-bottom: 1px solid #f0ebe0;
}

.hero-eyebrow {
    display: block;
    font-family: Arial, sans-serif;
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 4px;
    text-transform: uppercase;
    color: #b8962e;
    margin-bottom: 18px;
}

.hero-title {
    font-family: -apple-system, 'Helvetica Neue', Arial, sans-serif;
    font-size: clamp(2.4rem, 5vw, 4rem);
    font-weight: 700;
    color: #1d1d1f;
    letter-spacing: -1.5px;
    line-height: 1;
    margin-bottom: 20px;
}

.hero-line {
    width: 40px; height: 2px;
    background: #1d1d1f;
    border-radius: 2px;
    margin: 0 auto 20px;
}

.hero-sub {
    font-size: 1rem;
    color: #6e6e73;
    line-height: 1.6;
}

/* ── CONTENU ─────────────────────────────────── */
.contact-wrap {
    max-width: 1200px;
    margin: 0 auto;
    padding: 72px 80px 80px;
    display: grid;
    grid-template-columns: 1fr 400px;
    gap: 72px;
    align-items: start;
}

/* ── EYEBROW / TITRE COLONNE ─────────────────── */
.col-eyebrow {
    display: block;
    font-family: Arial, sans-serif;
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 4px;
    text-transform: uppercase;
    color: #b8962e;
    margin-bottom: 10px;
}

.col-title {
    font-family: -apple-system, 'Helvetica Neue', Arial, sans-serif;
    font-size: clamp(1.4rem, 2.5vw, 2rem);
    font-weight: 700;
    color: #1d1d1f;
    letter-spacing: -0.5px;
    margin-bottom: 32px;
}

/* ── FORMULAIRE ──────────────────────────────── */
.contact-form-col { display: flex; flex-direction: column; }

form { display: flex; flex-direction: column; gap: 20px; }

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

label {
    font-size: 0.82rem;
    font-weight: 600;
    color: #3a3020;
}

.req { color: #b8962e; }

input, select, textarea {
    font-family: -apple-system, 'Helvetica Neue', Arial, sans-serif;
    font-size: 0.97rem;
    color: #1d1510;
    background: rgba(255,255,255,.75);
    border: 1px solid #ddd5c4;
    border-radius: 12px;
    padding: 0 18px;
    height: 50px;
    outline: none;
    transition: border-color 0.2s, background 0.2s;
    appearance: none;
    width: 100%;
}

textarea {
    height: auto;
    padding: 14px 18px;
    resize: vertical;
    min-height: 130px;
    line-height: 1.6;
}

input:focus, select:focus, textarea:focus {
    border-color: #1d1d1f;
    background: #fff;
}

input::placeholder, textarea::placeholder { color: #aaaaaa; }

select {
    cursor: pointer;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%239a9080' stroke-width='1.5' fill='none' stroke-linecap='round'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 16px center;
    padding-right: 40px;
}

.form-submit {
    align-self: flex-start;
    padding: 14px 40px;
    background: #1a1208;
    color: #ffffff;
    font-family: -apple-system, 'Helvetica Neue', Arial, sans-serif;
    font-size: 0.9rem;
    font-weight: 600;
    border: none;
    border-radius: 980px;
    cursor: pointer;
    transition: background 0.25s, transform 0.2s;
    margin-top: 4px;
}
.form-submit:hover { background: #3a3a3a; transform: translateY(-2px); }

.form-rgpd {
    font-size: 0.78rem;
    color: #9a9080;
    line-height: 1.5;
    margin-top: 10px;
}
.form-rgpd a { color: #b8962e; text-decoration: underline; }
.form-rgpd a:hover { color: #8a6e20; }

.form-success {
    display: none;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 12px;
    padding: 48px 32px;
    background: #f2ede4;
    border-radius: 20px;
    margin-top: 24px;
}

.success-icon { font-size: 1.4rem; color: #b8962e; }
.success-title { font-size: 1.3rem; font-weight: 700; color: #1d1d1f; letter-spacing: -0.3px; }
.success-text { font-size: 0.97rem; color: #6e6e73; line-height: 1.7; }

/* ── INFOS ───────────────────────────────────── */
.contact-info-col { display: flex; flex-direction: column; gap: 28px; }

.info-block { display: flex; flex-direction: column; gap: 16px; }

.info-items { display: flex; flex-direction: column; gap: 14px; }

.info-item { display: flex; flex-direction: column; gap: 3px; }

.info-label {
    font-family: Arial, sans-serif;
    font-size: 0.65rem;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: #9a9080;
}

.info-value {
    font-size: 1rem;
    font-weight: 500;
    color: #1d1510;
    transition: color 0.2s;
}

a.info-value:hover { color: #b8962e; }

.info-divider { height: 1px; background: #f0ebe0; }

address {
    font-style: normal;
    display: flex;
    flex-direction: column;
    gap: 4px;
    font-size: 0.97rem;
    color: #1d1510;
    line-height: 1.5;
}
address strong { font-weight: 600; }

.map-wrap {
    width: 100%;
    border-radius: 16px;
    overflow: hidden;
    border: 1px solid #e8ddd0;
    box-shadow: 0 2px 16px rgba(0,0,0,.06);
}

.map-wrap iframe {
    display: block;
    width: 100%;
    height: 240px;
    border: none;
}

.services-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.services-list li {
    font-size: 0.97rem;
    color: #6e6e73;
    line-height: 1.5;
    padding-left: 16px;
    position: relative;
}

.services-list li::before {
    content: '';
    position: absolute;
    left: 0; top: 8px;
    width: 5px; height: 5px;
    background: #b8962e;
    border-radius: 50%;
}

/* ── FOOTER ──────────────────────────────────── */
footer {
    background: #050505;
    color: #fff;
    padding: 56px 52px 32px;
    border-top: 3px solid #b8962e;
}

.footer-inner { max-width: 1100px; margin: 0 auto; display: flex; flex-direction: column; gap: 44px; }

.footer-cols { display: grid; grid-template-columns: 1.4fr 1fr 1fr; gap: 48px; }

.footer-logo { height: 38px; width: auto; filter: brightness(0) invert(1); opacity: 0.7; display: block; margin-bottom: 14px; }

.footer-brand-text { font-family: Arial, sans-serif; font-size: 0.85rem; color: #9a9080; line-height: 1.6; max-width: 220px; }

.footer-col-title { font-family: Arial, sans-serif; font-size: 0.62rem; font-weight: 700; letter-spacing: 3px; text-transform: uppercase; color: #b8962e; margin-bottom: 18px; }

.footer-address { font-style: normal; display: flex; flex-direction: column; gap: 8px; font-family: Arial, sans-serif; font-size: 0.85rem; color: #9a9080; line-height: 1.4; }
.footer-address a { color: #f0ebe0; transition: color 0.25s; }
.footer-address a:hover { color: #e8c84a; }

.footer-nav { display: flex; flex-direction: column; gap: 10px; }
.footer-nav a { font-family: Arial, sans-serif; font-size: 0.85rem; color: #9a9080; transition: color 0.25s; }
.footer-nav a:hover { color: #e8c84a; }

.footer-bar { display: flex; justify-content: space-between; align-items: center; border-top: 1px solid rgba(184,150,46,.2); padding-top: 24px; flex-wrap: wrap; gap: 14px; }

.footer-copy { font-family: Arial, sans-serif; font-size: 0.75rem; color: #5a5a5a; }

.footer-legal { display: flex; gap: 24px; }
.footer-legal a { font-family: Arial, sans-serif; font-size: 0.75rem; color: #8a8a8a; transition: color 0.25s; }
.footer-legal a:hover { color: #e8c84a; }

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

/* ── RESPONSIVE ──────────────────────────────── */
@media (max-width: 1024px) {
    .contact-wrap { padding: 56px 40px; gap: 52px; }
}

@media (max-width: 860px) {
    .contact-wrap { grid-template-columns: 1fr; padding: 48px 36px; }
    .footer-cols { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 768px) {
    header { padding: 10px 20px; height: 60px; }
    main { padding-top: 60px; }
    .real img { height: 38px; }
    .hamburger { display: flex; }

    .nav {
        position: fixed; top: 60px; left: 0;
        width: 100%; height: calc(100vh - 60px);
        background: #faf7f2;
        flex-direction: column; justify-content: flex-start;
        align-items: center; gap: 0; padding-top: 40px;
        transform: translateX(-100%); transition: transform 0.4s ease;
        opacity: 0; visibility: hidden;
    }
    .nav.active { transform: translateX(0); opacity: 1; visibility: visible; }
    .nav a { width: 88%; text-align: center; font-size: 0.9rem; padding: 16px 20px; margin: 6px 0; border-bottom: 1px solid #f0ebe0; }
    .nav a::after { display: none; }
    .lang-selector { margin: 16px 0; width: 88%; text-align: center; }
    .lang-dropdown { position: relative; top: 0; width: 100%; margin-top: 8px; }
    .lang-selector.active .lang-dropdown { display: block; }

    .contact-hero { padding: 48px 24px 40px; }
    .contact-wrap { padding: 40px 24px 60px; }
    .form-row { grid-template-columns: 1fr; }
    .form-submit { width: 100%; text-align: center; }
    footer { padding: 48px 24px 28px; }
    .footer-cols { grid-template-columns: 1fr; gap: 32px; }
    .footer-bar { flex-direction: column; align-items: flex-start; }
    .footer-legal { flex-direction: column; gap: 10px; }
}

@media (max-width: 480px) {
    header { padding: 8px 16px; height: 54px; }
    main { padding-top: 54px; }
    .nav { top: 54px; height: calc(100vh - 54px); }
    .real img { height: 34px; }
}
