/* Polices auto-hébergées (remplace Google Fonts : aucune requête vers un serveur tiers, conforme RGPD) */
@font-face {
    font-family: 'Fraunces';
    src: url('fonts/fraunces-latin-full-normal.woff2') format('woff2-variations');
    font-weight: 100 900;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Fraunces';
    src: url('fonts/fraunces-latin-full-italic.woff2') format('woff2-variations');
    font-weight: 100 900;
    font-style: italic;
    font-display: swap;
}

@font-face {
    font-family: 'Work Sans';
    src: url('fonts/work-sans-latin-400-normal.woff2') format('woff2');
    font-weight: 400;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Work Sans';
    src: url('fonts/work-sans-latin-500-normal.woff2') format('woff2');
    font-weight: 500;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Work Sans';
    src: url('fonts/work-sans-latin-600-normal.woff2') format('woff2');
    font-weight: 600;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Space Mono';
    src: url('fonts/space-mono-latin-400-normal.woff2') format('woff2');
    font-weight: 400;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Space Mono';
    src: url('fonts/space-mono-latin-700-normal.woff2') format('woff2');
    font-weight: 700;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Caveat';
    src: url('fonts/caveat-latin-500-normal.woff2') format('woff2');
    font-weight: 500;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Caveat';
    src: url('fonts/caveat-latin-600-normal.woff2') format('woff2');
    font-weight: 600;
    font-style: normal;
    font-display: swap;
}

:root {
    --ink: #2b211a;
    --ink-soft: #5a4a38;
    --paper: #f3ece1;
    --paper-deep: #ead9c4;
    --card: #fffaf3;

    --clay: #b5613b;
    --clay-deep: #8a4a2e;

    --rose: #c98077;
    --rose-deep: #9c5850;

    --blue: #4f7a88;
    --blue-deep: #375a66;

    --brass: #a98a54;
    --line: rgba(43, 33, 26, 0.12);
    --line-strong: rgba(43, 33, 26, 0.22);

    --font-display: 'Fraunces', serif;
    --font-body: 'Work Sans', sans-serif;
    --font-script: 'Caveat', cursive;
    --font-mono: 'Space Mono', monospace;
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    padding: 0;
    font-family: var(--font-body);
    color: var(--ink);
    background: var(--paper);
    overflow-wrap: break-word;
    word-wrap: break-word;
    font-optical-sizing: auto;
}

p,
h1,
h2,
h3,
li {
    overflow-wrap: break-word;
    word-wrap: break-word;
}

.landing {
    line-height: 1.4;
}

img {
    max-width: 100%;
}

a {
    color: inherit;
}

a:focus-visible,
button:focus-visible,
input:focus-visible,
select:focus-visible,
textarea:focus-visible {
    outline: 2px solid var(--clay);
    outline-offset: 3px;
}

@media (prefers-reduced-motion: reduce) {
    * {
        animation-duration: 0.001ms !important;
        transition-duration: 0.001ms !important;
        scroll-behavior: auto !important;
    }
}

/* ============================================
   RÉVÉLATION AU DÉFILEMENT
============================================ */
.reveal {
    opacity: 0;
    transform: translateY(24px);
    transition: opacity 0.7s ease, transform 0.7s ease;
}

.reveal.is-visible {
    opacity: 1;
    transform: translateY(0);
}

/* ============================================
   TITRES / LABELS COMMUNS
============================================ */
h2 {
    font-family: var(--font-display);
    font-size: 2.75rem;
    font-weight: 500;
    color: var(--ink);
    text-align: center;
    margin: 0.5rem 0 0.6rem;
    width: 100%;
    max-width: 100%;
    padding: 0 20px;
}

.eyebrow {
    display: inline-block;
    font-family: var(--font-script);
    font-size: 1.4rem;
    color: var(--clay-deep);
    margin-bottom: 0.4rem;
}

.eyebrow-light {
    color: rgba(255, 255, 255, 0.92);
}

.section-rule {
    width: 46px;
    height: 10px;
    margin: 0 auto 2.6rem;
    position: relative;
}

.section-rule::before {
    content: "";
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    height: 1px;
    background: var(--brass);
}

