* { margin: 0; padding: 0; box-sizing: border-box; }

:root {
    --gold: #E8B72E;
    --gold-dark: #C99B1F;
    --red: #C81C21;
    --dark: #1A1A1A;
}

html { scroll-behavior: smooth; }
body {
    font-family: 'Bricolage Grotesque', Arial, sans-serif;
    background: #ffffff;
    color: var(--dark);
}

/* ===== HEADER ===== */
.site-header {
    position: sticky;
    top: 0;
    z-index: 20;
    background: rgba(255,255,255,0.92);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid #f1f1f1;
}
.header-inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 16px 6%;
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.brand img { height: 56px; width: auto; }
.header-actions { display: flex; align-items: center; gap: 12px; }
.btn-back {
    display: inline-flex; align-items: center; gap: 8px;
    text-decoration: none; color: var(--dark);
    font-size: 14px; font-weight: 600;
    padding: 11px 22px; border-radius: 999px;
    border: 1.5px solid #e3e3e3; transition: all 0.25s ease;
}
.btn-back:hover { border-color: var(--dark); }
.btn-order {
    display: inline-flex; align-items: center; gap: 8px;
    text-decoration: none; color: #fff; background: var(--dark);
    font-size: 14px; font-weight: 600;
    padding: 12px 24px; border-radius: 999px; transition: all 0.25s ease;
}
.btn-order:hover { background: var(--gold); transform: translateY(-1px); }

/* ===== BANNIÈRE ===== */
.contact-banner {
    position: relative;
    min-height: 340px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: #fff;
    padding: 60px 6%;
}
.contact-banner .banner-inner { position: relative; z-index: 1; max-width: 700px; }
.contact-banner .eyebrow {
    display: inline-block;
    background: rgba(232,183,46,0.22);
    color: #fff;
    border: 1px solid rgba(232,183,46,0.5);
    font-size: 12px; font-weight: 600; letter-spacing: 2px; text-transform: uppercase;
    padding: 7px 16px; border-radius: 999px; margin-bottom: 18px;
}
.contact-banner h1 {
    font-size: 52px; font-weight: 900; letter-spacing: -1px; line-height: 1.05;
    margin-bottom: 14px;
}
.contact-banner h1 .gold { color: var(--gold); }
.contact-banner p { font-size: 16px; opacity: 0.9; line-height: 1.6; }

/* ===== SECTION CONTACT ===== */
.contact-section {
    max-width: 1200px;
    margin: 0 auto;
    padding: 80px 6%;
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 50px;
    align-items: start;
}
.block-title .eyebrow {
    display: inline-block; color: var(--gold-dark);
    font-size: 12px; font-weight: 700; letter-spacing: 2px; text-transform: uppercase;
    margin-bottom: 8px;
}
.block-title h2 { font-size: 30px; font-weight: 800; letter-spacing: -0.5px; margin-bottom: 8px; }
.block-title p { color: #888; font-size: 14.5px; margin-bottom: 28px; line-height: 1.6; }

/* Formulaire */
.contact-form .form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-group { margin-bottom: 18px; }
.form-group label {
    display: block; font-size: 11px; font-weight: 600; color: #777;
    text-transform: uppercase; letter-spacing: 1px; margin-bottom: 7px;
}
.form-group input, .form-group textarea {
    width: 100%;
    padding: 13px 16px;
    border: 1.5px solid #e5e5e5;
    border-radius: 10px;
    background: #fafafa;
    font-family: 'Bricolage Grotesque', sans-serif;
    font-size: 14.5px;
    color: var(--dark);
    outline: none;
    transition: all 0.25s ease;
}
.form-group textarea { resize: vertical; min-height: 130px; }
.form-group input:focus, .form-group textarea:focus {
    border-color: var(--gold); background: #fff;
    box-shadow: 0 0 0 3px rgba(232,183,46,0.15);
}
.btn-send {
    display: inline-flex; align-items: center; gap: 10px;
    background: var(--gold); color: #fff; border: none;
    font-family: 'Bricolage Grotesque', sans-serif;
    font-size: 14px; font-weight: 700; letter-spacing: 0.5px;
    padding: 15px 34px; border-radius: 12px; cursor: pointer;
    transition: all 0.25s ease; box-shadow: 0 8px 22px rgba(232,183,46,0.30);
}
.btn-send:hover { background: var(--gold-dark); transform: translateY(-2px); }

/* Bloc localisation */
.location-block {
    background: #fafafa;
    border: 1.5px solid #ececec;
    border-radius: 20px;
    padding: 30px;
}
.info-item {
    display: flex; align-items: flex-start; gap: 16px;
    padding: 16px 0; border-bottom: 1px solid #eeeeee;
}
.info-item:last-of-type { border-bottom: none; }
.info-icon {
    width: 46px; height: 46px; flex-shrink: 0;
    border-radius: 12px; background: rgba(232,183,46,0.14); color: var(--gold-dark);
    display: inline-flex; align-items: center; justify-content: center;
}
.info-item h4 { font-size: 14px; font-weight: 700; margin-bottom: 3px; }
.info-item p, .info-item a { font-size: 14px; color: #777; text-decoration: none; line-height: 1.5; }
.info-item a:hover { color: var(--gold-dark); }
.hours-row { display: flex; justify-content: space-between; font-size: 13.5px; padding: 5px 0; color: #777; }
.hours-row span:last-child { font-weight: 600; color: var(--dark); }
.map-wrap {
    margin-top: 22px; border-radius: 16px; overflow: hidden;
    border: 1.5px solid #ececec; line-height: 0;
}
.map-wrap iframe { width: 100%; height: 220px; border: 0; }

/* ===== FOOTER ===== */
.site-footer {
    background: #000000; color: #cfcfcf;
    text-align: center; padding: 30px 6%;
    font-size: 13px;
}
.site-footer .gold { color: var(--gold); }
.site-footer .red { color: var(--red); }

@media (max-width: 860px) {
    .contact-section { grid-template-columns: 1fr; gap: 40px; padding: 56px 6%; }
    .contact-banner h1 { font-size: 38px; }
    .contact-form .form-row { grid-template-columns: 1fr; }
}
