/* ==========================================================================
   Pension Oh Les Pattes — Design system
   Thème clair, chaleureux et professionnel · esprit pension familiale
   ========================================================================== */

@import url('https://fonts.googleapis.com/css2?family=Bricolage+Grotesque:opsz,wght@12..96,400..800&family=Work+Sans:ital,wght@0,300;0,400;0,500;0,600;1,400&display=swap');

:root {
    /* Couleurs */
    --ink:        #2b2320;
    --ink-soft:   #6c5f57;
    --ink-faint:  #9b8e85;

    --plum:       #7d4f8c;   /* couleur de marque, héritée du violet d'origine */
    --plum-deep:  #5d3a6b;
    --plum-tint:  #f4ecf7;
    --plum-line:  #e6d6ec;

    --apricot:    #f0a35e;   /* accent chaleureux, appels à l'action */
    --apricot-deep:#e2873b;
    --apricot-tint:#fdf0e3;

    --leaf:       #6f8f6a;   /* touche nature / confiance */
    --leaf-tint:  #eef3ec;

    --paper:      #faf6f1;   /* fond de page */
    --surface:    #ffffff;
    --surface-2:  #fbf8f4;
    --line:       #ece2d8;

    /* Élévation */
    --shadow-sm:  0 1px 2px rgba(67, 45, 60, .06);
    --shadow:     0 10px 30px -12px rgba(67, 45, 60, .18);
    --shadow-lg:  0 28px 60px -28px rgba(67, 45, 60, .32);

    /* Géométrie */
    --r-sm: 10px;
    --r:    16px;
    --r-lg: 24px;
    --r-xl: 34px;

    --container: 1140px;
    --gap: clamp(1rem, 3vw, 2rem);

    --font-display: 'Bricolage Grotesque', 'Work Sans', system-ui, sans-serif;
    --font-body: 'Work Sans', system-ui, -apple-system, sans-serif;
}

/* ----- Reset léger -------------------------------------------------------- */
*, *::before, *::after { box-sizing: border-box; }
* { margin: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }

body {
    font-family: var(--font-body);
    font-weight: 400;
    color: var(--ink);
    background: var(--paper);
    line-height: 1.65;
    font-size: 1.0625rem;
    -webkit-font-smoothing: antialiased;
    text-rendering: optimizeLegibility;
    overflow-x: hidden;
}

img { max-width: 100%; display: block; height: auto; }
a { color: var(--plum-deep); text-decoration: none; transition: color .2s ease; }
a:hover { color: var(--plum); }

h1, h2, h3, h4 {
    font-family: var(--font-display);
    font-weight: 600;
    line-height: 1.1;
    letter-spacing: -.01em;
    color: var(--ink);
}

