:root {
    --teal: #006469;
    --teal-dark: #004f51;
    --beige: #F7F4EB;
    --off-white: rgba(255, 255, 255, 0.85);
    --charcoal: #1F1F1F;
}

* {
    box-sizing: border-box;
}

body.qui-page {
    margin: 0;
    font-family: 'Inter', sans-serif;
    background: #fff;
    color: var(--charcoal);
    line-height: 1.6;
}

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

a:hover {
    opacity: 0.7;
}

.container {
    width: min(1200px, 90vw);
    margin: 0 auto;
}

/* Header */
.site-header {
    background: var(--teal);
    color: white;
    padding: 1.5rem 0;
    position: sticky;
    top: 0;
    z-index: 10;
}

.nav-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 1.5rem;
}

.logo-link {
    text-decoration: none;
    color: white;
}

.logo-mark {
    width: 44px;
    height: 44px;
    border: 2px solid white;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    font-weight: 600;
    letter-spacing: 0.05em;
}

.nav-links {
    display: flex;
    gap: 2rem;
    letter-spacing: 0.05em;
    font-size: 0.95rem;
}

.nav-links a {
    color: white;
    text-decoration: none;
}

/* Hero */
.hero {
    background: var(--teal);
    color: white;
    padding: 5rem 0 4rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.hero h1 {
    font-size: clamp(2.5rem, 6vw, 5rem);
    font-weight: 300;
    letter-spacing: -0.02em;
    margin: 0;
}

/* Mediateur sections */
.mediateur {
    padding: 5rem 0;
    border-bottom: 1px solid rgba(0, 0, 0, 0.08);
}

.mediateur-alt {
    background: var(--beige);
}

.mediateur-header {
    margin-bottom: 3rem;
}

.mediateur-header h2 {
    font-size: clamp(1.8rem, 4vw, 3rem);
    font-weight: 400;
    letter-spacing: -0.01em;
    margin: 0;
    color: var(--teal);
}

.mediateur-block {
    max-width: 760px;
    margin-bottom: 2.5rem;
}

.mediateur-block:last-child {
    margin-bottom: 0;
}

.mediateur-block h3 {
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    font-weight: 500;
    color: var(--teal);
    margin: 0 0 1rem;
}

.mediateur-block p {
    font-size: 1rem;
    color: var(--charcoal);
    margin: 0 0 1rem;
    line-height: 1.75;
}

.mediateur-block p:last-child {
    margin-bottom: 0;
}

.mediateur-divider {
    width: 48px;
    height: 1px;
    background: var(--teal);
    opacity: 0.3;
    margin: 2.5rem 0;
}

/* Footer */
.site-footer {
    background: var(--beige);
    color: var(--charcoal);
    padding: 3.5rem 0 2rem;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
}

.footer-brand h3 {
    margin: 0 0 0.5rem;
    font-weight: 500;
}

.footer-contact p {
    margin: 0.2rem 0;
}

.footer-meta {
    text-align: center;
    font-size: 0.9rem;
    color: #6f6f6f;
    border-top: 1px solid rgba(0, 0, 0, 0.08);
    padding-top: 1.5rem;
}

.footer-social a {
    text-decoration: none;
    color: inherit;
}

@media (max-width: 640px) {
    .nav-links {
        gap: 1rem;
    }

    .mediateur {
        padding: 3rem 0;
    }
}

/* CTA button */
.cta-section {
    padding: 4rem 0 5rem;
    text-align: center;
    background: #fff;
}

a.btn-cta {
    display: inline-block;
    background: #006469;
    color: #ffffff !important;
    border-radius: 999px;
    padding: 0.9rem 2.8rem;
    font-size: 1rem;
    font-weight: 500;
    letter-spacing: 0.03em;
    text-decoration: none;
    border: none;
    transition: background 0.2s ease;
}

a.btn-cta:hover {
    background: #004f51;
    opacity: 1;
}