.section-rule::after {
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    width: 7px;
    height: 7px;
    border: 1px solid var(--brass);
    background: var(--paper);
    transform: translate(-50%, -50%) rotate(45deg);
}

@media (max-width: 768px) {
    h2 {
        font-size: 2rem;
    }
}

/* ============================================
   SECTIONS (rythme général)
============================================ */
section {
    padding: 96px 30px;
    text-align: center;
    width: 100%;
    max-width: 100vw;
    overflow: hidden;
    margin-left: auto;
    margin-right: auto;
}

/* ============================================
   MENU
============================================ */
.sticky-menu {
    position: sticky;
    top: 0;
    background: transparent;
    padding: 20px 0;
    z-index: 1000;
    transition: background 0.3s ease, padding 0.3s ease, box-shadow 0.3s ease;
}

.sticky-menu.is-scrolled {
    background: rgba(243, 236, 225, 0.94);
    backdrop-filter: blur(10px);
    padding: 12px 0;
    box-shadow: 0 4px 20px rgba(43, 33, 26, 0.06);
}

.menu-container {
    max-width: 1200px;
    margin: auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 24px;
    position: relative;
}

.logo {
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
    color: inherit;
}

.logo-mark {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 34px;
    height: 34px;
    border-radius: 50%;
    border: 1px solid var(--brass);
    font-family: var(--font-display);
    font-style: italic;
    font-size: 1.1rem;
    color: var(--clay-deep);
    flex-shrink: 0;
}

.logo-text {
    font-family: var(--font-display);
    font-style: italic;
    font-weight: 600;
    font-size: 1.35rem;
    color: var(--ink);
}

.hero .logo-text,
.hero .logo-mark {
    color: #fff;
    border-color: rgba(255, 255, 255, 0.6);
}

.logo-text em {
    font-style: normal;
    font-weight: 400;
    font-size: 0.85rem;
    color: var(--ink-soft);
    font-family: var(--font-body);
}

.sticky-menu:not(.is-scrolled) .logo-text,
.sticky-menu:not(.is-scrolled) .logo-mark {
    color: #fff;
    border-color: rgba(255, 255, 255, 0.6);
}

.sticky-menu:not(.is-scrolled) .logo-text em {
    color: rgba(255, 255, 255, 0.75);
}

.sticky-menu.is-scrolled .logo-text,
.sticky-menu.is-scrolled .logo-mark {
    color: var(--ink);
    border-color: var(--brass);
}

nav#primary-nav {
    display: flex;
    align-items: center;
}

nav a {
    margin-left: 28px;
    text-decoration: none;
    color: var(--ink-soft);
    font-family: var(--font-body);
    font-size: 0.95rem;
    font-weight: 500;
    letter-spacing: 0.02em;
    transition: color .25s;
}

.sticky-menu:not(.is-scrolled) nav a:not(.nav-cta) {
    color: rgba(255, 255, 255, 0.92);
}

nav a:hover {
    color: var(--clay-deep);
}

.sticky-menu:not(.is-scrolled) nav a:not(.nav-cta):hover {
    color: #fff;
}

nav a.nav-cta {
    background: var(--clay);
    color: #fff;
    padding: 9px 20px;
    border-radius: 30px;
    transition: background .25s;
}

nav a.nav-cta:hover {
    background: var(--clay-deep);
    color: #fff;
}

/* Bouton menu mobile */
.nav-toggle {
    display: none;
    flex-direction: column;
    justify-content: center;
    gap: 5px;
    width: 40px;
    height: 40px;
    background: none;
    border: none;
    cursor: pointer;
    z-index: 1100;
}

.nav-toggle span {
    display: block;
    width: 24px;
    height: 2px;
    background: #fff;
    transition: transform 0.25s ease, opacity 0.25s ease, background 0.25s ease;
}

.sticky-menu.is-scrolled .nav-toggle span {
    background: var(--ink);
}

.nav-toggle.is-open span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
}

.nav-toggle.is-open span:nth-child(2) {
    opacity: 0;
}

.nav-toggle.is-open span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
}

.sticky-menu.is-scrolled .nav-toggle.is-open span {
    background: var(--ink);
}

