/* ==========================================================================
   Fleur de Lys — Esthéticienne à domicile (Vernouillet, 78)
   Palette issue du logo : crème / vert sauge / corail
   ========================================================================== */

:root {
    --cream: #FBF7EF;          /* fond principal */
    --cream-deep: #F5EDDE;     /* header, fonds alternés */
    --blush: #F8EDE6;          /* sections alternées */
    --white-warm: #FFFDF9;
    --sage: #3F4A36;           /* titres, texte fort */
    --sage-soft: #6E7663;      /* texte secondaire */
    --ink: #4B473A;            /* texte courant */
    --coral: #C97C58;          /* accent / boutons */
    --coral-hover: #B26947;
    --coral-light: #EBA07A;    /* ornements */
    --gold: #DFA53C;           /* étoiles */
    --line: rgba(63, 74, 54, 0.14);
    --shadow-soft: 0 18px 45px rgba(75, 60, 40, 0.10);
    --shadow-card: 0 8px 28px rgba(75, 60, 40, 0.08);
    --radius: 20px;
    --font-serif: "Poppins", "Jost", "Segoe UI", Arial, sans-serif;
    --font-sans: "Jost", "Segoe UI", Helvetica, Arial, sans-serif;
    --font-script: "Sacramento", cursive;
    --header-h: 86px;
}

/* ---------- Base ---------- */

*,
*::before,
*::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-sans);
    font-weight: 400;
    font-size: 1.03rem;
    line-height: 1.7;
    color: var(--ink);
    background: var(--cream);
    -webkit-font-smoothing: antialiased;
}

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

a {
    color: var(--coral);
    text-decoration: none;
}

section {
    scroll-margin-top: calc(var(--header-h) + 12px);
}

.container {
    max-width: 1140px;
    margin: 0 auto;
    padding: 0 24px;
}

.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0 0 0 0);
    white-space: nowrap;
    border: 0;
}

.skip-link {
    position: absolute;
    top: -60px;
    left: 16px;
    z-index: 3000;
    padding: 10px 18px;
    background: var(--sage);
    color: #fff;
    border-radius: 0 0 10px 10px;
    transition: top 0.2s ease;
}

.skip-link:focus {
    top: 0;
}

/* ---------- Typographie ---------- */

h1, h2, h3 {
    font-family: var(--font-serif);
    color: var(--sage);
    font-weight: 600;
    line-height: 1.18;
}

.overline {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    font-size: 0.8rem;
    font-weight: 500;
    letter-spacing: 0.24em;
    text-transform: uppercase;
    color: var(--coral);
}

.overline::before {
    content: "";
    width: 34px;
    height: 1px;
    background: var(--coral-light);
}

.section-head {
    text-align: center;
    max-width: 640px;
    margin: 0 auto 3.2rem;
}

.section-head .overline::after {
    content: "";
    width: 34px;
    height: 1px;
    background: var(--coral-light);
}

.section-head h2 {
    font-size: clamp(2rem, 4vw, 2.7rem);
    margin: 0.55rem 0 0.4rem;
}

.section-head p {
    color: var(--sage-soft);
}

.flower-divider {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 14px;
    margin: 0.65rem auto 0.9rem;
    color: var(--coral-light);
    font-size: 1.05rem;
    line-height: 1;
}

.flower-divider::before,
.flower-divider::after {
    content: "";
    width: 52px;
    height: 1px;
    background: rgba(63, 74, 54, 0.28);
}

/* ---------- Boutons ---------- */

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 0.85rem 1.8rem;
    border-radius: 999px;
    font-family: var(--font-sans);
    font-size: 0.98rem;
    font-weight: 500;
    letter-spacing: 0.02em;
    cursor: pointer;
    border: 1.5px solid transparent;
    transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease, color 0.2s ease;
}

.btn-primary {
    background: var(--coral);
    color: #fff;
    box-shadow: 0 10px 24px rgba(201, 124, 88, 0.35);
}

.btn-primary:hover {
    background: var(--coral-hover);
    transform: translateY(-2px);
}

.btn-outline {
    border-color: rgba(63, 74, 54, 0.45);
    color: var(--sage);
    background: transparent;
}

.btn-outline:hover {
    background: var(--sage);
    color: var(--cream);
    transform: translateY(-2px);
}

/* ---------- Header ---------- */