::selection { background: var(--plum); color: #fff; }

:focus-visible {
    outline: 3px solid var(--apricot);
    outline-offset: 2px;
    border-radius: 4px;
}

/* ----- Utilitaires -------------------------------------------------------- */
.container {
    width: 100%;
    max-width: var(--container);
    margin-inline: auto;
    padding-inline: clamp(1.1rem, 4vw, 2rem);
}

.section { padding-block: clamp(3.5rem, 8vw, 6rem); }
.section--tint { background: var(--surface-2); }

.eyebrow {
    display: inline-flex;
    align-items: center;
    gap: .55rem;
    font-family: var(--font-body);
    font-weight: 600;
    font-size: .78rem;
    letter-spacing: .14em;
    text-transform: uppercase;
    color: var(--plum);
}
.eyebrow::before {
    content: "";
    width: 18px; height: 18px;
    background: var(--plum);
    -webkit-mask: var(--paw) center / contain no-repeat;
            mask: var(--paw) center / contain no-repeat;
}

:root {
    --paw: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 64 64'%3E%3Cellipse cx='20' cy='20' rx='7' ry='9'/%3E%3Cellipse cx='44' cy='20' rx='7' ry='9'/%3E%3Cellipse cx='10' cy='36' rx='6' ry='8'/%3E%3Cellipse cx='54' cy='36' rx='6' ry='8'/%3E%3Cpath d='M32 30c8 0 15 7 15 15 0 6-5 9-10 9-2 0-3-1-5-1s-3 1-5 1c-5 0-10-3-10-9 0-8 7-15 15-15z'/%3E%3C/svg%3E");
}

.lead {
    font-size: clamp(1.05rem, 1.6vw, 1.2rem);
    color: var(--ink-soft);
}

.title-xl {
    font-size: clamp(2.4rem, 6vw, 4rem);
    font-weight: 700;
    letter-spacing: -.025em;
}
.title-lg { font-size: clamp(1.9rem, 4vw, 2.7rem); font-weight: 700; }
.title-md { font-size: clamp(1.3rem, 2.6vw, 1.65rem); }

.accent { color: var(--plum); }
.center { text-align: center; }
.mx-auto { margin-inline: auto; }
.measure { max-width: 56ch; }

/* ----- Boutons ------------------------------------------------------------ */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: .6rem;
    font-family: var(--font-body);
    font-weight: 600;
    font-size: 1rem;
    line-height: 1;
    padding: .95rem 1.6rem;
    border-radius: 999px;
    border: 1.5px solid transparent;
    cursor: pointer;
    transition: transform .18s ease, box-shadow .18s ease, background .2s ease, color .2s ease;
    white-space: nowrap;
}
.btn:active { transform: translateY(1px); }