@media (max-width: 860px) {
    .nav-toggle {
        display: flex;
    }

    .nav-toggle span {
        background: var(--ink);
    }

    .sticky-menu:not(.is-scrolled) .nav-toggle span {
        background: #fff;
    }

    nav#primary-nav {
        position: absolute;
        top: calc(100% + 12px);
        right: 24px;
        left: 24px;
        background: var(--card);
        border-radius: 12px;
        box-shadow: 0 20px 45px rgba(43, 33, 26, 0.18);
        flex-direction: column;
        align-items: stretch;
        padding: 14px;
        opacity: 0;
        transform: translateY(-8px);
        pointer-events: none;
        transition: opacity 0.25s ease, transform 0.25s ease;
    }

    nav#primary-nav.is-open {
        opacity: 1;
        transform: translateY(0);
        pointer-events: auto;
    }

    nav a,
    .sticky-menu:not(.is-scrolled) nav a:not(.nav-cta) {
        color: var(--ink) !important;
        margin: 0;
        padding: 12px 10px;
        border-radius: 8px;
    }

    nav a:hover {
        background: var(--paper-deep);
    }

    nav a.nav-cta {
        margin-top: 6px;
        text-align: center;
    }
}

/* ============================================
   HERO
============================================ */
.hero {
    background: url('salonnv.jpg') center/cover no-repeat;
    padding: 0 20px;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: white;
    position: relative;
    margin-top: -78px;
}

.hero::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg,
            rgba(30, 22, 16, 0.6) 0%,
            rgba(30, 22, 16, 0.4) 45%,
            rgba(30, 22, 16, 0.72) 100%);
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 780px;
    margin: 0 auto;
}

.hero-location {
    font-family: var(--font-mono);
    font-size: 0.85rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.88);
    margin: 0 0 16px;
}

.hero h1 {
    font-family: var(--font-display);
    font-weight: 500;
    font-size: 3.6rem;
    line-height: 1.15;
    margin: 0 0 22px;
}

.hero h1 em {
    font-style: italic;
    font-weight: 600;
    color: #f0d9c8;
}

.hero h2 {
    all: unset;
    display: block;
    font-family: var(--font-body);
    font-weight: 400;
    font-size: 1.15rem;
    line-height: 1.3;
    color: rgba(255, 255, 255, 0.92);
    max-width: 560px;
    margin: 0 auto 36px;
}

.scroll-hint {
    position: absolute;
    bottom: 34px;
    left: 50%;
    transform: translateX(-50%);
    width: 26px;
    height: 42px;
    border: 1px solid rgba(255, 255, 255, 0.6);
    border-radius: 20px;
    z-index: 2;
}

.scroll-hint span {
    position: absolute;
    top: 8px;
    left: 50%;
    transform: translateX(-50%);
    width: 4px;
    height: 8px;
    border-radius: 3px;
    background: #fff;
    animation: scroll-hint-move 1.8s ease infinite;
}

@keyframes scroll-hint-move {
    0% {
        opacity: 1;
        top: 8px;
    }

    70% {
        opacity: 0;
        top: 22px;
    }

    100% {
        opacity: 0;
        top: 8px;
    }
}

@media (max-width: 600px) {
    .hero h1 {
        font-size: 2.3rem;
    }

    .scroll-hint {
        display: none;
    }
}

/* ============================================
   MAISON (intro)
============================================ */
.maison p {
    max-width: 680px;
    margin: auto;
    font-size: 1rem;
    line-height: 1.4;
    color: var(--ink-soft);
}

/* ============================================
   BLOCS TEXTE / IMAGE
============================================ */
.presentation-section {
    padding: 100px 0;
    overflow: hidden;
    background: transparent;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.content-wrapper {
    display: flex;
    align-items: center;
    position: relative;
}

.text-block {
    flex: 0 0 50%;
    padding: 50px;
    background: var(--card);
    z-index: 2;
    box-shadow: 0 20px 50px rgba(43, 33, 26, 0.08);
    border-radius: 6px;
}

.text-block h2 {
    font-family: var(--font-display);
    font-size: 2.3rem;
    font-weight: 500;
    text-align: left;
    margin: 0 0 12px 0;
    color: var(--ink);
}

.intro-text {
    text-align: left;
    font-family: var(--font-script);
    font-size: 1.6rem;
    color: var(--clay-deep);
    margin-bottom: 18px;
}

.text-block p:not(.intro-text) {
    text-align: justify;
    font-size: 1rem;
    line-height: 1.4;
    color: var(--ink-soft);
}

.image-block {
    flex: 0 0 55%;
    height: 480px;
}

.image-block img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 6px;
    box-shadow: 0 25px 60px rgba(43, 33, 26, 0.15);
}