.site-header {
    position: sticky;
    top: 0;
    z-index: 1000;
    background: rgba(251, 247, 239, 0.92);
    -webkit-backdrop-filter: blur(8px);
    backdrop-filter: blur(8px);
    border-bottom: 1px solid var(--line);
}

.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1.5rem;
    min-height: var(--header-h);
}

.brand {
    display: inline-flex;
    align-items: center;
    gap: 0.8rem;
    text-decoration: none;
}

.brand img {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid rgba(63, 74, 54, 0.12);
}

.brand-signature {
    display: flex;
    flex-direction: column;
    align-items: center;
    line-height: 1;
}

.brand-name {
    font-family: var(--font-script);
    font-size: 2.1rem;
    color: var(--sage);
    white-space: nowrap;
    line-height: 1.1;
}

.brand-divider {
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    align-items: center;
    gap: 8px;
    width: 120px;
    margin: -2px 0 4px;
}

.brand-divider::before,
.brand-divider::after {
    content: "";
    height: 1px;
    background: rgba(63, 74, 54, 0.35);
}

.brand-divider span {
    color: var(--coral-light);
    font-size: 0.9rem;
    line-height: 1;
}

.brand-tagline {
    font-size: 0.6rem;
    font-weight: 500;
    letter-spacing: 0.28em;
    text-transform: uppercase;
    color: var(--sage-soft);
    white-space: nowrap;
}

.main-nav {
    display: flex;
    align-items: center;
    gap: 1.9rem;
}

.main-nav a:not(.btn) {
    position: relative;
    color: var(--sage);
    font-weight: 400;
    font-size: 1rem;
    padding: 4px 0;
}

.main-nav a:not(.btn)::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -2px;
    width: 0;
    height: 1.5px;
    background: var(--coral);
    transition: width 0.25s ease;
}

.main-nav a:not(.btn):hover::after {
    width: 100%;
}

.main-nav .btn {
    padding: 0.6rem 1.4rem;
    font-size: 0.92rem;
}

.nav-toggle {
    display: none;
    flex-direction: column;
    justify-content: center;
    gap: 5px;
    width: 44px;
    height: 44px;
    padding: 10px;
    background: transparent;
    border: 1px solid var(--line);
    border-radius: 10px;
    cursor: pointer;
}

.nav-toggle span {
    display: block;
    height: 2px;
    width: 100%;
    background: var(--sage);
    border-radius: 2px;
    transition: transform 0.25s ease, opacity 0.25s ease;
}

.nav-toggle[aria-expanded="true"] span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
}

.nav-toggle[aria-expanded="true"] span:nth-child(2) {
    opacity: 0;
}

.nav-toggle[aria-expanded="true"] span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
}

/* ---------- Bandeau d'information ---------- */

.announcement-banner[data-enabled="false"] {
    display: none;
}

.announcement-banner {
    color: var(--cream);
    background: var(--sage);
    border-bottom: 1px solid rgba(251, 247, 239, 0.18);
}

.announcement-inner {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.85rem;
    min-height: 52px;
    padding-top: 0.65rem;
    padding-bottom: 0.65rem;
    text-align: center;
}

.announcement-banner p {
    line-height: 1.4;
}

.announcement-banner strong {
    color: var(--coral-light);
    font-weight: 600;
}

.announcement-icon {
    flex: 0 0 auto;
    color: var(--coral-light);
    font-size: 0.9rem;
}

/* ---------- Hero ---------- */

.hero {
    position: relative;
    overflow: hidden;
    padding: 4.5rem 0 5.5rem;
    background:
        radial-gradient(680px 420px at 88% 8%, rgba(235, 160, 122, 0.16), transparent 70%),
        radial-gradient(560px 420px at 4% 92%, rgba(63, 74, 54, 0.07), transparent 70%),
        var(--cream);
}

.hero-grid {
    display: grid;
    grid-template-columns: 1.05fr 0.95fr;
    gap: 4rem;
    align-items: center;
}

.hero h1 {
    font-size: clamp(2.4rem, 5vw, 3.6rem);
    margin: 0.9rem 0 1.2rem;
}

.hero h1 em {
    font-style: italic;
    color: inherit;
}

.hero-lead {
    font-size: 1.12rem;
    color: var(--sage-soft);
    max-width: 34rem;
    margin-bottom: 2rem;
}

.hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    margin-bottom: 1.9rem;
}

.hero-trust {
    display: flex;
    flex-wrap: wrap;
    gap: 0.7rem;
}

.trust-chip {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 0.45rem 1rem;
    background: var(--white-warm);
    border: 1px solid var(--line);
    border-radius: 999px;
    font-size: 0.88rem;
    color: var(--sage);
}

.trust-chip .star {
    color: var(--gold);
}

.trust-chip .google-logo {
    width: 16px;
    height: 16px;
    flex-shrink: 0;
}

a.trust-chip:hover {
    border-color: var(--coral-light);
}

/* Carrousel héro */

.hero-visual {
    position: relative;
}

.hero-visual::before {
    content: "";
    position: absolute;
    inset: -18px -18px 30px 22px;
    border: 1px solid rgba(201, 124, 88, 0.35);
    border-radius: 999px 999px 26px 26px;
    pointer-events: none;
}

.carousel {
    position: relative;
    aspect-ratio: 10 / 11.5;
    max-height: 560px;
    width: 100%;
    border-radius: 999px 999px 26px 26px;
    overflow: hidden;
    box-shadow: var(--shadow-soft);
    background: var(--cream-deep);
}

.carousel-slide {
    position: absolute;
    inset: 0;
    opacity: 0;
    transition: opacity 0.9s ease-in-out;
}

.carousel-slide.active {
    opacity: 1;
}

.carousel-slide img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.carousel-dots {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-top: 18px;
}

.carousel-dots button {
    width: 9px;
    height: 9px;
    padding: 0;
    border: none;
    border-radius: 50%;
    background: rgba(63, 74, 54, 0.25);
    cursor: pointer;
    transition: transform 0.25s ease, background 0.25s ease;
}

.carousel-dots button.active {
    background: var(--coral);
    transform: scale(1.3);
}

/* ---------- À propos ---------- */

.about {
    padding: 5.5rem 0;
    background: var(--white-warm);
}

.about-grid {
    display: grid;
    grid-template-columns: 400px 1fr;
    gap: 4.5rem;
    align-items: center;
}

.about-portrait {
    position: relative;
}

.about-portrait::before {
    content: "";
    position: absolute;
    inset: 26px -22px -22px 26px;
    background: var(--blush);
    border-radius: 999px 999px 26px 26px;
}

.about-portrait img {
    position: relative;
    width: 100%;
    height: 520px;
    object-fit: cover;
    border-radius: 999px 999px 26px 26px;
    border: 6px solid #fff;
    box-shadow: var(--shadow-soft);
}

.about-content .overline {
    margin-bottom: 0.6rem;
}

.about-content h2 {
    font-size: clamp(1.9rem, 3.4vw, 2.5rem);
    margin-bottom: 1.2rem;
}

.about-content p {
    margin-bottom: 1rem;
}

.about-content p strong {
    color: var(--sage);
    font-weight: 500;
}

.about-features {
    list-style: none;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0.8rem 1.5rem;
    margin-top: 1.6rem;
}

.about-features li {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.97rem;
    color: var(--sage);
}

.about-features .tick {
    flex: 0 0 26px;
    width: 26px;
    height: 26px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: rgba(201, 124, 88, 0.14);
    color: var(--coral);
    border-radius: 50%;
    font-size: 0.8rem;
}

/* ---------- Avis Google ---------- */

.reviews {
    padding: 5.5rem 0;
    background: var(--blush);
}

.reviews-summary {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    gap: 14px;
    margin-bottom: 2.6rem;
}

.reviews-summary .google-logo {
    width: 30px;
    height: 30px;
}

.reviews-summary .score {
    font-family: var(--font-serif);
    font-size: 2.2rem;
    font-weight: 600;
    color: var(--sage);
    line-height: 1;
}

.reviews-summary .stars {
    color: var(--gold);
    font-size: 1.15rem;
    letter-spacing: 2px;
}

.reviews-summary .stars .empty {
    color: rgba(63, 74, 54, 0.2);
}

.reviews-summary .count-link {
    color: var(--sage-soft);
    font-size: 0.95rem;
    border-bottom: 1px dashed rgba(63, 74, 54, 0.35);
    transition: color 0.2s ease;
}

.reviews-summary .count-link:hover {
    color: var(--coral);
}

