:root {
    --brown:         #74482A;
    --brown-hover:   #5a3720;
    --brown-dark:    #2c1a0e;
    --brown-light:   #f0e6da;
    --cream:         #faf7f3;
    --cream-card:    #fffdfb;
    --border:        #e8d5c0;
    --border-light:  #f2e8dc;
    --text-body:     #5c4a3a;
    --text-muted:    #a08070;
    --text-heading:  #2c1a0e;
}

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

body {
    font-family: 'Open Sans', sans-serif;
    font-size: 0.95rem;
    line-height: 1.75;
    background-color: var(--cream);
    color: var(--text-body);
    -webkit-font-smoothing: antialiased;
}

a {
    color: var(--brown);
    text-decoration: none;
    transition: color 0.2s;
}
a:hover { color: var(--brown-hover); }

/* ── Layout ────────────────────────────────────────────── */

.site-wrap {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

/* ── Header ────────────────────────────────────────────── */

.site-header {
    background: var(--cream-card);
    border-bottom: 1px solid var(--border);
}

.header-inner {
    max-width: 860px;
    margin: 0 auto;
    padding: 2rem 2rem;
    display: flex;
    align-items: center;
    gap: 2.5rem;
}

.header-logo {
    width: 90px;
    height: 90px;
    object-fit: contain;
    display: block;
}

.header-identity {
    flex: 1;
}

.header-identity h1 {
    font-family: 'Lora', serif;
    font-size: 2.4rem;
    font-weight: 700;
    color: var(--brown-dark);
    letter-spacing: -0.02em;
    line-height: 1.1;
}

.header-tagline {
    margin-top: 0.35rem;
    font-size: 0.72rem;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--text-muted);
}

.header-location {
    margin-top: 0.15rem;
    font-size: 0.8rem;
    color: var(--text-muted);
}

.header-nav {
    display: flex;
    flex-direction: column;
    gap: 0.45rem;
    border-left: 1px solid var(--border);
    padding-left: 2rem;
    min-width: 180px;
}

.header-nav a {
    font-size: 0.82rem;
    color: var(--text-body);
    display: flex;
    align-items: center;
    gap: 0.55rem;
    transition: color 0.2s;
}

.header-nav a:hover { color: var(--brown); }

.nav-icon {
    color: var(--brown);
    width: 14px;
    font-size: 0.82rem;
    flex-shrink: 0;
}

/* ── Main ──────────────────────────────────────────────── */

.site-main {
    flex: 1;
    max-width: 860px;
    margin: 0 auto;
    padding: 3rem 2rem;
    width: 100%;
}

/* ── Intro text ────────────────────────────────────────── */

.intro-text {
    font-size: 0.97rem;
    color: var(--text-body);
    line-height: 1.85;
    padding-bottom: 2.5rem;
    margin-bottom: 2.5rem;
    border-bottom: 1px solid var(--border-light);
}

/* ── Brand cards ───────────────────────────────────────── */

.brand-list {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
}

.brand-card {
    display: flex;
    align-items: center;
    gap: 2rem;
    padding: 1.5rem;
    background: var(--cream-card);
    border: 1px solid var(--border);
    border-radius: 6px;
    text-decoration: none;
    color: inherit;
    transition: box-shadow 0.2s, transform 0.2s;
}

.brand-card:hover {
    box-shadow: 0 4px 20px rgba(116, 72, 42, 0.1);
    transform: translateY(-1px);
    color: inherit;
}

.brand-card-logo {
    flex-shrink: 0;
    width: 210px;
    padding: 0.85rem;
    background: white;
    border: 1px solid var(--border-light);
    border-radius: 4px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.brand-card-logo img {
    width: 100%;
    height: auto;
    display: block;
}

.brand-card-logo-wordmark {
    flex-direction: column;
    gap: 0.4rem;
}

.brand-wordmark {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: 1.3rem;
    font-weight: 700;
    line-height: 1.2;
    text-align: center;
    color: var(--text-heading);
}

.brand-wordmark-caption {
    font-size: 0.72rem;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: var(--brown);
}

.brand-card-body h2 {
    font-family: 'Lora', serif;
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--text-heading);
    margin-bottom: 0.45rem;
}

.brand-card-body p {
    font-size: 0.85rem;
    color: var(--text-body);
    line-height: 1.65;
    margin-bottom: 0.75rem;
}

.brand-address {
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--brown);
    display: flex;
    align-items: center;
    gap: 0.35rem;
}

/* ── Footer ────────────────────────────────────────────── */

.site-footer {
    border-top: 1px solid var(--border);
    padding: 1.25rem 2rem;
    text-align: center;
    font-size: 0.78rem;
    color: var(--text-muted);
    background: var(--cream-card);
}

/* ── Mentions légales ──────────────────────────────────── */

.mentions-back {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    font-size: 0.85rem;
    margin-bottom: 2rem;
    color: var(--brown);
}

.mentions-section {
    background: var(--cream-card);
    border: 1px solid var(--border-light);
    border-radius: 6px;
    padding: 1.25rem 1.5rem;
    margin-bottom: 1rem;
}

.mentions-section h2 {
    font-family: 'Lora', serif;
    font-size: 1rem;
    font-weight: 600;
    color: var(--text-heading);
    margin-bottom: 0.5rem;
}

.mentions-section p {
    font-size: 0.85rem;
    color: var(--text-body);
}

/* ── Responsive ────────────────────────────────────────── */

@media (max-width: 640px) {
    .header-inner {
        flex-wrap: wrap;
        gap: 1.5rem;
    }
    .header-nav {
        border-left: none;
        border-top: 1px solid var(--border);
        padding-left: 0;
        padding-top: 1rem;
        width: 100%;
        flex-direction: row;
        flex-wrap: wrap;
        gap: 0.75rem 1.5rem;
    }
    .brand-card {
        flex-direction: column;
        align-items: flex-start;
    }
    .brand-card-logo {
        width: 120px;
    }
}

/* ── FontAwesome centering ─────────────────────────────── */

.fa, .fas, .far, .fab, .fal, .fad, .fat, .fass {
    display: inline-flex;
    align-items: center;
    justify-content: center;
}
