/* =========================================================
   FELIN OURAL — main.css
   ========================================================= */

/* ---------------------------------------------------------
   1. RESET & BASE
   --------------------------------------------------------- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

body {
    font-family: 'Inter', system-ui, sans-serif;
    background: #faf5ee;
    color: #2d2a27;
    line-height: 1.6;
    position: relative;
}

img { display: block; max-width: 100%; }

a { text-decoration: none; }

/* Fond de pattes */
.paw-bg {
    position: absolute;
    inset: 0;
    pointer-events: none;
    z-index: 0;
    overflow: hidden;
}

.paw-bg__item {
    position: absolute;
    display: block;
    color: #8b6f5e;
}

.paw-bg__item svg {
    width: 100%;
    height: 100%;
}

.site-main {
    position: relative;
    z-index: 1;
}

/* ---------------------------------------------------------
   2. LAYOUT
   --------------------------------------------------------- */
.container {
    max-width: 1200px;
    margin-inline: auto;
    padding-inline: 1.5rem;
}

/* ---------------------------------------------------------
   3. HEADER
   --------------------------------------------------------- */
.site-header {
    background: #f5f0e8;
    position: sticky;
    top: 0;
    z-index: 100;
}

.header-inner {
    max-width: 1200px;
    margin-inline: auto;
    padding: 0 1.5rem;
    height: 68px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
}

/* --- Nom du site / Logo --- */
.site-name {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: 1.2rem;
    font-weight: 700;
    color: #5c4a35;
    white-space: nowrap;
    flex-shrink: 0;
}

.custom-logo-link {
    flex-shrink: 0;
    display: flex;
    align-items: center;
}

.custom-logo-link img {
    height: 48px;
    width: auto;
    display: block;
}

/* --- Nav desktop --- */
.site-nav { flex: 1; display: flex; justify-content: center; }

.nav-menu {
    list-style: none;
    display: flex;
    align-items: center;
    gap: 2.5rem;
}

.nav-menu a {
    font-size: .95rem;
    font-weight: 500;
    color: #5c4a35;
    position: relative;
    padding-bottom: 3px;
    transition: color .2s;
}

/* Soulignement au survol et page active */
.nav-menu a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: #5c4a35;
    transition: width .25s ease;
}

.nav-menu a:hover::after,
.nav-menu .current-menu-item > a::after,
.nav-menu .current_page_item > a::after {
    width: 100%;
}