.reviews-carousel {
    position: relative;
}

.reviews-track {
    display: flex;
    gap: 1.3rem;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    padding: 6px 4px 18px;
    scrollbar-width: none;
}

.reviews-track::-webkit-scrollbar {
    display: none;
}

.review-card {
    flex: 0 0 min(360px, 82vw);
    scroll-snap-align: start;
    background: var(--white-warm);
    border: 1px solid var(--line);
    border-radius: var(--radius);
    padding: 1.7rem 1.7rem 1.4rem;
    box-shadow: var(--shadow-card);
    display: flex;
    flex-direction: column;
}

.review-card .review-stars {
    color: var(--gold);
    letter-spacing: 2px;
    font-size: 0.95rem;
    margin-bottom: 0.8rem;
}

.review-card .review-stars .empty {
    color: rgba(63, 74, 54, 0.2);
}

.review-card blockquote {
    font-size: 0.98rem;
    color: var(--ink);
    font-style: italic;
    flex: 1;
    display: -webkit-box;
    -webkit-line-clamp: 6;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.review-card blockquote.expanded {
    display: block;
    -webkit-line-clamp: unset;
}

.review-card .review-more {
    align-self: flex-start;
    margin-top: 4px;
    background: none;
    border: none;
    padding: 0;
    color: var(--coral);
    font-family: var(--font-sans);
    font-size: 0.85rem;
    cursor: pointer;
}

.review-card footer {
    margin-top: 1rem;
    padding-top: 0.9rem;
    border-top: 1px solid var(--line);
    display: flex;
    justify-content: space-between;
    align-items: baseline;
    gap: 1rem;
}

.review-card .review-author {
    font-weight: 500;
    color: var(--sage);
    font-size: 0.95rem;
}

.review-card .review-date {
    font-size: 0.82rem;
    color: var(--sage-soft);
    white-space: nowrap;
}

.reviews-nav {
    display: flex;
    justify-content: center;
    gap: 12px;
    margin-top: 0.6rem;
}

.reviews-nav button {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    border: 1px solid rgba(63, 74, 54, 0.3);
    background: transparent;
    color: var(--sage);
    font-size: 1.1rem;
    cursor: pointer;
    transition: all 0.2s ease;
}

.reviews-nav button:hover {
    background: var(--sage);
    color: var(--cream);
}

/* ---------- Prestations ---------- */

.prestations {
    padding: 5.5rem 0;
    background: var(--cream);
}

.presta-nav {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 0.7rem;
    margin-bottom: 2.8rem;
}

.presta-nav a {
    padding: 0.5rem 1.25rem;
    border: 1px solid rgba(63, 74, 54, 0.28);
    border-radius: 999px;
    color: var(--sage);
    font-size: 0.93rem;
    background: var(--white-warm);
    transition: all 0.2s ease;
}

.presta-nav a:hover {
    border-color: var(--coral);
    color: var(--coral);
}

.presta-card {
    background: var(--white-warm);
    border: 1px solid var(--line);
    border-radius: 24px;
    box-shadow: var(--shadow-card);
    padding: 2.6rem 2.8rem;
    margin-bottom: 2.2rem;
    scroll-margin-top: calc(var(--header-h) + 16px);
}

.presta-card > h3 {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 1.75rem;
    margin-bottom: 0.4rem;
}

.presta-card > h3 .bloom {
    color: var(--coral-light);
    font-size: 1.1rem;
}

.presta-note {
    color: var(--sage-soft);
    font-size: 0.95rem;
    margin-bottom: 1.6rem;
}

.price-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    column-gap: 3.4rem;
    row-gap: 0.15rem;
}

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

.price-row {
    display: flex;
    align-items: baseline;
    gap: 0.6rem;
    padding: 0.5rem 0;
    break-inside: avoid;
}

.price-name {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--ink);
}

.price-lead {
    flex: 1;
    border-bottom: 1px dotted rgba(63, 74, 54, 0.3);
    transform: translateY(-4px);
    min-width: 18px;
}

.price-time {
    font-size: 0.82rem;
    color: var(--sage-soft);
    white-space: nowrap;
}

.price-value {
    font-weight: 600;
    color: var(--sage);
    white-space: nowrap;
    min-width: 44px;
    text-align: right;
}

