.af-page {
    max-width: 1100px;
    margin: 0 auto;
    padding: clamp(48px, 6vh, 90px) 24px 110px;
    color: var(--text-color);
}

/* ── Hero ── */
.af-hero {
    background: var(--white);
    border-radius: 16px;
    padding: 3.5rem 3rem 3rem;
    margin-bottom: 2rem;
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(0, 0, 0, 0.04);
    border-left: 6px solid var(--primary-color);
    box-shadow: 0 10px 24px rgba(0, 0, 0, 0.06);
}

.af-hero::before {
    content: '';
    position: absolute;
    top: -50px; right: -50px;
    width: 260px; height: 260px;
    border-radius: 50%;
    background: rgba(208, 108, 49, 0.06);
    pointer-events: none;
    z-index: 0;
}

.af-hero::after {
    content: '';
    position: absolute;
    bottom: -70px; left: 35%;
    width: 340px; height: 340px;
    border-radius: 50%;
    background: rgba(195, 197, 148, 0.22);
    pointer-events: none;
    z-index: 0;
}

.af-hero__eyebrow {
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--primary-color);
    margin: 0 0 1rem;
    position: relative;
    z-index: 1;
}

.af-hero__title {
    font-size: clamp(32px, 4.2vw, 46px);
    font-weight: 800;
    letter-spacing: -0.02em;
    color: var(--text-color);
    line-height: 1.15;
    margin: 0 0 1.25rem;
    position: relative;
    z-index: 1;
}

.af-hero__title em {
    font-style: italic;
    color: var(--primary-color);
}

.af-hero__text {
    font-size: 15px;
    line-height: 1.8;
    color: var(--text-color);
    opacity: 0.85;
    max-width: 680px;
    margin: 0;
    font-weight: 400;
    position: relative;
    z-index: 1;
}

.af-hero__badge {
    display: inline-block;
    margin-top: 1.5rem;
    background: rgba(195, 197, 148, 0.35);
    border: 1px solid rgba(0, 0, 0, 0.06);
    color: var(--text-color);
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 0.08em;
    padding: 6px 16px;
    border-radius: 20px;
    position: relative;
    z-index: 1;
}

/* ── Cards ── */
.af-card {
    background: var(--white);
    border: 1px solid rgba(0, 0, 0, 0.04);
    border-radius: 16px;
    padding: 1.75rem;
    margin-bottom: 1.25rem;
    border-left: 4px solid var(--border-color);
    box-shadow: 0 10px 24px rgba(0, 0, 0, 0.06);
}

.af-card__header {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 1.25rem;
}

.af-card__icon {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    background: rgba(195, 197, 148, 0.35);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.af-card__title {
    font-size: 22px;
    font-weight: 800;
    letter-spacing: -0.02em;
    margin: 0;
    color: var(--text-color);
}

.af-card__intro {
    font-size: 14px;
    line-height: 1.75;
    color: var(--text-color);
    opacity: 0.8;
    margin: 0 0 1.25rem;
    font-weight: 400;
}

/* ── Tags ── */
.af-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 7px;
}

.af-tag {
    font-size: 12px;
    padding: 5px 12px;
    border-radius: 16px;
    background: var(--white);
    border: 1px solid rgba(0, 0, 0, 0.08);
    color: var(--text-color);
    opacity: 0.85;
    line-height: 1;
}

.af-tag--green {
    background: rgba(195, 197, 148, 0.35);
    border-color: rgba(0, 0, 0, 0.06);
    color: var(--text-color);
    font-weight: 800;
    opacity: 1;
}

/* ── Valeurs grid ── */
.af-values-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
}

.af-value-item {
    background: rgba(0, 0, 0, 0.02);
    border-radius: 10px;
    padding: 1rem 1.125rem;
    border: 1px solid rgba(0, 0, 0, 0.04);
}

.af-value-item--full {
    grid-column: 1 / -1;
}

.af-value-item__label {
    font-size: 12px;
    font-weight: 800;
    color: var(--primary-color);
    letter-spacing: 0.04em;
    margin: 0 0 4px;
}

.af-value-item__text {
    font-size: 13px;
    line-height: 1.6;
    color: var(--text-color);
    opacity: 0.8;
    margin: 0;
    font-weight: 400;
}

/* ── Ce qui nous caractérise ── */
.af-caracterise {
    background: var(--white);
    border-radius: 16px;
    padding: 1.75rem;
    margin-bottom: 1.25rem;
    border: 1px solid rgba(0, 0, 0, 0.04);
    border-left: 4px solid var(--border-color);
    box-shadow: 0 10px 24px rgba(0, 0, 0, 0.06);
}

.af-caracterise__title {
    font-size: 22px;
    font-weight: 800;
    letter-spacing: -0.02em;
    margin: 0 0 1.25rem;
    color: var(--text-color);
}

/* ── Raisons (Pourquoi venir) ── */
.af-reasons-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 10px;
}

.af-reason {
    text-align: center;
    padding: 1.25rem 0.75rem;
    background: rgba(0, 0, 0, 0.02);
    border-radius: 10px;
    border: 1px solid rgba(0, 0, 0, 0.04);
}

.af-reason__emoji {
    height: 200px;
    margin-bottom: 0.75rem;
    display: block;
    object-fit: contain;
}

.af-reason__text {
    font-size: 13px;
    color: var(--text-color);
    opacity: 0.8;
    margin: 0;
    line-height: 1.4;
}


.af-gallery {
    margin-top: 1.25rem;
    display: grid;
    grid-template-columns: 1.6fr 1fr 1fr;
    grid-template-rows: 200px 160px;
    gap: 8px;
    border-radius: 12px;
    overflow: hidden;
}

.af-gallery__item {
    position: relative;
    overflow: hidden;
    background: rgba(0, 0, 0, 0.04);
}

.af-gallery__item:first-child {
    grid-row: 1 / 3;
}

.af-gallery__item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.5s ease;
}

.af-gallery__item:hover img {
    transform: scale(1.05);
}

.af-gallery__item::after {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(59, 109, 17, 0);
    transition: background 0.3s ease;
    pointer-events: none;
}

.af-gallery__item:hover::after {
    background: rgba(59, 109, 17, 0.08);
}

@media (max-width: 600px) {
    .af-hero { padding: 2.5rem 1.5rem 2rem; }
    .af-values-grid { grid-template-columns: 1fr; }
    .af-value-item--full { grid-column: auto; }
    .af-reasons-grid { grid-template-columns: repeat(2, 1fr); }

    .af-gallery {
        grid-template-columns: 1fr 1fr;
        grid-template-rows: 160px 160px 140px;
    }

    .af-gallery__item:first-child {
        grid-row: auto;
        grid-column: 1 / 3;
    }
}