.display-right {
    flex-direction: row;
}

.display-right .image-block {
    margin-left: -5%;
}

.display-left {
    flex-direction: row-reverse;
}

.display-left .image-block {
    margin-right: -5%;
}

@media (max-width: 992px) {
    .content-wrapper {
        flex-direction: column !important;
    }

    .image-block {
        width: 100%;
        height: 300px;
        margin: 0 !important;
    }

    .text-block {
        width: 92%;
        margin: -30px auto 0 !important;
        padding: 32px;
    }

    .text-block h2 {
        font-size: 1.9rem;
    }
}

/* ============================================
   CHAMBRES
============================================ */
.chambres {
    background: var(--paper-deep);
}

.cards {
    display: flex;
    justify-content: center;
    gap: 44px;
    flex-wrap: wrap;
    padding: 8px 0 0;
    max-width: 1200px;
    margin: 0 auto;
}

.card {
    background: var(--card);
    width: 560px;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 15px 40px rgba(43, 33, 26, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    text-align: left;
}

.card:hover {
    transform: translateY(-6px);
    box-shadow: 0 25px 55px rgba(43, 33, 26, 0.16);
}

.card-media {
    height: 360px;
    overflow: hidden;
    position: relative;
}

.card-media::after {
    content: "";
    position: absolute;
    inset: 0;
    box-shadow: inset 0 -40px 50px -35px rgba(43, 33, 26, 0.35);
    pointer-events: none;
}

.card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center 35%;
    display: block;
    filter: saturate(1.06) contrast(1.03) brightness(1.02);
    transition: transform 0.7s ease;
}

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

.card-body {
    padding: 46px 32px 36px;
}

.room-tag {
    display: inline-block;
    font-family: var(--font-mono);
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--ink-soft);
    margin-bottom: 10px;
}

.card-rose .room-tag {
    color: var(--rose-deep);
}

.card-bleu .room-tag {
    color: var(--blue-deep);
}

.card h3 {
    font-family: var(--font-display);
    font-size: 2rem;
    font-weight: 500;
    margin: 0 0 8px;
    color: var(--ink);
}

.card-lead {
    font-family: var(--font-script);
    font-size: 1.4rem;
    color: var(--ink-soft);
    margin: 0 0 18px;
}

.room-features {
    list-style: none;
    padding: 0;
    margin: 0;
}

.room-features li {
    position: relative;
    padding-left: 22px;
    margin-bottom: 10px;
    font-size: 1rem;
    line-height: 1.3;
    color: var(--ink-soft);
}

.room-features li::before {
    content: "-";
    position: absolute;
    left: 0;
    color: var(--clay);
}

.card-rose .room-features li::before {
    color: var(--rose-deep);
}

.card-bleu .room-features li::before {
    color: var(--blue-deep);
}

@media (max-width: 1180px) {
    .card {
        width: 100%;
        max-width: 560px;
    }
}

/* ============================================
   TARIFS
============================================ */
.tarifs {
    max-width: 1200px;
    width: 100%;
    margin: 0 auto;
    padding: 96px 1rem;
    text-align: center;
}

.tarifs-fleurs {
    display: grid;
    grid-template-columns: repeat(3, minmax(240px, 300px));
    justify-content: center;
    justify-items: center;
    gap: 2rem;
}

.tarif-chambres {
    grid-column: 1;
    grid-row: 1;
}

.tarif-neutre {
    grid-column: 2;
    grid-row: 1;
}

.tarif-infos {
    grid-column: 3;
    grid-row: 1;
}