.info-btn {
    flex: 0 0 auto;
    width: 21px;
    height: 21px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border: none;
    border-radius: 50%;
    background: rgba(201, 124, 88, 0.16);
    color: var(--coral);
    font-size: 0.72rem;
    font-weight: 600;
    font-family: var(--font-sans);
    cursor: pointer;
    transition: all 0.2s ease;
}

.info-btn:hover {
    background: var(--coral);
    color: #fff;
    transform: scale(1.12);
}

.forfaits {
    margin-top: 1.8rem;
    background: var(--blush);
    border-radius: 16px;
    padding: 1.4rem 1.6rem 1.1rem;
}

.forfaits h4 {
    font-family: var(--font-sans);
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--coral);
    margin-bottom: 0.5rem;
}

/* ---------- Infos pratiques ---------- */

.infos {
    padding: 5.5rem 0;
    background: var(--white-warm);
}

.infos-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 1.4rem;
}

.info-card {
    background: var(--cream);
    border: 1px solid var(--line);
    border-radius: var(--radius);
    padding: 1.7rem 1.6rem;
}

.info-card .icon {
    width: 46px;
    height: 46px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(201, 124, 88, 0.14);
    color: var(--coral);
    border-radius: 14px;
    margin-bottom: 1rem;
}

.info-card .icon svg {
    width: 22px;
    height: 22px;
}

.info-card h3 {
    font-family: var(--font-sans);
    font-size: 1.02rem;
    font-weight: 600;
    color: var(--sage);
    margin-bottom: 0.4rem;
}

.info-card p {
    font-size: 0.94rem;
    color: var(--sage-soft);
}

/* ---------- Contact ---------- */

.contact {
    padding: 5.5rem 0;
    background: var(--blush);
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1.1fr;
    gap: 2.4rem;
    align-items: stretch;
}

.contact-card {
    background: var(--white-warm);
    border: 1px solid var(--line);
    border-radius: 24px;
    box-shadow: var(--shadow-card);
    padding: 2.4rem 2.4rem 2.2rem;
}

.contact-card h3 {
    font-size: 1.55rem;
    margin-bottom: 1.3rem;
}

.contact-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0.9rem;
    margin-bottom: 1.6rem;
}

.contact-list li {
    display: flex;
    align-items: center;
    gap: 12px;
}

.contact-list .icon {
    flex: 0 0 40px;
    width: 40px;
    height: 40px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: rgba(63, 74, 54, 0.08);
    border-radius: 12px;
    color: var(--sage);
}

.contact-list .icon svg,
.contact-list .icon img {
    width: 19px;
    height: 19px;
}

.contact-list a {
    color: var(--ink);
    transition: color 0.2s ease;
}

.contact-list a:hover {
    color: var(--coral);
}

.contact-list small {
    display: block;
    font-size: 0.78rem;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--sage-soft);
}

.notice {
    background: rgba(201, 124, 88, 0.1);
    border-left: 3px solid var(--coral);
    border-radius: 0 12px 12px 0;
    padding: 0.8rem 1.1rem;
    font-size: 0.93rem;
    color: var(--sage);
    margin-bottom: 1.7rem;
}

.booksy-zone {
    text-align: center;
    padding: 0.4rem 0 0.2rem;
}

/* Bouton natif Booksy masqué : remplacé par notre bouton « Prendre RDV »,
   qui ouvre la même fenêtre de réservation (voir data-booksy dans main.js) */
.booksy-zone .booksy-widget-container {
    display: none;
}

.giftcard {
    margin-top: 1.7rem;
    border: 1.5px dashed rgba(201, 124, 88, 0.5);
    border-radius: 16px;
    padding: 1.3rem 1.4rem;
    text-align: center;
}

.giftcard h4 {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 9px;
    font-family: var(--font-serif);
    font-size: 1.25rem;
    color: var(--sage);
    margin-bottom: 0.35rem;
}

.giftcard-icon {
    width: 32px;
    height: 32px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex: 0 0 32px;
    border-radius: 10px;
    background: rgba(201, 124, 88, 0.14);
    color: var(--coral);
}

.giftcard-icon svg {
    width: 18px;
    height: 18px;
}

.giftcard p {
    font-size: 0.93rem;
    color: var(--sage-soft);
    margin-bottom: 0.9rem;
}