.btn--primary {
    background: var(--apricot);
    color: #4a2c12;
    box-shadow: 0 10px 24px -12px rgba(226, 135, 59, .9);
}
.btn--primary:hover { background: var(--apricot-deep); color: #fff; transform: translateY(-2px); }

.btn--plum {
    background: var(--plum);
    color: #fff;
}
.btn--plum:hover { background: var(--plum-deep); color: #fff; transform: translateY(-2px); }

.btn--ghost {
    background: transparent;
    color: var(--plum-deep);
    border-color: var(--plum-line);
}
.btn--ghost:hover { background: var(--plum-tint); color: var(--plum-deep); border-color: var(--plum); }

.btn--block { width: 100%; }

/* ==========================================================================
   En-tête / navigation
   ========================================================================== */
.site-header {
    position: sticky;
    top: 0;
    z-index: 100;
    background: rgba(250, 246, 241, .82);
    backdrop-filter: saturate(180%) blur(12px);
    -webkit-backdrop-filter: saturate(180%) blur(12px);
    border-bottom: 1px solid var(--line);
}
.nav {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    min-height: 76px;
}
.brand {
    display: inline-flex;
    align-items: center;
    gap: .7rem;
    font-family: var(--font-display);
    font-weight: 700;
    font-size: 1.2rem;
    color: var(--ink);
    letter-spacing: -.02em;
}
.brand:hover { color: var(--ink); }
.brand__mark {
    width: 42px; height: 42px;
    border-radius: 13px;
    background: linear-gradient(150deg, var(--plum), var(--plum-deep));
    display: grid;
    place-items: center;
    flex: none;
    box-shadow: var(--shadow-sm);
}
.brand__mark::after {
    content: "";
    width: 24px; height: 24px;
    background: #fff;
    -webkit-mask: var(--paw) center / contain no-repeat;
            mask: var(--paw) center / contain no-repeat;
}
.brand__name small {
    display: block;
    font-family: var(--font-body);
    font-weight: 500;
    font-size: .68rem;
    letter-spacing: .12em;
    text-transform: uppercase;
    color: var(--ink-faint);
}

.nav__links {
    display: flex;
    align-items: center;
    gap: .25rem;
    list-style: none;
    padding: 0;
}
.nav__links a {
    display: inline-block;
    padding: .55rem .85rem;
    border-radius: 999px;
    font-weight: 500;
    font-size: .96rem;
    color: var(--ink-soft);
}
.nav__links a:hover { color: var(--plum-deep); background: var(--plum-tint); }
.nav__links a.is-active { color: var(--plum-deep); background: var(--plum-tint); font-weight: 600; }

.nav__cta { margin-left: .4rem; }
.nav__cta .btn { padding: .7rem 1.2rem; }

.nav__toggle {
    display: none;
    width: 46px; height: 46px;
    border: 1px solid var(--line);
    background: var(--surface);
    border-radius: 12px;
    cursor: pointer;
    color: var(--ink);
    align-items: center;
    justify-content: center;
}
.nav__toggle svg { width: 22px; height: 22px; }

@media (max-width: 920px) {
    .nav__toggle { display: inline-flex; }
    .nav__links {
        position: fixed;
        inset: 76px 0 auto 0;
        flex-direction: column;
        align-items: stretch;
        gap: .15rem;
        background: var(--surface);
        border-bottom: 1px solid var(--line);
        padding: 1rem clamp(1.1rem, 4vw, 2rem) 1.4rem;
        box-shadow: var(--shadow);
        transform: translateY(-130%);
        transition: transform .32s cubic-bezier(.4,0,.2,1);
        max-height: calc(100vh - 76px);
        overflow-y: auto;
    }
    .nav__links.is-open { transform: translateY(0); }
    .nav__links a { padding: .85rem 1rem; font-size: 1.05rem; }
    .nav__cta { margin: .5rem 0 0; }
    .nav__cta .btn { width: 100%; }
}

/* ==========================================================================
   Hero
   ========================================================================== */
.hero {
    position: relative;
    padding-block: clamp(2.5rem, 6vw, 4.5rem) clamp(3rem, 7vw, 5.5rem);
    background:
        radial-gradient(120% 90% at 88% -10%, var(--plum-tint) 0%, rgba(244,236,247,0) 55%),
        radial-gradient(90% 80% at 0% 110%, var(--apricot-tint) 0%, rgba(253,240,227,0) 55%);
}
.hero__grid {
    display: grid;
    grid-template-columns: 1.05fr .95fr;
    gap: clamp(2rem, 5vw, 4rem);
    align-items: center;
}
.hero__title {
    font-size: clamp(2.5rem, 6vw, 4.3rem);
    font-weight: 700;
    letter-spacing: -.03em;
    margin-top: 1.1rem;
}
.hero__title em { color: var(--plum); font-style: normal; }
.hero__lead {
    margin-top: 1.4rem;
    max-width: 46ch;
    font-size: clamp(1.05rem, 1.7vw, 1.22rem);
    color: var(--ink-soft);
}
.hero__actions {
    display: flex;
    flex-wrap: wrap;
    gap: .8rem;
    margin-top: 2rem;
}
.hero__trust {
    display: flex;
    flex-wrap: wrap;
    gap: 1.4rem 2rem;
    margin-top: 2.4rem;
    padding-top: 1.8rem;
    border-top: 1px solid var(--line);
}
.hero__trust div { line-height: 1.25; }
.hero__trust strong {
    display: block;
    font-family: var(--font-display);
    font-size: 1.5rem;
    color: var(--plum-deep);
}
.hero__trust span { font-size: .85rem; color: var(--ink-faint); }

.hero__media { position: relative; }
.hero__photo {
    border-radius: var(--r-xl);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    aspect-ratio: 4 / 5;
    background:
        linear-gradient(150deg, var(--plum-tint), var(--apricot-tint));
    border: 6px solid #fff;
}
.hero__photo img { width: 100%; height: 100%; object-fit: cover; }

.hero__chip {
    position: absolute;
    left: -18px; bottom: 28px;
    background: #fff;
    border-radius: var(--r);
    box-shadow: var(--shadow);
    padding: .9rem 1.1rem;
    display: flex;
    align-items: center;
    gap: .75rem;
    border: 1px solid var(--line);
}
.hero__chip b { font-family: var(--font-display); font-size: 1.15rem; color: var(--plum-deep); display:block; }
.hero__chip span { font-size: .78rem; color: var(--ink-faint); }
.hero__chip .ic {
    width: 38px; height: 38px; flex: none;
    border-radius: 11px;
    background: var(--leaf-tint);
    display: grid; place-items: center;
    color: var(--leaf);
}
.hero__chip--top { left: auto; right: -14px; top: 26px; bottom: auto; }
.hero__chip--top .ic { background: var(--apricot-tint); color: var(--apricot-deep); }

@media (max-width: 880px) {
    .hero__grid { grid-template-columns: 1fr; }
    .hero__media { order: -1; max-width: 460px; margin-inline: auto; width: 100%; }
    .hero__photo { aspect-ratio: 5 / 4; }
}

/* ==========================================================================
   Cartes "valeurs" / features
   ========================================================================== */
.grid {
    display: grid;
    gap: clamp(1rem, 2.5vw, 1.6rem);
}
.grid--3 { grid-template-columns: repeat(3, 1fr); }
.grid--4 { grid-template-columns: repeat(4, 1fr); }
.grid--2 { grid-template-columns: repeat(2, 1fr); }

@media (max-width: 880px) {
    .grid--4 { grid-template-columns: repeat(2, 1fr); }
    .grid--3 { grid-template-columns: 1fr; }
    .grid--2 { grid-template-columns: 1fr; }
}
@media (max-width: 520px) {
    .grid--4 { grid-template-columns: 1fr; }
}

.card {
    background: var(--surface);
    border: 1px solid var(--line);
    border-radius: var(--r-lg);
    padding: 1.6rem;
    box-shadow: var(--shadow-sm);
    transition: transform .2s ease, box-shadow .2s ease;
}
.card--hover:hover { transform: translateY(-4px); box-shadow: var(--shadow); }

.card__icon {
    width: 52px; height: 52px;
    border-radius: 15px;
    display: grid; place-items: center;
    margin-bottom: 1.1rem;
    background: var(--plum-tint);
    color: var(--plum);
}
.card__icon svg { width: 26px; height: 26px; }
.card__icon--apricot { background: var(--apricot-tint); color: var(--apricot-deep); }
.card__icon--leaf { background: var(--leaf-tint); color: var(--leaf); }

.card h3 { font-size: 1.2rem; margin-bottom: .4rem; }
.card p { color: var(--ink-soft); font-size: .98rem; }

.card--photo { padding: 0; overflow: hidden; }
.card--photo img { aspect-ratio: 4/3; object-fit: cover; width: 100%; background: var(--plum-tint); }
.card--photo .card__body { padding: 1.4rem 1.5rem 1.6rem; }

/* ----- En-tête de section ------------------------------------------------- */
.section-head { max-width: 62ch; margin-bottom: clamp(2rem, 4vw, 3rem); }
.section-head--center { margin-inline: auto; text-align: center; }
.section-head h2 { margin-top: .8rem; }
.section-head p { margin-top: .9rem; color: var(--ink-soft); font-size: 1.08rem; }

/* ==========================================================================
   Bloc "Sarah" / présentation responsable
   ========================================================================== */
.host {
    background: linear-gradient(145deg, var(--plum-deep), var(--plum));
    color: #fff;
    border-radius: var(--r-xl);
    overflow: hidden;
}
.host__grid { display: grid; grid-template-columns: .8fr 1.2fr; align-items: stretch; }
.host__photo { background: var(--plum-deep); min-height: 100%; }
.host__photo img { width: 100%; height: 100%; object-fit: cover; min-height: 320px; }
.host__body { padding: clamp(1.8rem, 4vw, 3.2rem); }
.host__body .eyebrow { color: #f6d8b4; }
.host__body .eyebrow::before { background: #f6d8b4; }
.host h2 { color: #fff; font-size: clamp(1.6rem, 3vw, 2.1rem); margin: .8rem 0 1.1rem; }
.host p { color: rgba(255,255,255,.86); margin-bottom: .9rem; }
.host__badge {
    display: inline-flex; align-items: center; gap: .55rem;
    margin-top: .6rem;
    background: rgba(255,255,255,.12);
    border: 1px solid rgba(255,255,255,.22);
    padding: .55rem 1rem; border-radius: 999px;
    font-size: .9rem;
}
@media (max-width: 760px) {
    .host__grid { grid-template-columns: 1fr; }
    .host__photo img { min-height: 260px; }
}

/* ==========================================================================
   Page "pension" : descriptif + tarifs (sidebar)
   ========================================================================== */
.layout {
    display: grid;
    grid-template-columns: 1fr 340px;
    gap: clamp(1.6rem, 4vw, 3rem);
    align-items: start;
}
@media (max-width: 920px) { .layout { grid-template-columns: 1fr; } }

.prose h3 {
    font-size: 1.35rem;
    margin: 2rem 0 .7rem;
    color: var(--plum-deep);
}
.prose h3:first-child { margin-top: 0; }
.prose p { margin-bottom: 1.05rem; color: var(--ink-soft); }
.prose strong { color: var(--ink); font-weight: 600; }
.prose ul { margin: 0 0 1.1rem; padding-left: 0; list-style: none; }
.prose li {
    position: relative;
    padding-left: 1.9rem;
    margin-bottom: .7rem;
    color: var(--ink-soft);
}
.prose li::before {
    content: "";
    position: absolute; left: 0; top: .15rem;
    width: 20px; height: 20px;
    background: var(--plum);
    -webkit-mask: var(--paw) center / contain no-repeat;
            mask: var(--paw) center / contain no-repeat;
    opacity: .85;
}

.sidebar { position: sticky; top: 96px; display: grid; gap: 1.2rem; }
@media (max-width: 920px) { .sidebar { position: static; } }

.price-card {
    background: var(--surface);
    border: 1px solid var(--line);
    border-radius: var(--r-lg);
    overflow: hidden;
    box-shadow: var(--shadow);
}
.price-card__head {
    background: linear-gradient(150deg, var(--plum), var(--plum-deep));
    color: #fff;
    padding: 1.4rem 1.5rem;
    text-align: center;
}
.price-card__head .amount {
    font-family: var(--font-display);
    font-weight: 700;
    font-size: 2.6rem;
    line-height: 1;
}
.price-card__head .amount span { font-size: 1rem; font-weight: 500; opacity: .85; }
.price-card__head p { font-size: .9rem; opacity: .9; margin-top: .35rem; }
.price-card__body { padding: 1.4rem 1.5rem; }
.price-card__body h4 {
    font-family: var(--font-display);
    font-size: .8rem; letter-spacing: .1em; text-transform: uppercase;
    color: var(--plum); margin-bottom: .5rem;
}
.price-card__body p { font-size: .92rem; color: var(--ink-soft); margin-bottom: 1rem; }
.price-card__body p:last-child { margin-bottom: 0; }

.note {
    background: var(--apricot-tint);
    border: 1px solid #f3dcc2;
    border-radius: var(--r);
    padding: 1rem 1.2rem;
    font-size: .92rem;
    color: #7a4a1c;
    display: flex; gap: .7rem;
}
.note svg { flex: none; width: 20px; height: 20px; margin-top: .15rem; }

/* ----- Galerie ------------------------------------------------------------ */
.gallery {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: .9rem;
    margin-top: 2rem;
}
.gallery img {
    aspect-ratio: 1;
    object-fit: cover;
    border-radius: var(--r);
    width: 100%;
    background: var(--plum-tint);
    box-shadow: var(--shadow-sm);
}
.gallery img:first-child { grid-column: span 2; grid-row: span 2; aspect-ratio: auto; height: 100%; }
@media (max-width: 620px) {
    .gallery { grid-template-columns: repeat(2, 1fr); }
    .gallery img:first-child { grid-column: span 2; aspect-ratio: 16/10; }
}

/* ==========================================================================
   Bandeau CTA
   ========================================================================== */
.cta-band {
    background:
        radial-gradient(80% 120% at 100% 0%, var(--plum-tint) 0%, rgba(244,236,247,0) 60%),
        var(--surface-2);
    border: 1px solid var(--line);
    border-radius: var(--r-xl);
    padding: clamp(2.2rem, 5vw, 3.4rem);
    text-align: center;
}
.cta-band h2 { font-size: clamp(1.7rem, 4vw, 2.5rem); margin-bottom: .8rem; }
.cta-band p { color: var(--ink-soft); max-width: 52ch; margin: 0 auto 1.8rem; }
.cta-band .hero__actions { justify-content: center; margin-top: 0; }

/* ==========================================================================
   Formulaires
   ========================================================================== */
.form-card {
    background: var(--surface);
    border: 1px solid var(--line);
    border-radius: var(--r-lg);
    padding: clamp(1.4rem, 4vw, 2.4rem);
    box-shadow: var(--shadow-sm);
}
fieldset {
    border: 1px solid var(--line);
    border-radius: var(--r);
    padding: 1.4rem 1.4rem 1.6rem;
    margin-bottom: 1.6rem;
}
legend {
    font-family: var(--font-display);
    font-weight: 600;
    font-size: 1.05rem;
    color: var(--plum-deep);
    padding: 0 .6rem;
}
.field { margin-bottom: 1.1rem; }
.field:last-child { margin-bottom: 0; }
.field-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.1rem;
}
@media (max-width: 560px) { .field-row { grid-template-columns: 1fr; } }

label {
    display: block;
    font-weight: 600;
    font-size: .9rem;
    color: var(--ink);
    margin-bottom: .4rem;
}
input, select, textarea {
    width: 100%;
    font: inherit;
    color: var(--ink);
    background: var(--surface-2);
    border: 1.5px solid var(--line);
    border-radius: var(--r-sm);
    padding: .8rem .9rem;
    transition: border-color .2s ease, box-shadow .2s ease, background .2s ease;
}
input::placeholder, textarea::placeholder { color: var(--ink-faint); }
input:focus, select:focus, textarea:focus {
    outline: none;
    border-color: var(--plum);
    background: #fff;
    box-shadow: 0 0 0 4px var(--plum-tint);
}
textarea { resize: vertical; min-height: 120px; }
select {
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' fill='none' stroke='%237d4f8c' stroke-width='2' viewBox='0 0 24 24'%3E%3Cpath d='M6 9l6 6 6-6'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right .9rem center;
    padding-right: 2.4rem;
}
.hp { position: absolute; left: -9999px; width: 1px; height: 1px; overflow: hidden; }

.alert {
    border-radius: var(--r);
    padding: 1rem 1.2rem;
    margin-bottom: 1.6rem;
    font-size: .96rem;
    display: flex; gap: .7rem; align-items: flex-start;
    font-weight: 500;
}
.alert svg { flex: none; width: 20px; height: 20px; margin-top: .1rem; }
.alert--ok { background: var(--leaf-tint); color: #3f5b3b; border: 1px solid #d3e2cf; }
.alert--err { background: #fdecea; color: #9a3026; border: 1px solid #f4cfca; }

/* ==========================================================================
   Contact : carte d'infos + map
   ========================================================================== */
.info-card { display: grid; gap: 1.4rem; }
.info-line { display: flex; gap: .9rem; align-items: flex-start; }
.info-line .ic {
    width: 44px; height: 44px; flex: none;
    border-radius: 13px;
    background: var(--plum-tint); color: var(--plum);
    display: grid; place-items: center;
}
.info-line .ic svg { width: 22px; height: 22px; }
.info-line h4 { font-family: var(--font-display); font-size: .95rem; margin-bottom: .15rem; }
.info-line p, .info-line a { font-size: .95rem; color: var(--ink-soft); }
.info-line a:hover { color: var(--plum); }

.map-frame {
    border-radius: var(--r-lg);
    overflow: hidden;
    border: 1px solid var(--line);
    box-shadow: var(--shadow-sm);
    line-height: 0;
}
.map-frame iframe { width: 100%; height: 360px; border: 0; display: block; }

.hours {
    list-style: none; padding: 0; margin: 0;
}
.hours li {
    display: flex; justify-content: space-between;
    padding: .55rem 0;
    border-bottom: 1px dashed var(--line);
    font-size: .95rem;
}
.hours li:last-child { border-bottom: 0; }
.hours li span:first-child { color: var(--ink-soft); }
.hours li span:last-child { font-weight: 600; }
.hours li.closed span:last-child { color: var(--ink-faint); font-weight: 500; }

/* ==========================================================================
   Pied de page
   ========================================================================== */
.site-footer {
    background: #fff;
    border-top: 1px solid var(--line);
    margin-top: clamp(3rem, 7vw, 5rem);
    padding-block: clamp(2.8rem, 6vw, 4rem) 1.5rem;
}
.footer__grid {
    display: grid;
    grid-template-columns: 1.4fr 1fr 1fr;
    gap: 2.5rem;
}
@media (max-width: 760px) { .footer__grid { grid-template-columns: 1fr; gap: 1.8rem; } }
.footer__brand p { color: var(--ink-soft); font-size: .95rem; margin-top: 1rem; max-width: 36ch; }
.footer h4 {
    font-family: var(--font-display);
    font-size: .82rem; letter-spacing: .1em; text-transform: uppercase;
    color: var(--ink-faint); margin-bottom: 1rem;
}
.footer ul { list-style: none; padding: 0; display: grid; gap: .55rem; }
.footer a { color: var(--ink-soft); font-size: .96rem; }
.footer a:hover { color: var(--plum); }
.footer__bottom {
    margin-top: 2.5rem; padding-top: 1.4rem;
    border-top: 1px solid var(--line);
    display: flex; flex-wrap: wrap; gap: .6rem 1.4rem;
    justify-content: space-between; align-items: center;
    font-size: .85rem; color: var(--ink-faint);
}

/* ----- Bouton retour haut ------------------------------------------------- */
.to-top {
    position: fixed;
    right: 1.2rem; bottom: 1.2rem;
    width: 48px; height: 48px;
    border-radius: 14px;
    background: var(--plum);
    color: #fff;
    border: none;
    display: grid; place-items: center;
    cursor: pointer;
    box-shadow: var(--shadow);
    opacity: 0; visibility: hidden;
    transform: translateY(10px);
    transition: opacity .25s ease, transform .25s ease, visibility .25s, background .2s;
    z-index: 90;
}
.to-top:hover { background: var(--plum-deep); }
.to-top.show { opacity: 1; visibility: visible; transform: translateY(0); }

/* ----- Reveal on scroll --------------------------------------------------- */
.reveal { opacity: 0; transform: translateY(22px); transition: opacity .7s ease, transform .7s ease; }
.reveal.in { opacity: 1; transform: none; }

@media (prefers-reduced-motion: reduce) {
    * { animation: none !important; transition: none !important; scroll-behavior: auto !important; }
    .reveal { opacity: 1; transform: none; }
}

/* ----- Page header (sous-pages) ------------------------------------------- */
.page-hero {
    background:
        radial-gradient(100% 140% at 90% -20%, var(--plum-tint) 0%, rgba(244,236,247,0) 60%),
        var(--surface-2);
    border-bottom: 1px solid var(--line);
    padding-block: clamp(2.4rem, 6vw, 4rem);
}
.breadcrumb {
    font-size: .85rem; color: var(--ink-faint);
    display: flex; gap: .5rem; flex-wrap: wrap; align-items: center;
    margin-bottom: 1rem;
}
.breadcrumb a { color: var(--ink-soft); }
.breadcrumb span { opacity: .6; }
.page-hero h1 { font-size: clamp(2.1rem, 5vw, 3.2rem); font-weight: 700; letter-spacing: -.02em; }
.page-hero p { margin-top: .9rem; max-width: 60ch; color: var(--ink-soft); font-size: 1.08rem; }