.flower-tarif {
    position: relative;
    width: 280px;
    background: var(--card);
    border-radius: 10px;
    border-top: 4px solid var(--line);
    padding: 2.4rem 1.5rem 2.2rem;
    box-shadow: 0 12px 30px rgba(43, 33, 26, 0.06);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.flower-tarif:hover {
    transform: translateY(-6px);
    box-shadow: 0 18px 40px rgba(43, 33, 26, 0.12);
}

.tarif-chambres {
    border-top-color: var(--rose);
}

.tarif-room {
    text-align: center;
}

.tarif-room+.tarif-room {
    margin-top: 16px;
    padding-top: 16px;
    border-top: 1px solid var(--line);
}

.tarif-room-name {
    font-family: var(--font-display);
    font-size: 1.05rem;
    font-weight: 500;
    margin: 0 0 6px;
    color: var(--ink);
}

.flower-tarif,
.flower-tarif p,
.flower-tarif li {
    font-family: var(--font-body);
}

.flower-tarif h3 {
    font-family: var(--font-display);
    font-size: 1.3rem;
    font-weight: 500;
    margin: 0 0 14px;
    color: var(--ink);
}

.flower-tarif .prix {
    font-family: var(--font-body);
    font-size: 1.1rem;
    font-weight: 600;
    margin: 0;
    color: var(--ink);
}

.flower-tarif .prix span {
    font-family: var(--font-body);
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--ink);
}

.flower-tarif .prix-sub {
    font-family: var(--font-body);
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--ink);
    margin: 6px 0 0;
}

.tarif-note {
    font-family: var(--font-body);
    font-size: 0.85rem;
    font-style: italic;
    color: var(--ink-soft);
    margin: 0 0 10px;
}

.tarif-extra {
    list-style: none;
    padding: 14px 0 0;
    margin: 14px 0 0;
    border-top: 1px solid var(--line);
    text-align: left;
}

.tarif-extra li {
    font-size: 0.9rem;
    line-height: 1.3;
    color: var(--ink-soft);
    margin-bottom: 6px;
}

.tarif-neutre {
    border-top-color: var(--clay);
}

.tarif-infos {
    border-top-color: var(--brass);
}

.tarif-extra-standalone {
    border-top: none;
    padding-top: 0;
    margin-top: 0;
}

@media (max-width: 900px) {
    .tarifs-fleurs {
        grid-template-columns: 1fr;
    }

    .tarif-chambres,
    .tarif-neutre,
    .tarif-infos {
        grid-column: 1;
        grid-row: auto;
    }

    .flower-tarif {
        width: 230px;
        margin: 0 auto;
    }
}

/* ============================================
   EQUIPEMENTS / ACTUS / HISTOIRE
============================================ */
.services-global {
    background: var(--paper-deep);
}

.esprit-section {
    display: flex;
    gap: 28px;
    justify-content: center;
    flex-wrap: wrap;
    margin-top: 10px;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
}

.esprit-card {
    background: var(--card);
    border: 1px solid var(--line);
    border-radius: 8px;
    padding: 32px;
    width: 320px;
    box-shadow: 0 10px 25px rgba(43, 33, 26, 0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    text-align: left;
}

.esprit-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 18px 35px rgba(43, 33, 26, 0.1);
}

.esprit-card h3 {
    font-family: var(--font-display);
    font-weight: 500;
    color: var(--ink);
    font-size: 1.4rem;
    margin-bottom: 18px;
    border-bottom: 1px solid var(--line);
    padding-bottom: 12px;
}

.card-story {
    font-size: 1rem;
    line-height: 1.4;
    color: var(--ink-soft);
    margin: 0;
    text-align: justify;
}

.card-story .signature {
    display: inline-block;
    font-family: var(--font-script);
    font-size: 1.6rem;
    color: var(--clay-deep);
}

.esprit-card ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.esprit-card li {
    position: relative;
    padding-left: 22px;
    margin-bottom: 10px;
    font-size: 1rem;
    line-height: 1.3;
    color: var(--ink-soft);
}

.esprit-card li::before {
    content: "✦";
    color: var(--clay);
    position: absolute;
    left: 0;
    font-size: 0.85rem;
}