.contact-map {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.contact-map .address-line {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 1.05rem;
}

.contact-map .address-line svg {
    flex: 0 0 20px;
    width: 20px;
    height: 20px;
    color: var(--coral);
}

.contact-map .address-line a {
    color: var(--sage);
    border-bottom: 1px solid rgba(201, 124, 88, 0.4);
    transition: color 0.2s ease, border-color 0.2s ease;
}

.contact-map .address-line a:hover {
    color: var(--coral);
    border-color: var(--coral);
}

.contact-map iframe {
    flex: 1;
    width: 100%;
    min-height: 420px;
    border: 0;
    border-radius: var(--radius);
    box-shadow: var(--shadow-card);
}

/* ---------- Footer ---------- */

.site-footer {
    background: var(--sage);
    color: rgba(251, 247, 239, 0.85);
    padding: 3.6rem 0 1.6rem;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.3fr 1fr 1fr;
    gap: 2.5rem;
    padding-bottom: 2.4rem;
    border-bottom: 1px solid rgba(251, 247, 239, 0.16);
}

.footer-brand .brand-name {
    color: var(--cream);
    font-size: 2.3rem;
}

.footer-brand p {
    font-size: 0.93rem;
    max-width: 30rem;
    margin-top: 0.5rem;
}

.site-footer h4 {
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--coral-light);
    margin-bottom: 0.9rem;
}

.site-footer ul {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0.45rem;
}

.site-footer ul a,
.site-footer address a {
    color: rgba(251, 247, 239, 0.85);
    transition: color 0.2s ease;
}

.site-footer ul a:hover,
.site-footer address a:hover {
    color: var(--coral-light);
}

.site-footer address {
    font-style: normal;
    font-size: 0.95rem;
    line-height: 1.9;
}

.footer-bottom {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    gap: 0.8rem;
    padding-top: 1.5rem;
    font-size: 0.88rem;
    color: rgba(251, 247, 239, 0.6);
}

.footer-bottom button {
    background: none;
    border: none;
    padding: 0;
    color: rgba(251, 247, 239, 0.75);
    font-family: var(--font-sans);
    font-size: 0.88rem;
    cursor: pointer;
    border-bottom: 1px dashed rgba(251, 247, 239, 0.4);
    transition: color 0.2s ease;
}

.footer-bottom button:hover {
    color: var(--coral-light);
}

/* ---------- Dialogs ---------- */

dialog {
    position: fixed;
    inset: 0;
    margin: auto;
    border: none;
    border-radius: 22px;
    padding: 0;
    max-width: min(430px, calc(100vw - 40px));
    width: 100%;
    max-height: 90vh;
    background: var(--cream);
    color: var(--ink);
    box-shadow: 0 30px 80px rgba(40, 35, 25, 0.35);
}

dialog.dialog-wide {
    max-width: min(640px, calc(100vw - 40px));
}

dialog::backdrop {
    background: rgba(40, 35, 25, 0.55);
}

.dialog-inner {
    padding: 2rem 2rem 1.8rem;
    max-height: 85vh;
    overflow-y: auto;
}

.dialog-close {
    position: absolute;
    top: 12px;
    right: 12px;
    width: 38px;
    height: 38px;
    border: none;
    border-radius: 50%;
    background: rgba(63, 74, 54, 0.08);
    color: var(--sage);
    font-size: 1.15rem;
    line-height: 1;
    cursor: pointer;
    transition: all 0.2s ease;
}

.dialog-close:hover {
    background: var(--coral);
    color: #fff;
}

dialog h3 {
    font-size: 1.5rem;
    margin-bottom: 0.9rem;
    padding-right: 2rem;
}

#prestaDialogImg {
    width: 100%;
    max-width: 320px;
    margin: 0 auto 1rem;
    border-radius: 14px;
}

.legal-block {
    background: var(--white-warm);
    border: 1px solid var(--line);
    border-radius: 14px;
    padding: 1.3rem 1.4rem;
    margin-bottom: 1.1rem;
    font-size: 0.95rem;
}

.legal-block h4 {
    font-family: var(--font-sans);
    font-size: 1rem;
    font-weight: 600;
    color: var(--sage);
    margin-bottom: 0.7rem;
}

.legal-block dl {
    display: grid;
    grid-template-columns: 130px 1fr;
    gap: 0.45rem 1rem;
}

.legal-block dt {
    font-weight: 500;
    color: var(--coral);
}