.nav-menu a:hover { color: #3d2f1f; }

/* --- Bouton CTA --- */
.header-cta {
    display: inline-flex;
    align-items: center;
    padding: .55rem 1.3rem;
    background: #5c4a35;
    color: #fff !important;
    font-size: .9rem;
    font-weight: 600;
    border-radius: 999px;
    white-space: nowrap;
    flex-shrink: 0;
    transition: background .2s, transform .15s;
}

.header-cta:hover {
    background: #3d2f1f;
    transform: translateY(-1px);
}

/* --- Burger --- */
.nav-burger {
    display: none;
    flex-direction: column;
    justify-content: center;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: .4rem;
    flex-shrink: 0;
}

.nav-burger span {
    display: block;
    width: 22px;
    height: 2px;
    background: #5c4a35;
    border-radius: 2px;
    transition: transform .25s, opacity .2s;
}

/* Burger → croix quand ouvert */
.nav-burger.is-open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-burger.is-open span:nth-child(2) { opacity: 0; }
.nav-burger.is-open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ---------------------------------------------------------
   4. MENU MOBILE
   --------------------------------------------------------- */
.nav-mobile {
    position: fixed;
    top: 68px;
    left: 0;
    right: 0;
    z-index: 99;
    display: flex;
    flex-direction: column;
    background: #f5f0e8;
    padding: 1.25rem 1.5rem 1.75rem;
    border-top: 1px solid #e2d9ce;
    box-shadow: 0 8px 24px rgba(0,0,0,.08);
    /* État fermé */
    visibility: hidden;
    opacity: 0;
    transform: translateY(-6px);
    transition: opacity .2s ease, transform .2s ease, visibility .2s;
}

.nav-mobile.is-open {
    visibility: visible;
    opacity: 1;
    transform: translateY(0);
}

.nav-mobile__menu {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: .25rem;
}

.nav-mobile__menu a {
    display: block;
    padding: .7rem 0;
    font-size: 1rem;
    font-weight: 500;
    color: #5c4a35;
    border-bottom: 1px solid #e2d9ce;
    transition: color .2s;
}

.nav-mobile__menu a:hover { color: #3d2f1f; }

.header-cta--mobile {
    margin-top: 1.25rem;
    align-self: flex-start;
}

/* ---------------------------------------------------------
   5. RESPONSIVE
   --------------------------------------------------------- */
@media (max-width: 767px) {
    .site-nav,
    .header-cta:not(.header-cta--mobile) { display: none; }

    .nav-burger { display: flex; }
}

/* ---------------------------------------------------------
   6. BOUTONS
   --------------------------------------------------------- */
.btn {
    display: inline-flex;
    align-items: center;
    gap: .4rem;
    padding: .7rem 1.6rem;
    border-radius: 999px;
    font-size: .95rem;
    font-weight: 600;
    transition: background .2s, color .2s, transform .15s;
    cursor: pointer;
    border: 2px solid transparent;
    white-space: nowrap;
}

.btn--primary {
    background: #5c4a35;
    color: #fff;
}
.btn--primary:hover {
    background: #3d2f1f;
    color: #fff;
    transform: translateY(-1px);
}

.btn--outline {
    border-color: #5c4a35;
    color: #5c4a35;
    background: transparent;
}
.btn--outline:hover {
    background: #5c4a35;
    color: #fff;
    transform: translateY(-1px);
}

/* ---------------------------------------------------------
   7. BADGES
   --------------------------------------------------------- */
.badge {
    display: inline-flex;
    align-items: center;
    padding: .25rem .75rem;
    border-radius: 999px;
    font-size: .75rem;
    font-weight: 600;
    letter-spacing: .04em;
    color: #fff;
}


.badge--disponible { background: #4caf7d; }
.badge--reserve    { background: #e8923a; }
.badge--adopte     { background: #9e9e9e; }

/* ---------------------------------------------------------
   8. HERO FULL (page d'accueil)
   --------------------------------------------------------- */
.hero-full {
    padding: 1.5rem;
}

.hero-full__inner {
    position: relative;
    border-radius: 22px;
    overflow: hidden;
    min-height: 540px;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 3rem 3rem 3.5rem;

    /* Image de fond — le client la définit via l'image mise en avant de la page d'accueil */
    background-color: #3a2e22;
    background-image: var(--hero-bg, none);
    background-size: cover;
    background-position: center;
}

/* Overlay sombre dégradé */
.hero-full__inner::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(
        to right,
        rgba(20,14,8,.72) 0%,
        rgba(20,14,8,.35) 60%,
        rgba(20,14,8,.1) 100%
    );
    pointer-events: none;
}

.hero-full__inner > * { position: relative; z-index: 1; }

/* Badge */
.hero-full__badge {
    display: inline-block;
    align-self: flex-start;
    padding: .35rem 1rem;
    background: rgba(255,255,255,.15);
    backdrop-filter: blur(6px);
    border: 1px solid rgba(255,255,255,.25);
    border-radius: 999px;
    font-size: .78rem;
    font-weight: 600;
    letter-spacing: .06em;
    color: #fff;
    margin-bottom: 1.5rem;
}

/* Titre */
.hero-full__title {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: clamp( 2.4rem, 5.5vw, 4rem );
    font-weight: 700;
    color: #fff;
    line-height: 1.1;
    max-width: 560px;
    margin-bottom: 1.25rem;
}

.hero-full__title em {
    font-style: italic;
    color: #d4a574;
}

/* Sous-titre */
.hero-full__subtitle {
    font-size: 1rem;
    color: rgba(255,255,255,.8);
    max-width: 440px;
    line-height: 1.65;
    margin-bottom: 2rem;
}

/* Boutons */
.hero-full__cta {
    display: flex;
    gap: .75rem;
    flex-wrap: wrap;
}

.hero-full__btn {
    display: inline-flex;
    align-items: center;
    padding: .7rem 1.6rem;
    border-radius: 999px;
    font-size: .9rem;
    font-weight: 600;
    transition: background .2s, color .2s, transform .15s;
    background: rgba(80,60,40,.75);
    backdrop-filter: blur(6px);
    color: #fff;
    border: 1px solid rgba(255,255,255,.2);
}

.hero-full__btn:hover {
    background: rgba(80,60,40,.95);
    color: #fff;
    transform: translateY(-1px);
}

.hero-full__btn--ghost {
    background: rgba(255,255,255,.12);
}

.hero-full__btn--ghost:hover {
    background: rgba(255,255,255,.22);
}

/* Carte avis (coin bas droite) */
.hero-full__review {
    position: absolute;
    bottom: 2.5rem;
    right: 2.5rem;
    background: rgba(255,255,255,.95);
    backdrop-filter: blur(8px);
    border-radius: 14px;
    padding: 1rem 1.25rem;
    max-width: 240px;
    box-shadow: 0 4px 24px rgba(0,0,0,.15);
}

.hero-full__stars {
    display: flex;
    gap: 3px;
    color: #c9855e;
    font-size: .85rem;
    margin-bottom: .5rem;
}

.hero-full__review-text {
    font-size: .78rem;
    color: #4a4440;
    line-height: 1.5;
    font-style: italic;
}

/* Image de fond via featured image de la page */
.hero-full__inner.has-thumb {
    background-image: var(--hero-bg);
}

/* Responsive */
@media ( max-width: 640px ) {
    .hero-full { padding: 1rem; }
    .hero-full__inner { padding: 2rem 1.5rem 2.5rem; min-height: 480px; }
    .hero-full__review { display: none; }
}

/* ---------------------------------------------------------
   9. SECTIONS
   --------------------------------------------------------- */
.section-intro {
    padding: 3.5rem 0;
    max-width: 760px;
    margin-inline: auto;
    font-size: 1.05rem;
    line-height: 1.8;
    color: #4a4440;
}

.section-portees {
    padding: 4rem 0;
    background: #fff;
}

.section-header {
    display: flex;
    align-items: baseline;
    justify-content: space-between;
    margin-bottom: 2rem;
    flex-wrap: wrap;
    gap: .5rem;
}

.section-title {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: 1.8rem;
    color: #3d2f1f;
}


.section-link {
    font-size: .9rem;
    font-weight: 600;
    color: #8b6f5e;
}
.section-link:hover { color: #5c4a35; }

.no-content {
    color: #9e9e9e;
    font-style: italic;
    padding: 2rem 0;
}

/* ---------------------------------------------------------
   10. CARDS GRID
   --------------------------------------------------------- */
.cards-grid {
    display: grid;
    grid-template-columns: repeat( auto-fill, minmax( 280px, 1fr ) );
    gap: 1.5rem;
}


/* ---------------------------------------------------------
   11. CARD PORTÉE / CHATON
   --------------------------------------------------------- */
.card {
    background: #fff;
    border-radius: 14px;
    box-shadow: 0 2px 12px rgba(0,0,0,.06);
    overflow: hidden;
    transition: box-shadow .25s, transform .25s;
}

.card:hover {
    box-shadow: 0 8px 28px rgba(0,0,0,.11);
    transform: translateY(-4px);
}

.card__link {
    display: block;
    color: inherit;
}

.card__image {
    position: relative;
    aspect-ratio: 3 / 2;
    overflow: hidden;
    background: #f0ebe5;
}

.card__image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform .4s ease;
}

.card:hover .card__image img { transform: scale(1.05); }

.card__placeholder {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 3rem;
    background: linear-gradient(135deg, #f5ede6, #e8dfd6);
}

.card__image .badge {
    position: absolute;
    top: .75rem;
    right: .75rem;
}

.card__body {
    padding: 1.2rem;
    display: flex;
    flex-direction: column;
    gap: .4rem;
}

.card__title {
    font-size: 1.05rem;
    font-weight: 700;
    color: #2d2a27;
}

.card__meta {
    font-size: .85rem;
    color: #7a746e;
    display: flex;
    align-items: center;
    gap: .3rem;
}

.card__icon { font-size: .9rem; }

.card__parents {
    display: flex;
    flex-wrap: wrap;
    gap: .5rem;
    font-size: .85rem;
    color: #7a746e;
}

.card__count {
    font-size: .85rem;
    color: #8b6f5e;
    font-weight: 500;
}

.card__tags {
    display: flex;
    flex-wrap: wrap;
    gap: .4rem;
    margin-top: .2rem;
}

.card__tag {
    display: inline-block;
    padding: .2rem .65rem;
    background: #f5ede6;
    color: #5c4a35;
    border-radius: 999px;
    font-size: .78rem;
    font-weight: 500;
}

.card__cta {
    display: inline-block;
    margin-top: .5rem;
    font-size: .85rem;
    font-weight: 600;
    color: #8b6f5e;
}

/* ---------------------------------------------------------
   12. ARCHIVE PORTÉES
   --------------------------------------------------------- */
/* Header archive portées */
.portee-archive-header {
    text-align: center;
    padding: 3.5rem 0 2.5rem;
    max-width: 640px;
    margin: 0 auto;
}

.portee-archive-header__title {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: clamp(2.2rem, 5vw, 3.2rem);
    font-weight: 800;
    color: #1a1410;
    line-height: 1.15;
    margin-bottom: 1rem;
}

.portee-archive-header__title em {
    font-style: italic;
    color: #8b6f5e;
}

.portee-archive-header__desc {
    font-size: .95rem;
    color: #7a746e;
    line-height: 1.7;
}

/* Filtres */
.filter-bar {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: .6rem;
    margin: 0 0 2.5rem;
}

.filter-btn {
    padding: .5rem 1.25rem;
    border-radius: 999px;
    border: 1.5px solid #e0d8d0;
    font-size: .85rem;
    font-weight: 500;
    color: #7a746e;
    background: #fff;
    transition: all .2s;
}

.filter-btn:hover { border-color: #b09080; color: #5c4a35; background: #faf6f3; }
.filter-btn--active { border-color: transparent; background: #5c4a35; color: #fff; }

/* Grille portées */
.portee-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    margin-bottom: 4rem;
}

@media (max-width: 1024px) { .portee-grid { grid-template-columns: repeat(3, 1fr); } }
@media (max-width: 700px)  { .portee-grid { grid-template-columns: repeat(2, 1fr); gap: 1rem; } }
@media (max-width: 460px)  { .portee-grid { grid-template-columns: 1fr; } }

/* Card portée */
.portee-card {
    background: #fff;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 2px 12px rgba(0,0,0,.06);
    display: flex;
    flex-direction: column;
    transition: transform .25s, box-shadow .25s;
}

.portee-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 10px 30px rgba(0,0,0,.11);
}

.portee-card__img-link { display: block; }

.portee-card__image {
    position: relative;
    aspect-ratio: 4 / 3;
    overflow: hidden;
    background: #f0ebe5;
}

.portee-card__image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform .4s ease;
}

.portee-card:hover .portee-card__image img { transform: scale(1.04); }

.portee-card__placeholder {
    width: 100%; height: 100%;
    display: flex; align-items: center; justify-content: center;
    font-size: 3rem;
    background: linear-gradient(135deg, #f5ede6, #e8dfd6);
}

.portee-card__badge {
    position: absolute;
    top: 10px; left: 10px;
    padding: .25rem .75rem;
    border-radius: 999px;
    font-size: .68rem;
    font-weight: 800;
    letter-spacing: .06em;
}

.portee-card__badge--disponible { background: rgba(232,240,216,.95); color: #3e5c1a; }
.portee-card__badge--reserve    { background: rgba(253,233,212,.95); color: #8a3e0b; }
.portee-card__badge--adopte     { background: rgba(236,236,236,.95); color: #5a5a5a; }

.portee-card__body {
    padding: 1rem 1.1rem 1.2rem;
    display: flex;
    flex-direction: column;
    gap: .5rem;
    flex: 1;
}

.portee-card__title-row {
    display: flex;
    align-items: baseline;
    gap: .6rem;
    flex-wrap: wrap;
}

.portee-card__title {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: 1.05rem;
    font-weight: 700;
    color: #1a1410;
    line-height: 1.3;
}

.portee-card__title a { color: inherit; }
.portee-card__title a:hover { color: #c9855e; }

.portee-card__count {
    font-size: .68rem;
    font-weight: 700;
    background: #f0ebe5;
    color: #8b6f5e;
    padding: .15rem .55rem;
    border-radius: 999px;
    white-space: nowrap;
}

.portee-card__date {
    font-size: .78rem;
    color: #9e8878;
}

.portee-card__parents {
    display: flex;
    flex-direction: column;
    gap: .45rem;
    margin-top: .15rem;
}

.portee-card__parent {
    display: flex;
    align-items: center;
    gap: .6rem;
}

.portee-card__parent-avatar {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    overflow: hidden;
    background: #f0ebe5;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: .9rem;
}

.portee-card__parent-avatar img {
    width: 100%; height: 100%; object-fit: cover;
}

.portee-card__parent-role {
    display: block;
    font-size: .62rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .07em;
    color: #b0a090;
}

.portee-card__parent-name {
    font-size: .82rem;
    font-weight: 600;
    color: #2d2a27;
}

.portee-card__cta {
    display: block;
    text-align: center;
    margin-top: auto;
    padding: .65rem 1rem;
    border-radius: 10px;
    font-size: .82rem;
    font-weight: 600;
    background: #f0ebe5;
    color: #5c4a35;
    transition: background .2s, color .2s;
}

.portee-card__cta:hover { background: #e0d4c8; }

.portee-card__cta--adopte {
    color: #9e9e9e;
    background: #f5f5f5;
}

.portee-card__cta--adopte:hover { background: #ebebeb; }

/* ---------------------------------------------------------
   13. SINGLE PORTÉE
   --------------------------------------------------------- */
.breadcrumb {
    display: flex;
    align-items: center;
    gap: .5rem;
    font-size: .85rem;
    color: #9e9e9e;
    padding: 1.5rem 0 .5rem;
}

.breadcrumb a { color: #8b6f5e; }
.breadcrumb a:hover { color: #5c4a35; }

/* --- Hero portée (deux colonnes) --- */
.portee-hero {
    display: grid;
    gap: 4rem;
    align-items: start;
    padding: 1.5rem 0 4rem;
}

@media (min-width: 768px) {
    .portee-hero {
        grid-template-columns: 3fr 2fr;
        gap: 4rem;
    }
}

/* Colonne gauche */
.portee-hero__content {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

/* Badge + date inline */
.portee-hero__eyebrow {
    display: flex;
    align-items: center;
    gap: .9rem;
    flex-wrap: wrap;
}

.portee-hero__badge {
    display: inline-block;
    padding: .3rem .85rem;
    border-radius: 999px;
    font-size: .72rem;
    font-weight: 700;
    letter-spacing: .08em;
    text-transform: uppercase;
}

.portee-hero__badge--disponible { background: #e8f0d8; color: #3e5c1a; }
.portee-hero__badge--reserve    { background: #fde9d4; color: #8a3e0b; }
.portee-hero__badge--adopte     { background: #ececec; color: #5a5a5a; }

.portee-hero__born {
    font-size: .9rem;
    color: #7a746e;
}

/* Grand titre */
.portee-hero__title {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: clamp(2rem, 4.5vw, 3rem);
    font-weight: 800;
    color: #1a1410;
    line-height: 1.15;
}

/* Description */
.portee-hero__desc {
    font-size: .975rem;
    color: #5a534d;
    line-height: 1.75;
    max-width: 52ch;
}

/* Chips d'info */
.portee-hero__chips {
    display: flex;
    flex-wrap: wrap;
    gap: .75rem;
    margin-top: .25rem;
}

.info-chip {
    display: flex;
    align-items: center;
    gap: .75rem;
    padding: .75rem 1.1rem;
    background: #fff;
    border: 1.5px solid #e8e4df;
    border-radius: 14px;
    min-width: 160px;
}
.info-chip_year {
    padding: 6px 20px;
}

.info-chip__icon {
    flex-shrink: 0;
    font-size: 1rem;
    color: #8b6f5e;
}

.info-chip__label {
    display: block;
    font-size: .72rem;
    font-weight: 600;
    letter-spacing: .05em;
    text-transform: uppercase;
    color: #9e9e9e;
    margin-bottom: .15rem;
}

.info-chip__value {
    font-size: .95rem;
    font-weight: 700;
    color: #2d2a27;
    display: block;
}

/* Colonne droite : image + blob décoratif */
.portee-hero__visual {
    position: relative;
    align-self: center;
}

/* ─── Carousel portée ────────────────────────────────── */
.portee-carousel {
    position: relative;
    z-index: 1;
    border-radius: 28px;
    overflow: hidden;
    box-shadow: 0 8px 40px rgba(0,0,0,.13);
    aspect-ratio: 4 / 5;
}

.portee-carousel__slide {
    position: absolute;
    inset: 0;
    opacity: 0;
    transition: opacity .9s ease;
    pointer-events: none;
}

.portee-carousel__slide.is-active {
    position: relative;
    opacity: 1;
}

.portee-carousel__slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

/* Cercle décoratif saumon */
.portee-hero__blob {
    position: absolute;
    bottom: -32px;
    left: -32px;
    width: 140px;
    height: 140px;
    border-radius: 50%;
    background: #f5c5a3;
    opacity: .55;
    z-index: 0;
}

/* Parents — single-portee (compact inline) */
.portee-parents {
    display: flex;
    flex-wrap: wrap;
    gap: .75rem;
    margin-bottom: 2rem;
}

.parent-card {
    display: flex;
    align-items: center;
    gap: .75rem;
    background: #faf5ee;
    border: 1px solid #e8e4df;
    border-radius: 10px;
    padding: .75rem 1rem;
}

.parent-card img {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    object-fit: cover;
}

.parent-card__avatar {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: #f5ede6;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.4rem;
}

.parent-card__role {
    font-size: .75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: .05em;
    color: #9e9e9e;
    display: block;
}

.parent-card__name {
    font-weight: 600;
    color: #2d2a27;
    font-size: .95rem;
}

/* Parents — single-chaton (portrait visuel) */
.chaton-parents {
    margin: 3rem 0;
    text-align: center;
}

.chaton-parents__title {
    font-size: 1.1rem;
    font-weight: 700;
    color: #2d2a27;
    text-transform: uppercase;
    letter-spacing: .08em;
    margin-bottom: 1.75rem;
    position: relative;
    display: inline-block;
}

.chaton-parents__title::after {
    content: '';
    display: block;
    width: 32px;
    height: 2px;
    background: #c9855e;
    margin: .4rem auto 0;
    border-radius: 2px;
}

.chaton-parents__grid {
    display: flex;
    justify-content: center;
    gap: 3rem;
    flex-wrap: wrap;
}

.parent-portrait {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: .5rem;
    width: 160px;
}

.parent-portrait__photo-link {
    position: relative;
    display: block;
    text-decoration: none;
}

.parent-portrait__photo {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    overflow: hidden;
    background: #f5ede6;
    box-shadow: 0 4px 16px rgba(0,0,0,.10);
    transition: transform .2s ease, box-shadow .2s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.parent-portrait__photo-link:hover .parent-portrait__photo {
    transform: translateY(-3px);
    box-shadow: 0 8px 24px rgba(0,0,0,.14);
}

.parent-portrait__photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.parent-portrait__placeholder {
    font-size: 2.5rem;
}

.parent-portrait__gender {
    position: absolute;
    bottom: 4px;
    right: 4px;
    width: 26px;
    height: 26px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: .85rem;
    font-weight: 700;
    border: 2px solid #fff;
    line-height: 1;
}

.parent-portrait__gender--mere {
    background: #f9dce5;
    color: #c2456a;
}

.parent-portrait__gender--pere {
    background: #dce8f9;
    color: #3a6ea8;
}

.parent-portrait__role {
    font-size: .7rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .08em;
    color: #b0a090;
    margin: .25rem 0 0;
}

.parent-portrait__name {
    font-weight: 700;
    color: #2d2a27;
    font-size: 1rem;
    margin: 0;
}

.parent-portrait__link {
    display: inline-flex;
    align-items: center;
    gap: .3rem;
    font-size: .8rem;
    font-weight: 600;
    color: #c9855e;
    text-decoration: none;
    margin-top: .25rem;
    transition: gap .15s ease;
}

.parent-portrait__link:hover {
    gap: .5rem;
}

/* Parents compacts (single-portee) */
.chaton-parents--sm {
    margin: 1.5rem 0 2rem;
}

.chaton-parents--sm .chaton-parents__title {
    font-size: .9rem;
    margin-bottom: 1.25rem;
}

.chaton-parents--sm .chaton-parents__grid {
    gap: 2rem;
}

.chaton-parents--sm .parent-portrait {
    width: 110px;
}

.chaton-parents--sm .parent-portrait__photo {
    width: 120px;
    height: 120px;
}

.chaton-parents--sm .parent-portrait__gender {
    width: 20px;
    height: 20px;
    font-size: .7rem;
}

.chaton-parents--sm .parent-portrait__name {
    font-size: .875rem;
}

/* Santé & Socialisation */
.chaton-details {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem 4rem;
    margin: 3rem 0;
    padding: 2.5rem;
    border-radius: 16px;
}

@media (max-width: 640px) {
    .chaton-details { grid-template-columns: 1fr; gap: 2rem; padding: 1.5rem; }
}

.chaton-details__title {
    font-size: 1.25rem;
    font-weight: 700;
    color: #2d2a27;
    margin-bottom: .75rem;
}

.chaton-details__intro {
    font-size: .9rem;
    color: #6b5c4e;
    line-height: 1.6;
    margin-bottom: 1.25rem;
}

.chaton-details__list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: .85rem;
}

.chaton-details__item {
    display: flex;
    align-items: flex-start;
    gap: .65rem;
    font-size: .9rem;
    color: #3a3028;
    line-height: 1.5;
}

.chaton-details__icon {
    flex-shrink: 0;
    width: 18px;
    height: 18px;
    margin-top: .1rem;
    color: #c9855e;
}

/* ── Single chat (parent) ─────────────────────────────── */
.chat-single {
    display: grid;
    grid-template-columns: 2fr 3fr;
    gap: 4rem;
    align-items: start;
    margin: 1.5rem 0 3rem;
}

@media (max-width: 860px) {
    .chat-single { grid-template-columns: 1fr; gap: 2rem; }
}

.chat-single__visual {
    position: relative;
}

.chat-single__img-wrap {
    border-radius: 20px;
    overflow: hidden;
    aspect-ratio: 4 / 5;
    background: #f5ede6;
}

.chat-single__img-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.chat-single__placeholder {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 5rem;
}


.chat-single__content {
    padding-top: 1rem;
}

.chat-single__name {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: clamp(2.2rem, 4vw, 3rem);
    font-weight: 800;
    color: #1a1410;
    line-height: 1;
    margin-bottom: 1.5rem;
}


.chat-single__identification {
    display: flex;
    flex-direction: column;
    gap: 0;
    border: 1px solid #e8e4df;
    border-radius: 12px;
    overflow: hidden;
}

.chat-id {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 1rem;
    padding: .75rem 1.1rem;
    border-bottom: 1px solid #f0ece7;
    background-color: #fdfcfc;
}

.chat-id:last-child {
    border-bottom: none;
}


.chat-id__label {
    font-size: .8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: .05em;
    color: #b0a090;
    white-space: nowrap;
}

.chat-id__value {
    font-size: .9rem;
    font-weight: 600;
    color: #2d2a27;
    font-family: 'Courier New', monospace;
    text-align: right;
}

.back-link {
    display: inline-block;
    margin: 2rem 0;
    font-size: .9rem;
    color: #8b6f5e;
    font-weight: 500;
}
.back-link:hover { color: #5c4a35; }

.back-btn {
    display: inline-block;
    margin: 1.5rem 0 0;
    font-size: .875rem;
    color: #9e9490;
    font-weight: 500;
    letter-spacing: .01em;
    transition: color .2s;
}
.back-btn:hover { color: #5c4a35; }

/* ---------------------------------------------------------
   14. PAGES STATIQUES
   --------------------------------------------------------- */
.container--narrow { max-width: 760px; }

.page-header {
    padding: 2.5rem 0 1.5rem;
    border-bottom: 1px solid #e8e4df;
    margin-bottom: 2rem;
}

.page-header h1 {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: 2.2rem;
    color: #3d2f1f;
}

.page-content {
    line-height: 1.8;
    color: #4a4440;
    font-size: 1rem;
}

.page-content h2 { font-size: 1.4rem; margin: 2rem 0 .75rem; color: #3d2f1f; }
.page-content p  { margin-bottom: 1rem; }

/* ---------------------------------------------------------
   15. MEMBRES DE LA PORTÉE
   --------------------------------------------------------- */

/* En-tête de section */
.portee-membres {
    padding: 4rem 0 2rem;
}

.portee-membres__header {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 1rem;
    flex-wrap: wrap;
    margin-bottom: 2.5rem;
}

.portee-membres__title {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: clamp(1.6rem, 3.5vw, 2.2rem);
    font-weight: 800;
    color: #1a1410;
    margin-bottom: .4rem;
}

.portee-membres__subtitle {
    font-size: .9rem;
    color: #7a746e;
}

.portee-membres__count {
    font-size: .75rem;
    font-weight: 700;
    letter-spacing: .1em;
    text-transform: uppercase;
    color: #5a534d;
    white-space: nowrap;
    padding-top: .35rem;
}

/* Grille 4 colonnes */
.membres-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.25rem;
}

@media (max-width: 900px) { .membres-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 560px) { .membres-grid { grid-template-columns: 1fr; } }

/* --- Carte membre de portée --- */
.membre-card {
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 2px 12px rgba(0,0,0,.07);
    transition: transform .25s ease, box-shadow .25s ease;
    background: #fff;
}

.membre-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 28px rgba(0,0,0,.12);
}

.membre-card__inner {
    display: block;
    text-decoration: none;
}

.membre-card__photo {
    position: relative;
    aspect-ratio: 4 / 3;
    background: #f0ebe5;
    overflow: hidden;
}

.membre-card__photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform .4s ease;
}

.membre-card:hover .membre-card__photo img { transform: scale(1.04); }

.membre-card__placeholder {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.5rem;
    background: linear-gradient(135deg, #f5ede6, #e8dfd6);
}

/* Badge disponibilité */
.membre-card__dispo-badge {
    position: absolute;
    top: 10px;
    left: 10px;
    padding: .25rem .7rem;
    border-radius: 999px;
    font-size: .7rem;
    font-weight: 700;
    letter-spacing: .03em;
}

.membre-card__dispo-badge--disponible { background: #e8f0d8; color: #3e5c1a; }
.membre-card__dispo-badge--reserve    { background: #fde9d4; color: #8a3e0b; }
.membre-card__dispo-badge--adopte     { background: #ececec; color: #5a5a5a; }

/* Badge genre (dans la photo) */
.membre-card__gender {
    position: absolute;
    bottom: 10px;
    right: 10px;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.membre-card__gender--male    { background: #dce8f9; color: #3a6ea8; }
.membre-card__gender--femelle { background: #f9dce5; color: #c2456a; }

.membre-card__gender svg {
    width: 15px;
    height: 15px;
}

.membre-card__body {
    padding: .75rem 1rem .9rem;
    display: flex;
    flex-direction: column;
    gap: .15rem;
}

.membre-card__name {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: .95rem;
    font-weight: 700;
    color: #1a1410;
}

.membre-card__couleur {
    font-size: .75rem;
    color: #9e8878;
}


/* ---------------------------------------------------------
   16. SINGLE CHATON
   --------------------------------------------------------- */
.chaton-single {
    display: grid;
    grid-template-columns: 2fr 3fr;
    gap: 4rem;
    align-items: start;
    padding: 1.5rem 0 4rem;
}

/* Photo */
.chaton-single__visual {
    position: relative;
}

.chaton-single__img-wrap {
    border-radius: 28px;
    overflow: hidden;
    box-shadow: 0 8px 40px rgba(0,0,0,.13);
}

.chaton-single__img-wrap img {
    width: 100%;
    aspect-ratio: 4 / 5;
    object-fit: cover;
    display: block;
}

.chaton-single__placeholder {
    width: 100%;
    aspect-ratio: 4 / 5;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 5rem;
    background: linear-gradient(135deg, #f5ede6, #e8dfd6);
}

/* Badge genre (chaton + chat) */
.gender-badge {
    position: absolute;
    bottom: -18px;
    right: -18px;
    width: 56px;
    height: 56px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 2px 8px rgba(0,0,0,.10);
}

.gender-badge--male {
    background: #dce8f9;
    color: #3a6ea8;
}

.gender-badge--femelle {
    background: #f9dce5;
    color: #c2456a;
}

.gender-badge i {
    font-size: 1.1rem;
}

/* Contenu */
.chaton-single__content {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.chaton-single__badge {
    display: inline-block;
    padding: .35rem 1rem;
    border-radius: 999px;
    font-size: .72rem;
    font-weight: 700;
    letter-spacing: .08em;
    text-transform: uppercase;
    align-self: flex-start;
}

.chaton-single__badge--disponible { background: #e8f0d8; color: #3e5c1a; }
.chaton-single__badge--reserve    { background: #fde9d4; color: #8a3e0b; }
.chaton-single__badge--adopte     { background: #ececec; color: #5a5a5a; }

.chaton-single__name {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: clamp(2.5rem, 5vw, 3.5rem);
    font-weight: 800;
    color: #1a1410;
    line-height: 1;
    margin-top: -.5rem;
    margin-bottom: 0;
}

.chaton-single__num-cdf {
    font-size: .8rem;
    font-style: italic;
    color: #b0a090;
    margin: 0 0 .75rem;
    margin-top: 12px;
}

.chaton-single__desc {
    font-size: 1rem;
    font-style: italic;
    color: #5a534d;
    line-height: 1.75;
    border: none;
    padding: 0;
    margin: 0;
    margin-bottom: 1.5rem;
}

/* Grille 2×2 d'infos */
.chaton-single__infos {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: .75rem;
    margin-bottom: 1.5rem;
}

.chaton-info {
    background: #fdfcfc;
    border-radius: 12px;
    padding: .9rem 1.1rem;
    display: flex;
    flex-direction: column;
    gap: .25rem;
}

.chaton-info__label {
    font-size: .7rem;
    font-weight: 700;
    letter-spacing: .08em;
    text-transform: uppercase;
    color: #9e9e9e;
}

.chaton-info__value {
    font-size: 1rem;
    font-weight: 700;
    color: #1a1410;
}

.chaton-info__value--disponible { color: #3e5c1a; }
.chaton-info__value--reserve    { color: #8a3e0b; }
.chaton-info__value--adopte     { color: #5a5a5a; }

.chaton-info__value--genre {
    display: inline-flex;
    align-items: center;
    gap: .35rem;
}

.chaton-info__value--male    { color: #1a1410; }
.chaton-info__value--femelle { color: #1a1410; }

.chaton-info__value--male    svg { color: #3a6ea8; }
.chaton-info__value--femelle svg { color: #b85c8a; }

/* Actions wrapper */
.chaton-single__actions {
    margin-top: .75rem;
}

/* Bouton CTA — taille auto, pas pleine largeur */
.chaton-single__cta {
    display: inline-flex;
    align-items: center;
    gap: .4rem;
    padding: .7rem 1.6rem;
    font-size: .9rem;
    font-weight: 600;
    border-radius: 999px;
    transition: background .2s, color .2s, transform .15s;
    white-space: nowrap;
}

/* Disponible → brun foncé, CTA principal */
.chaton-single__cta.cta--disponible {
    background: #5c4a35;
    color: #fff;
}
.chaton-single__cta.cta--disponible:hover {
    background: #3d2f1f;
    color: #fff;
    transform: translateY(-2px);
}

/* Réservé → outline sobre, invitation à voir la portée */
.chaton-single__cta.cta--reserve {
    background: #f5f0e8;
    color: #5c4a35;
    border: 1.5px solid #c4b09a;
}
.chaton-single__cta.cta--reserve:hover {
    background: #ede8e3;
    border-color: #8b6f5e;
    transform: translateY(-1px);
}

/* Adopté → gris neutre, secondaire */
.chaton-single__cta.cta--adopte {
    background: #f0ede9;
    color: #7a746e;
    border: 1.5px solid #ddd6ce;
}
.chaton-single__cta.cta--adopte:hover {
    background: #e8e4df;
    color: #5c4a35;
    transform: translateY(-1px);
}

/* Responsive */
@media (max-width: 860px) {
    .chaton-single {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }

    .chaton-single__img-wrap img,
    .chaton-single__placeholder,
    .chat-single__img-wrap { aspect-ratio: 4 / 3; }

    .gender-badge { width: 48px; height: 48px; bottom: -14px; right: -14px; }
    .gender-badge i { font-size: 1rem; }
}

@media (max-width: 480px) {
    .chaton-single__infos { grid-template-columns: 1fr; }
}

/* ---------------------------------------------------------
   17. GALERIE CHATON + LIGHTBOX
   --------------------------------------------------------- */

/* Galerie */
.chaton-galerie {
    padding: 3rem 0 1rem;
}

.chaton-galerie__grid {
    display: grid;
    grid-template-columns: repeat( auto-fill, minmax( 160px, 1fr ) );
    gap: .75rem;
}

.chaton-galerie__item {
    display: block;
    padding: 0;
    border: none;
    background: none;
    cursor: pointer;
    border-radius: 12px;
    overflow: hidden;
    aspect-ratio: 1;
    position: relative;
}

.chaton-galerie__item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform .35s ease, opacity .2s;
    display: block;
}

.chaton-galerie__item::after {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,0);
    transition: background .2s;
    border-radius: 12px;
}

.chaton-galerie__item:hover::after  { background: rgba(0,0,0,.15); }
.chaton-galerie__item:hover img     { transform: scale(1.06); }
.chaton-galerie__item:focus-visible { outline: 3px solid #5c4a35; outline-offset: 2px; }

/* Lightbox */
.lightbox {
    position: fixed;
    inset: 0;
    z-index: 1000;
    background: rgba(10,8,6,.9);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 1rem;
}

.lightbox[hidden] { display: none; }

.lightbox__wrap {
    position: relative;
    max-width: min(90vw, 1000px);
    max-height: 85vh;
    display: flex;
    align-items: center;
    justify-content: center;
}

.lightbox__img {
    max-width: 100%;
    max-height: 85vh;
    object-fit: contain;
    border-radius: 12px;
    display: block;
}

/* Bouton fermer */
.lightbox__close {
    position: absolute;
    top: 1rem;
    right: 1rem;
    width: 42px;
    height: 42px;
    border-radius: 50%;
    border: none;
    background: rgba(255,255,255,.12);
    color: #fff;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background .2s;
    z-index: 2;
}

.lightbox__close i { font-size: 1.1rem; }
.lightbox__close:hover { background: rgba(255,255,255,.25); }
.lightbox__close:focus-visible { outline: 2px solid #fff; outline-offset: 2px; }

/* Boutons prev / next */
.lightbox__nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 48px;
    height: 48px;
    border-radius: 50%;
    border: none;
    background: rgba(255,255,255,.12);
    color: #fff;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background .2s;
    z-index: 2;
}

.lightbox__nav i { font-size: 1.2rem; }
.lightbox__nav--prev { left: 1rem; }
.lightbox__nav--next { right: 1rem; }
.lightbox__nav:hover { background: rgba(255,255,255,.25); }
.lightbox__nav:focus-visible { outline: 2px solid #fff; outline-offset: 2px; }

/* Compteur */
.lightbox__counter {
    position: absolute;
    bottom: 1rem;
    left: 50%;
    transform: translateX(-50%);
    font-size: .8rem;
    color: rgba(255,255,255,.6);
    letter-spacing: .05em;
}

@media (max-width: 560px) {
    .lightbox__nav--prev { left: .25rem; }
    .lightbox__nav--next { right: .25rem; }
    .chaton-galerie__grid { grid-template-columns: repeat( auto-fill, minmax( 110px, 1fr ) ); }
}

/* ---------------------------------------------------------
   18. BENTO – Section valeurs accueil
   --------------------------------------------------------- */
.section-spacing { padding-block: clamp(2rem, 6vw, 5rem); }

.bento__grid {
    display: flex;
    flex-wrap: wrap;
    gap: clamp(.75rem, 2vw, 1.25rem);
}

.bento__grid > * {
    width: calc(33.333% - clamp(.5rem, 1.35vw, .84rem));
    box-sizing: border-box;
}

/* Image commune */
.bento__image {
    border-radius: clamp(1rem, 2vw, 1.5rem);
    background-color: #d9cfc4;
    background-image: var(--bento-img);
    background-size: cover;
    background-position: center;
    min-height: clamp(180px, 25vw, 260px);
}

/* Carte commune */
.bento__card {
    border-radius: clamp(1rem, 2vw, 1.5rem);
    padding: clamp(1.1rem, 3vw, 2rem) clamp(1rem, 2.5vw, 1.75rem);
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: .9rem;
}

.bento__header {
    display: flex;
    align-items: center;
    gap: .75rem;
}

.bento__icon {
    flex-shrink: 0;
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
}

.bento__title {
    font-family: 'Playfair Display', serif;
    font-size: clamp(.95rem, 2vw, 1.25rem);
    font-weight: 700;
    line-height: 1.25;
}

.bento__desc {
    font-size: clamp(.8rem, 1.5vw, .9rem);
    line-height: 1.65;
}

/* Variantes de couleur */
.bento__card--white {
    background: #fff;
    color: #2d2a27;
}
.bento__card--white .bento__icon { color: #7a5c3a; }

.bento__card--dark {
    background: #5c4a32;
    color: #fff;
}
.bento__card--dark .bento__icon { color: #d4a574; }
.bento__card--dark .bento__title { color: #fff; }
.bento__card--dark .bento__desc  { color: rgba(255,255,255,.8); }

.bento__card--beige {
    background: #f0e8dc;
    color: #2d2a27;
}
.bento__card--beige .bento__icon { color: #7a5c3a; }

/* Tablette : 2 par ligne */
@media (max-width: 900px) {
    .bento__grid > * {
        width: calc(50% - clamp(.375rem, 1vw, .625rem));
    }
}

/* Mobile : 1 par ligne */
@media (max-width: 640px) {
    .bento__grid > * {
        width: 100%;
    }
    .bento__image {
        min-height: clamp(160px, 45vw, 220px);
    }
}

/* ---------------------------------------------------------
   19. STATS & CERTIFICATIONS
   --------------------------------------------------------- */
.stats-section {
    background: #ede5d8;
    padding-block: 3rem;
}

.stats__row {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0;
}

.stats__item {
    flex: 1;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: baseline;
    gap: 0 .2rem;
}

.stats__divider {
    width: 1px;
    height: 64px;
    background: rgba(92,74,50,.2);
    flex-shrink: 0;
}

.stats__number {
    font-family: 'Playfair Display', serif;
    font-size: clamp(3rem, 6vw, 5rem);
    font-weight: 700;
    color: #5c4a32;
    line-height: 1;
}

.stats__unit {
    font-family: 'Playfair Display', serif;
    font-size: clamp(1.5rem, 3vw, 2.5rem);
    font-weight: 700;
    color: #5c4a32;
    line-height: 1;
    margin-top: -.5rem;
    align-self: flex-start;
    margin-left: .15rem;
}

.stats__label {
    width: 100%;
    text-align: center;
    font-size: .85rem;
    color: #8a7260;
    letter-spacing: .04em;
    text-transform: uppercase;
    margin-top: .5rem;
}

/* Badges */
.stats__badges {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: .75rem;
    padding-top: 3rem;
}

.stats__badge {
    display: inline-flex;
    align-items: center;
    gap: .5rem;
    padding: .5rem 1.25rem;
    border: 1px solid rgba(92,74,50,.2);
    border-radius: 99px;
    font-size: .85rem;
    color: #5c4a32;
    background: rgba(255,255,255,.5);
}

.stats__badge i { color: #7a5c3a; flex-shrink: 0; font-size: .9rem; }

@media (max-width: 560px) {
    .stats__row { flex-direction: column; gap: 2rem; }
    .stats__divider { width: 40px; height: 1px; }
}

/* ---------------------------------------------------------
   20. PAGE CONTACT
   --------------------------------------------------------- */
.contact-hero {
    padding-top: 1rem;
    padding-bottom: 2.5rem;
}

.contact-hero__title {
    font-family: 'Playfair Display', serif;
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 700;
    color: #2d2a27;
    margin-bottom: .75rem;
}

.contact-hero__sub {
    font-size: 1.05rem;
    color: #7a746e;
    max-width: 520px;
}

.contact-body {
    display: grid;
    grid-template-columns: 1fr 1.6fr;
    gap: 3rem;
    align-items: start;
    padding-bottom: 5rem;
}

/* Infos */
.contact-info {
    display: flex;
    flex-direction: column;
    gap: 1.75rem;
}

.contact-block {
    display: flex;
    gap: 1rem;
    align-items: flex-start;
}

.contact-block__icon {
    flex-shrink: 0;
    width: 42px;
    height: 42px;
    background: #fff;
    border: 1px solid #e2d9ce;
    border-radius: .75rem;
    display: flex;
    align-items: center;
    font-size: 1.1rem;
    justify-content: center;
    color: #7a5c3a;
}

.contact-block__label {
    font-size: .75rem;
    text-transform: uppercase;
    letter-spacing: .08em;
    color: #a09990;
}

.contact-block__value {
    font-size: 1rem;
    color: #2d2a27;
    line-height: 1.5;
}

.contact-block__link {
    color: #7a5c3a;
    text-decoration: none;
    transition: color .2s;
}

.contact-block__link:hover { color: #5c4a32; }

/* Carte */
.contact-map {
    border-radius: 1.25rem;
    overflow: hidden;
    box-shadow: 0 2px 16px rgba(0,0,0,.08);
    background: #e8ddd0;
    aspect-ratio: 4/3;
}

.contact-map__iframe {
    width: 100%;
    height: 100%;
    border: 0;
    display: block;
}

.contact-map__placeholder {
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    color: #8a7260;
    text-align: center;
    font-size: .9rem;
    padding: 2rem;
}

@media (max-width: 768px) {
    .contact-body {
        grid-template-columns: 1fr;
    }
    .contact-map {
        aspect-ratio: 16/9;
    }
}

/* ---------------------------------------------------------
   21. PAGE ALLERGIE
   --------------------------------------------------------- */

/* Hero */
.allergy-hero {
    padding: 1.5rem 1.5rem 0;
}

.allergy-hero__inner {
    position: relative;
    border-radius: 22px;
    overflow: hidden;
    min-height: 540px;
    background-color: #3a2e22;
    background-image: var(--allergy-hero-bg);
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: flex-end;
    padding: 3rem 3rem 3.5rem;
}

.allergy-hero__inner::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(20,14,8,.75) 0%, rgba(20,14,8,.2) 60%, transparent 100%);
    border-radius: inherit;
}

.allergy-hero__content {
    position: relative;
    z-index: 1;
    max-width: 520px;
}

.allergy-hero__title {
    font-family: 'Playfair Display', serif;
    font-size: clamp(1.75rem, 4vw, 2.75rem);
    font-weight: 700;
    color: #fff;
    line-height: 1.2;
    margin-bottom: .75rem;
}

.allergy-hero__sub {
    font-size: .95rem;
    color: rgba(255,255,255,.85);
    line-height: 1.6;
}

/* Section comprendre */
.allergy-section {
    padding-top: 4rem;
    padding-bottom: 1rem;
    text-align: center;
}

.allergy-eyebrow {
    font-size: .72rem;
    text-transform: uppercase;
    letter-spacing: .12em;
    color: #a09990;
    margin-bottom: .75rem;
}

.allergy-title {
    font-family: 'Playfair Display', serif;
    font-size: clamp(1.6rem, 3vw, 2.25rem);
    font-weight: 700;
    color: #2d2a27;
    margin-bottom: 2.5rem;
}

/* Cards */
.allergy-cards {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.25rem;
    text-align: left;
}

.allergy-card {
    border-radius: 1.25rem;
    padding: 2rem 1.75rem;
    display: flex;
    flex-direction: column;
    gap: .9rem;
}

.allergy-card--white { background: #fff; }
.allergy-card--warm  { background: #f0e8dc; }

.allergy-card__icon {
    width: 52px;
    height: 52px;
    border-radius: 50%;
    background: #e8ddd0;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #7a5c3a;
    font-size: 1.25rem;
    flex-shrink: 0;
}

.allergy-card--warm .allergy-card__icon {
    background: #ddd0c0;
}

.allergy-card__title {
    font-family: 'Playfair Display', serif;
    font-size: 1.1rem;
    font-weight: 700;
    color: #2d2a27;
    line-height: 1.3;
}

.allergy-card__desc {
    font-size: .9rem;
    color: #5a5450;
    line-height: 1.65;
}

/* Section photo + texte */
.allergy-split-wrap {
    padding-block: 1rem 2rem;
}

.allergy-split {
    display: grid;
    grid-template-columns: 1fr 1fr;
    min-height: 400px;
    border-radius: 1.5rem;
    overflow: hidden;
}

.allergy-split__img {
    background-color: #c4b5a0;
    background-image: var(--split-bg);
    background-size: cover;
    background-position: center;
}

.allergy-split__text {
    background: #3d2f1f;
    padding: 2.5rem 2.75rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 1.1rem;
}

.allergy-split__text .allergy-eyebrow { color: rgba(212,165,116,.7); }

.allergy-split__title {
    font-family: 'Playfair Display', serif;
    font-size: clamp(1.6rem, 2.5vw, 2.25rem);
    font-weight: 700;
    color: #fff;
    line-height: 1.25;
}

.allergy-split__desc {
    font-size: .9rem;
    color: rgba(255,255,255,.75);
    line-height: 1.75;
}

.allergy-split__stats {
    display: flex;
    gap: 2rem;
    padding-top: 1rem;
    border-top: 1px solid rgba(255,255,255,.12);
    margin-top: .5rem;
}

.allergy-split__stat {
    display: flex;
    flex-direction: column;
    gap: .2rem;
}

.allergy-split__stat-num {
    font-family: 'Playfair Display', serif;
    font-size: 1.6rem;
    font-weight: 700;
    color: #d4a574;
}

.allergy-split__stat-label {
    font-size: .75rem;
    color: rgba(255,255,255,.5);
    line-height: 1.4;
    max-width: 120px;
}

@media (max-width: 768px) {
    .allergy-split { grid-template-columns: 1fr; }
    .allergy-split__img { min-height: 220px; }
    .allergy-split__text { padding: 2rem 1.75rem; }
}

/* CTA final */
.allergy-cta {
    background: #ede5d8;
    padding-block: 5rem;
    text-align: center;
    margin-top: 2rem;
}

.allergy-cta__title {
    font-family: 'Playfair Display', serif;
    font-size: clamp(1.75rem, 3.5vw, 2.5rem);
    font-weight: 700;
    color: #2d2a27;
    margin-bottom: .75rem;
}

.allergy-cta__sub {
    font-size: 1rem;
    color: #7a746e;
    max-width: 480px;
    margin-inline: auto;
    margin-bottom: 2rem;
    line-height: 1.6;
}

.allergy-cta__btns {
    display: flex;
    flex-wrap: wrap;
    gap: .75rem;
    justify-content: center;
}

.allergy-cta__btn {
    display: inline-flex;
    align-items: center;
    padding: .75rem 1.75rem;
    border-radius: 99px;
    font-size: .95rem;
    font-weight: 500;
    text-decoration: none;
    transition: opacity .2s, transform .2s;
}

.allergy-cta__btn:hover { opacity: .85; transform: translateY(-1px); }

.allergy-cta__btn--dark {
    background: #3d2f1f;
    color: #fff;
}

.allergy-cta__btn--outline {
    background: transparent;
    border: 1.5px solid #3d2f1f;
    color: #3d2f1f;
}

/* Responsive */
@media (max-width: 700px) {
    .allergy-cards { grid-template-columns: 1fr; }
    .feld1__inner  { grid-template-columns: 1fr; padding: 1.75rem; }
    .feld1__visual { display: none; }
    .allergy-hero__inner { min-height: 480px; padding: 2rem 1.5rem 2.5rem; }
}

/* ---------------------------------------------------------
   23. PAGE CHATS (PARENTS)
   --------------------------------------------------------- */

/* Hero */
.chats-hero {
    padding-top: 1rem;
    padding-bottom: 3rem;
}

.chats-hero__title {
    font-family: 'Playfair Display', serif;
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 700;
    color: #2d2a27;
    margin-bottom: .75rem;
}

.chats-hero__sub {
    font-size: 1.05rem;
    color: #7a746e;
    max-width: 560px;
}

/* Section par chat */
.chat-profile {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    padding-bottom: 4rem;
}

.chat-profile--reverse {
    direction: rtl;
}

.chat-profile--reverse > * {
    direction: ltr;
}

/* Photo */
.chat-profile__visual {
    position: relative;
}

.chat-profile__img-link {
    display: block;
    border-radius: 1.5rem;
    overflow: hidden;
    aspect-ratio: 4/5;
}

.chat-profile__img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform .45s ease;
}

.chat-profile__img-link:hover .chat-profile__img {
    transform: scale(1.03);
}

.chat-profile__placeholder {
    width: 100%;
    aspect-ratio: 4/5;
    background: #ede0cf;
    border-radius: 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 3rem;
}

/* Contenu */
.chat-profile__content {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
}

.chat-profile__name {
    font-family: 'Playfair Display', serif;
    font-size: clamp(1.75rem, 3vw, 2.5rem);
    font-weight: 700;
    color: #2d2a27;
    line-height: 1.15;
}

/* Chips */
.chat-profile__chips {
    display: flex;
    flex-wrap: wrap;
    gap: .5rem;
}

.chat-chip {
    display: inline-flex;
    align-items: center;
    gap: .35rem;
    background: #f0e8dc;
    color: #5c4a35;
    font-size: .82rem;
    font-weight: 500;
    padding: .3rem .8rem;
    border-radius: 99px;
}

/* Description */
.chat-profile__desc {
    font-size: 1rem;
    color: #5a5450;
    line-height: 1.75;
}

/* Identification */
.chat-profile__ids {
    display: flex;
    flex-direction: column;
    gap: .4rem;
    padding: 1rem 1.25rem;
    background: #faf5ee;
    border-radius: .9rem;
    border: 1px solid #e8ddd1;
}

.chat-id-row {
    display: flex;
    justify-content: space-between;
    align-items: baseline;
    gap: 1rem;
    font-size: .85rem;
}

.chat-id-row__label {
    color: #a09990;
    flex-shrink: 0;
}

.chat-id-row__value {
    color: #3d3630;
    font-weight: 500;
    font-variant-numeric: tabular-nums;
    word-break: break-all;
    text-align: right;
}

/* Lien fiche */
.chat-profile__link {
    display: inline-flex;
    align-items: center;
    gap: .5rem;
    color: #7a5c3a;
    font-size: .95rem;
    font-weight: 600;
    text-decoration: none;
    transition: gap .2s, color .2s;
    width: fit-content;
}

.chat-profile__link:hover {
    color: #5c4a32;
    gap: .75rem;
}

/* Séparateur */
.chat-divider {
    border: none;
    border-top: 1px solid #e8ddd1;
    margin-bottom: 4rem;
}

.chats-empty {
    font-size: 1rem;
    color: #a09990;
    font-style: italic;
    padding-bottom: 3rem;
}

@media (max-width: 900px) {
    .chat-profile {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    .chat-profile--reverse { direction: ltr; }
    .chat-profile__img-link { aspect-ratio: 3/2; }
    .chat-profile__placeholder { aspect-ratio: 3/2; }
}

/* ---------------------------------------------------------
   24. PAGE LIVRE D'OR
   --------------------------------------------------------- */

/* Hero */
.ldor-hero {
    padding-top: 1rem;
    padding-bottom: 2.5rem;
}

.ldor-hero__title {
    font-family: 'Playfair Display', serif;
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 700;
    color: #2d2a27;
    margin-bottom: .75rem;
}

.ldor-hero__sub {
    font-size: 1.05rem;
    color: #7a746e;
    max-width: 520px;
}

/* Grille de témoignages */
.ldor-list {
    padding-bottom: 3rem;
}

.ldor-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 1.5rem;
}

.ldor-empty {
    font-size: 1rem;
    color: #a09990;
    font-style: italic;
}

/* Carte témoignage */
.ldor-card {
    background: #fff;
    border-radius: 1.25rem;
    padding: 1.75rem;
    display: flex;
    flex-direction: column;
    gap: 1rem;
    box-shadow: 0 2px 12px rgba(0,0,0,.06);
}

.ldor-card__quote {
    color: #d4a574;
    font-size: 1.5rem;
    line-height: 1;
}

.ldor-card__message {
    font-size: .95rem;
    color: #3d3630;
    line-height: 1.7;
    flex: 1;
}

.ldor-card__footer {
    display: flex;
    align-items: center;
    gap: .9rem;
    padding-top: 1rem;
    border-top: 1px solid #f0e8dc;
    margin-top: auto;
}

.ldor-card__avatar {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: #ede0cf;
    color: #7a5c3a;
    font-weight: 700;
    font-size: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.ldor-card__name {
    font-weight: 600;
    font-size: .95rem;
    color: #2d2a27;
}

.ldor-card__date {
    font-size: .8rem;
    color: #a09990;
    display: block;
    margin-top: .1rem;
}

/* Section formulaire */
.ldor-form-section {
    padding-bottom: 4rem;
}

.ldor-form-wrap {
    background: #f5f0e8;
    border-radius: 1.5rem;
    padding: 2.5rem 3rem;
    max-width: 680px;
}

.ldor-form-wrap__title {
    font-family: 'Playfair Display', serif;
    font-size: clamp(1.4rem, 2.5vw, 1.9rem);
    font-weight: 700;
    color: #2d2a27;
    margin-bottom: .4rem;
}

.ldor-form-wrap__sub {
    font-size: .9rem;
    color: #7a746e;
    margin-bottom: 1.75rem;
}

/* Champs du formulaire */
.ldor-form {
    display: flex;
    flex-wrap: wrap;
    gap: 1.25rem;
}

.ldor-form__row {
    display: flex;
    flex-direction: column;
    gap: .4rem;
    flex: 1 1 240px;
}

.ldor-form__row--full {
    flex: 1 1 100%;
}

.ldor-form__row label {
    font-size: .85rem;
    font-weight: 600;
    color: #3d3630;
}

.ldor-form__row label span {
    color: #c0865a;
}

.ldor-form__row input,
.ldor-form__row textarea {
    border: 1.5px solid #ddd5c8;
    border-radius: .65rem;
    padding: .65rem .9rem;
    font-size: .95rem;
    font-family: inherit;
    color: #2d2a27;
    background: #fff;
    width: 100%;
    transition: border-color .2s;
    outline: none;
}

.ldor-form__row input:focus,
.ldor-form__row textarea:focus {
    border-color: #b08060;
}

.ldor-form__row textarea {
    resize: vertical;
    min-height: 130px;
}

.ldor-form__row small {
    font-size: .78rem;
    color: #a09990;
}

/* Bouton submit */
.form-submit { flex: 1 1 100%; margin: 0; }

.ldor-form__btn {
    display: inline-flex;
    align-items: center;
    padding: .75rem 2rem;
    background: #3d2f1f;
    color: #fff;
    border: none;
    border-radius: 99px;
    font-size: .95rem;
    font-weight: 500;
    font-family: inherit;
    cursor: pointer;
    transition: opacity .2s, transform .2s;
}

.ldor-form__btn:hover {
    opacity: .85;
    transform: translateY(-1px);
}

/* Message post-soumission WP */
.comment-awaiting-moderation {
    display: none; /* masqué — le message de confirmation est géré par WP en haut de page */
}

@media (max-width: 640px) {
    .ldor-form-wrap { padding: 1.75rem 1.5rem; }
    .ldor-form__row { flex: 1 1 100%; }
    .ldor-grid { grid-template-columns: 1fr; }
}

/* ---------------------------------------------------------
   22. FOOTER
   --------------------------------------------------------- */
.site-footer {
    background: #f5f0e8;
    border-top: 1px solid #e2d9ce;
    padding: 1.5rem 0;
    margin-top: 4rem;
    text-align: center;
    font-size: .875rem;
    color: #7a746e;
}