.esprit-card .fb-link {
    color: var(--ink);
    text-decoration: none;
    font-weight: 500;
    transition: color 0.25s ease;
}

.esprit-card .fb-link:hover {
    color: var(--clay-deep);
}

@media (max-width: 768px) {
    .esprit-card {
        width: 100%;
        max-width: 350px;
    }
}

/* ============================================
   RESERVATION / CONTACT
============================================ */
.reservation-section {
    padding: 96px 20px;
    background: var(--paper);
}

.reservation-container {
    max-width: 1100px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 50px;
    align-items: start;
    text-align: center;
}

.reservation-container-single {
    grid-template-columns: 1fr;
    max-width: 560px;
}

.contact-info h3 {
    font-family: var(--font-display);
    font-weight: 500;
    font-size: 1.4rem;
    color: var(--ink);
    margin-bottom: 20px;
}

.info-details p {
    margin-bottom: 12px;
    font-size: 1rem;
    line-height: 1.4;
    color: var(--ink-soft);
}

.info-details a {
    text-decoration: none;
    color: var(--clay-deep);
}

.info-details a:hover {
    text-decoration: underline;
}

.map-card {
    margin-top: 30px;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 8px 20px rgba(43, 33, 26, 0.1);
    background: var(--card);
}

.map-card-illustration {
    display: block;
    width: 100%;
    height: auto;
}

.map-card-body {
    padding: 22px 24px 26px;
    text-align: center;
}

.map-card-address {
    font-size: 0.95rem;
    color: var(--ink-soft);
    margin: 0 0 16px;
}

.map-card-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background-color: var(--clay);
    color: white;
    padding: 12px 28px;
    border-radius: 30px;
    font-size: 0.95rem;
    font-weight: 600;
    font-family: var(--font-body);
    text-decoration: none;
    transition: background 0.25s ease, transform 0.25s ease;
}

.map-card-link:hover {
    background-color: var(--clay-deep);
    transform: translateY(-2px);
}

@media (max-width: 900px) {
    .reservation-container {
        grid-template-columns: 1fr;
    }
}

/* ============================================
   FOOTER
============================================ */
.site-footer {
    background: var(--ink);
    color: rgba(255, 255, 255, 0.85);
    padding: 50px 20px;
    text-align: center;
}

.footer-inner {
    max-width: 700px;
    margin: 0 auto;
}

.logo-mark-footer {
    margin: 0 auto 12px;
    color: #fff;
    border-color: rgba(255, 255, 255, 0.5);
}

.footer-logo {
    font-family: var(--font-display);
    font-style: italic;
    font-weight: 600;
    font-size: 1.4rem;
    color: #fff;
    margin-bottom: 10px;
}

.footer-logo em {
    font-style: normal;
    font-weight: 400;
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.65);
    font-family: var(--font-body);
}

.site-footer p {
    margin: 4px 0;
    font-size: 0.9rem;
}

.site-footer a {
    text-decoration: none;
    color: rgba(255, 255, 255, 0.85);
}

.site-footer a:hover {
    color: #fff;
}

.footer-note {
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.8rem;
    margin-top: 10px;
}

.footer-legal-links {
    margin-top: 14px;
    font-size: 0.8rem;
}

.footer-legal-links a {
    color: rgba(255, 255, 255, 0.6);
}

.footer-legal-links a:hover {
    color: #fff;
}

/* Pages Mentions légales / Politique de confidentialité */
.legal-page {
    padding: 140px 20px 80px;
    max-width: 760px;
    margin: 0 auto;
}

.legal-page h1 {
    font-family: var(--font-display);
    font-size: 2.4rem;
    font-weight: 500;
    color: var(--ink);
    margin-bottom: 18px;
}

.legal-page h2 {
    font-family: var(--font-display);
    font-size: 1.3rem;
    font-weight: 600;
    color: var(--ink);
    margin: 34px 0 10px;
}

.legal-page p {
    font-size: 1rem;
    line-height: 1.6;
    color: var(--ink-soft);
    text-align: justify;
}

.legal-updated {
    margin-top: 40px;
    font-size: 0.85rem;
    color: var(--ink-soft);
    opacity: 0.7;
    text-align: left !important;
}