.legal-block dd {
    margin: 0;
}

.legal-block p {
    margin-bottom: 0.7rem;
}

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

/* ---------- Animations d'apparition ---------- */

.reveal {
    opacity: 0;
    transform: translateY(22px);
    transition: opacity 0.7s ease, transform 0.7s ease;
}

.reveal.visible {
    opacity: 1;
    transform: none;
}

@media (prefers-reduced-motion: reduce) {
    html {
        scroll-behavior: auto;
    }

    .reveal {
        opacity: 1;
        transform: none;
        transition: none;
    }

    .carousel-slide {
        transition: none;
    }
}

/* ---------- Responsive ---------- */

@media (max-width: 1024px) {
    .hero-grid {
        gap: 2.5rem;
    }

    .about-grid {
        grid-template-columns: 340px 1fr;
        gap: 3rem;
    }

    .main-nav {
        gap: 1.2rem;
    }

    .presta-card {
        padding: 2rem;
    }

    .price-grid {
        column-gap: 2.2rem;
    }
}

@media (max-width: 860px) {
    :root {
        --header-h: 74px;
    }

    .hero-trust {
        flex-wrap: nowrap;
    }

    .hero-trust .trust-chip {
        white-space: nowrap;
    }

    .nav-toggle {
        display: flex;
    }

    .main-nav {
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        flex-direction: column;
        align-items: stretch;
        gap: 0;
        background: var(--cream);
        border-bottom: 1px solid var(--line);
        box-shadow: 0 24px 40px rgba(75, 60, 40, 0.12);
        padding: 0.6rem 24px 1.2rem;
        display: none;
    }

    .main-nav.open {
        display: flex;
    }

    .main-nav a:not(.btn) {
        padding: 0.85rem 4px;
        border-bottom: 1px solid var(--line);
        font-size: 1.05rem;
    }

    .main-nav a:not(.btn)::after {
        display: none;
    }

    .main-nav .btn {
        margin-top: 1rem;
        justify-content: center;
    }

    .hero {
        padding: 2.8rem 0 4rem;
    }

    .hero-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .hero-visual {
        display: none;
    }

    .carousel {
        aspect-ratio: 10 / 9.5;
    }

    .hero h1 {
        margin-top: 0.7rem;
    }

    .about-grid {
        grid-template-columns: 1fr;
        gap: 3.4rem;
    }

    .about-portrait {
        max-width: 360px;
        margin: 0 auto;
    }

    .about-portrait img {
        height: 460px;
    }

    .price-grid {
        grid-template-columns: 1fr;
    }

    .contact-grid {
        grid-template-columns: 1fr;
    }

    .contact-map iframe {
        min-height: 340px;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        gap: 1.9rem;
    }
}

@media (max-width: 520px) {
    .announcement-inner {
        min-height: 0;
        padding: 0.7rem 18px;
        font-size: 0.9rem;
    }

    .announcement-banner p {
        width: 100%;
        line-height: 1.35;
    }

    .announcement-wishes {
        display: block;
        margin-top: 0.12rem;
    }

    .announcement-icon {
        display: none;
    }

    body {
        font-size: 1rem;
    }

    .hero-trust {
        gap: 0.4rem;
    }

    .hero-trust .trust-chip {
        gap: 5px;
        padding: 0.4rem 0.55rem;
        font-size: 0.76rem;
    }

    .brand img {
        width: 50px;
        height: 50px;
    }

    .brand-name {
        font-size: 1.7rem;
    }

    .brand-divider {
        width: 96px;
    }

    .brand-tagline {
        font-size: 0.5rem;
    }

    .hero-actions .btn {
        flex: 1 1 100%;
    }

    .presta-card {
        padding: 1.5rem 1.2rem;
        border-radius: 18px;
    }

    .forfaits {
        padding: 1.1rem 1rem 0.9rem;
    }

    .price-row {
        flex-wrap: wrap;
        row-gap: 0.1rem;
    }

    .price-time {
        font-size: 0.78rem;
    }

    .contact-card {
        padding: 1.7rem 1.4rem;
    }

    .dialog-inner {
        padding: 1.6rem 1.3rem 1.4rem;
    }

    .legal-block dl {
        grid-template-columns: 1fr;
        gap: 0.15rem;
    }

    .legal-block dt {
        margin-top: 0.55rem;
    }
}
