/* =========================================================
   Blondi Gallery — Feuille de styles
   Palette naturelle : sable / taupe / terracotta
   ========================================================= */

:root {
    /* Palette */
    --sand:        #f4ede3;
    --cream:       #fbf8f2;
    --taupe:       #9a8775;
    --taupe-dark:  #5f5346;
    --taupe-deep:  #463d33;
    --terracotta:  #bf6f4e;
    --terracotta-dark: #a85d3e;
    --ink:         #3b342c;
    --muted:       #8c8175;

    /* Typo */
    --font-serif: "Cormorant Garamond", Georgia, serif;
    --font-sans:  "Jost", "Helvetica Neue", Arial, sans-serif;

    /* Divers */
    --header-h: 88px;
    --max-w: 1280px;
    --ease: cubic-bezier(0.4, 0, 0.2, 1);
}

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

html { scroll-behavior: smooth; }

body {
    font-family: var(--font-sans);
    font-weight: 300;
    color: var(--ink);
    background: var(--cream);
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
}

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

a { color: inherit; text-decoration: none; }

/* =========================================================
   Boutons
   ========================================================= */
.btn {
    display: inline-block;
    font-family: var(--font-sans);
    font-size: 0.78rem;
    font-weight: 400;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    padding: 0.9em 1.8em;
    border-radius: 2px;
    cursor: pointer;
    transition: all 0.35s var(--ease);
    border: 1px solid transparent;
    text-align: center;
}

.btn-primary {
    background: var(--terracotta);
    color: var(--cream);
}
.btn-primary:hover {
    background: var(--terracotta-dark);
}

.btn-outline {
    background: transparent;
    border-color: var(--taupe);
    color: var(--taupe-dark);
}
.btn-outline:hover {
    background: var(--taupe);
    color: var(--cream);
}

.btn-light {
    background: transparent;
    border-color: rgba(251, 248, 242, 0.65);
    color: var(--cream);
}
.btn-light:hover {
    background: rgba(251, 248, 242, 0.14);
    border-color: var(--cream);
}

.btn-cream {
    background: var(--cream);
    color: var(--ink);
}
.btn-cream:hover {
    background: #fff;
}

/* =========================================================
   Header
   ========================================================= */
.site-header {
    position: fixed;
    top: 0; left: 0; right: 0;
    z-index: 100;
    background: transparent;
    border-bottom: 1px solid transparent;
    transition: background 0.4s var(--ease), border-color 0.4s var(--ease);
}

/* Voile dégradé pour garder le logo/menu lisibles sur le hero clair */
.site-header::before {
    content: "";
    position: absolute;
    inset: 0 0 auto 0;
    height: 180px;
    background: linear-gradient(to bottom, rgba(40, 35, 28, 0.55), rgba(40, 35, 28, 0));
    pointer-events: none;
    z-index: -1;
    opacity: 1;
    transition: opacity 0.4s var(--ease);
}

/* Au scroll : fond plein taupe */
.site-header.scrolled {
    background: rgba(70, 61, 51, 0.92);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-bottom-color: rgba(255, 255, 255, 0.08);
}
.site-header.scrolled::before { opacity: 0; }

.header-inner {
    max-width: var(--max-w);
    margin: 0 auto;
    height: var(--header-h);
    padding: 0 2rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    transition: height 0.4s var(--ease);
}

.site-header.scrolled .header-inner { height: 70px; }

/* Logo */
.header-logo {
    display: flex;
    align-items: center;
    flex-shrink: 0;
}
.header-logo img {
    height: 82px;
    width: auto;
    transition: height 0.4s var(--ease);
}
.site-header.scrolled .header-logo img { height: 60px; }

/* Navigation desktop */
.header-nav { margin-left: auto; }

.nav-list {
    display: flex;
    align-items: center;
    gap: 2.4rem;
    list-style: none;
}
.nav-list a {
    position: relative;
    font-size: 0.8rem;
    font-weight: 300;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: rgba(251, 248, 242, 0.85);
    padding: 0.4rem 0;
    transition: color 0.3s var(--ease);
}
.nav-list a::after {
    content: "";
    position: absolute;
    left: 0; bottom: 0;
    width: 0; height: 1px;
    background: var(--terracotta);
    transition: width 0.35s var(--ease);
}
.nav-list a:hover,
.nav-list a.active { color: var(--cream); }
.nav-list a:hover::after,
.nav-list a.active::after { width: 100%; }

/* Actions */
.header-actions {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    margin-left: 2.4rem;
}
.header-cta { white-space: nowrap; }

/* Burger */
.burger {
    display: none;
    flex-direction: column;
    justify-content: center;
    gap: 5px;
    width: 30px;
    height: 30px;
    background: none;
    border: none;
    cursor: pointer;
}
.burger span {
    display: block;
    width: 100%;
    height: 1.5px;
    background: var(--cream);
    transition: transform 0.35s var(--ease), opacity 0.35s var(--ease);
}
.burger.open span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
.burger.open span:nth-child(2) { opacity: 0; }
.burger.open span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }

/* =========================================================
   Hero
   ========================================================= */
.hero {
    position: relative;
    min-height: 100vh;
    min-height: 100svh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    background: var(--taupe-dark);
    overflow: hidden;
}

/* Bandeau de photos qui défile (Swiper) */
.hero-slider {
    position: absolute;
    inset: 0;
    z-index: 0;
}
.hero-slider .swiper-slide {
    background-color: var(--taupe-dark);
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
}

/* Voile pour la lisibilité du texte par-dessus la photo */
.hero::after {
    content: "";
    position: absolute;
    inset: 0;
    z-index: 1;
    background: linear-gradient(to bottom, rgba(40, 35, 28, 0.55) 0%, rgba(40, 35, 28, 0.42) 45%, rgba(40, 35, 28, 0.62) 100%);
    pointer-events: none;
}

/* Flèches de navigation du hero */
.hero-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 3;
    width: 52px;
    height: 52px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(251, 248, 242, 0.55);
    border-radius: 50%;
    background: rgba(40, 35, 28, 0.18);
    color: var(--cream);
    cursor: pointer;
    backdrop-filter: blur(2px);
    transition: background 0.35s var(--ease), border-color 0.35s var(--ease), opacity 0.35s var(--ease);
}
.hero-nav svg {
    width: 22px;
    height: 22px;
    fill: none;
    stroke: currentColor;
    stroke-width: 1.6;
    stroke-linecap: round;
    stroke-linejoin: round;
}
.hero-nav:hover {
    background: rgba(40, 35, 28, 0.42);
    border-color: var(--cream);
}
.hero-prev { left: clamp(1rem, 3vw, 2.5rem); }
.hero-next { right: clamp(1rem, 3vw, 2.5rem); }
@media (max-width: 640px) {
    .hero-nav {
        width: 42px;
        height: 42px;
        top: auto;
        bottom: clamp(1.6rem, 6vw, 2.4rem);
        transform: none;
    }
    .hero-nav svg { width: 18px; height: 18px; }
    .hero-prev { left: calc(50% - 54px); right: auto; }
    .hero-next { right: calc(50% - 54px); left: auto; }
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 760px;
    padding: 0 1.5rem;
    color: var(--cream);
    animation: heroIn 1.2s var(--ease) both;
}

.hero-eyebrow {
    font-size: 0.78rem;
    font-weight: 400;
    letter-spacing: 0.32em;
    text-transform: uppercase;
    color: var(--sand);
    margin-bottom: 1.5rem;
}

.hero-title {
    font-family: var(--font-serif);
    font-weight: 500;
    font-size: clamp(3.4rem, 8vw, 6.4rem);
    line-height: 1.05;
    letter-spacing: 0.01em;
    margin-bottom: 1rem;
    text-shadow: 0 2px 24px rgba(40, 35, 28, 0.35);
}

.hero-tagline {
    font-family: var(--font-serif);
    font-style: italic;
    font-weight: 400;
    font-size: clamp(1.4rem, 3vw, 2.1rem);
    line-height: 1.3;
    color: var(--cream);
    margin: 0 auto 1.4rem;
    max-width: 640px;
    text-shadow: 0 2px 18px rgba(40, 35, 28, 0.35);
}

.hero-sub {
    max-width: 540px;
    margin: 0 auto 2.4rem;
    font-size: 1.05rem;
    font-weight: 300;
    color: rgba(251, 248, 242, 0.92);
    text-shadow: 0 1px 12px rgba(40, 35, 28, 0.3);
}

.hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    justify-content: center;
}

@keyframes heroIn {
    from { opacity: 0; transform: translateY(24px); }
    to   { opacity: 1; transform: translateY(0); }
}

/* =========================================================
   Hero de page (pages secondaires)
   ========================================================= */
.page-hero {
    position: relative;
    text-align: center;
    color: var(--cream);
    background: var(--taupe-deep) center / cover no-repeat;
    padding: calc(var(--header-h) + clamp(3rem, 7vw, 6rem)) 1.5rem clamp(3.2rem, 7vw, 5.5rem);
    overflow: hidden;
}
/* Voile sur l'image de fond */
.page-hero::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(60, 52, 43, 0.78) 0%, rgba(40, 35, 28, 0.72) 100%);
    z-index: 0;
}
/* Petit trait déco terracotta */
.page-hero::after {
    content: "";
    position: absolute;
    left: 50%;
    bottom: clamp(1.8rem, 4vw, 2.6rem);
    transform: translateX(-50%);
    width: 48px;
    height: 1px;
    background: rgba(191, 111, 78, 0.95);
    z-index: 2;
}

.page-hero-content {
    position: relative;
    z-index: 2;
    max-width: 720px;
    margin: 0 auto;
    padding-bottom: 1rem;
    animation: heroIn 1s var(--ease) both;
}

.breadcrumb {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.6rem;
    font-size: 0.72rem;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: rgba(251, 248, 242, 0.6);
    margin-bottom: 1.4rem;
}
.breadcrumb a {
    color: rgba(251, 248, 242, 0.8);
    transition: color 0.3s var(--ease);
}
.breadcrumb a:hover { color: var(--terracotta); }

.page-hero-title {
    font-family: var(--font-serif);
    font-weight: 500;
    font-size: clamp(2.4rem, 5vw, 4rem);
    line-height: 1.08;
    margin-bottom: 1.1rem;
    text-shadow: 0 2px 20px rgba(40, 35, 28, 0.35);
}
.page-hero-text {
    font-size: 1.08rem;
    color: rgba(251, 248, 242, 0.88);
    max-width: 560px;
    margin: 0 auto;
}

/* =========================================================
   Sections génériques
   ========================================================= */
.section {
    padding: clamp(4.5rem, 9vw, 8rem) 0;
}

.container {
    max-width: var(--max-w);
    margin: 0 auto;
    padding: 0 2rem;
}

.eyebrow {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    font-size: 0.75rem;
    font-weight: 400;
    letter-spacing: 0.28em;
    text-transform: uppercase;
    color: var(--terracotta);
    margin-bottom: 1.3rem;
}
.eyebrow::before {
    content: "";
    width: 34px;
    height: 1px;
    background: var(--terracotta);
}

.section-title {
    font-family: var(--font-serif);
    font-weight: 500;
    font-size: clamp(2rem, 4vw, 3.2rem);
    line-height: 1.12;
    color: var(--ink);
    margin-bottom: 1.6rem;
}

/* Apparition au scroll */
[data-reveal] {
    opacity: 0;
    transform: translateY(28px);
    transition: opacity 0.9s var(--ease), transform 0.9s var(--ease);
}
[data-reveal].is-visible {
    opacity: 1;
    transform: translateY(0);
}

/* =========================================================
   Section À propos
   ========================================================= */
.about { background: var(--sand); }

.about-grid {
    display: grid;
    grid-template-columns: 0.9fr 1.1fr;
    gap: clamp(2.5rem, 6vw, 6rem);
    align-items: center;
}

.about-media {
    position: relative;
}
.about-media img {
    width: 100%;
    height: auto;
    position: relative;
    z-index: 1;
    border-radius: 2px;
}
/* Cadre décalé terracotta */
.about-media::before {
    content: "";
    position: absolute;
    inset: 26px -26px -26px 26px;
    border: 1px solid var(--terracotta);
    z-index: 0;
}

.about-text .lead {
    font-size: 1.18rem;
    color: var(--ink);
    margin-bottom: 1.4rem;
}
.about-text p {
    color: #5e554a;
    margin-bottom: 1.2rem;
}
.signature {
    font-family: var(--font-serif);
    font-style: italic;
    font-size: 1.6rem;
    color: var(--taupe-dark);
    margin-top: 0.4rem !important;
}
.about-cta { margin-top: 1.8rem; }

@media (max-width: 860px) {
    .about-grid { grid-template-columns: 1fr; }
    .about-media { max-width: 460px; margin: 0 auto; }
    .about-media::before { inset: 16px -16px -16px 16px; }
}

/* =========================================================
   Section Prestations (aperçu)
   ========================================================= */
.services { background: var(--cream); }

.services-head {
    max-width: 620px;
    margin: 0 auto clamp(2.5rem, 5vw, 4rem);
    text-align: center;
}
.eyebrow-center {
    justify-content: center;
}
.eyebrow-center::after {
    content: "";
    width: 34px;
    height: 1px;
    background: var(--terracotta);
}
.services-intro {
    color: #5e554a;
    font-size: 1.05rem;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
}

.service-card {
    display: flex;
    flex-direction: column;
    overflow: hidden;
    background: var(--sand);
    border: 1px solid transparent;
    border-radius: 2px;
    transition: transform 0.4s var(--ease), box-shadow 0.4s var(--ease), border-color 0.4s var(--ease);
}
.service-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 18px 40px rgba(70, 61, 51, 0.12);
    border-color: rgba(191, 111, 78, 0.35);
}

.service-media {
    aspect-ratio: 4 / 5;
    overflow: hidden;
    background: var(--taupe-dark);
}
.service-media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.7s var(--ease);
}
.service-card:hover .service-media img { transform: scale(1.05); }

.service-body {
    display: flex;
    flex-direction: column;
    flex-grow: 1;
    padding: 1.8rem 1.6rem 2rem;
}

.service-num {
    font-family: var(--font-serif);
    font-size: 1.1rem;
    color: var(--terracotta);
    letter-spacing: 0.1em;
    margin-bottom: 1.2rem;
}
.service-title {
    font-family: var(--font-serif);
    font-weight: 500;
    font-size: 1.7rem;
    color: var(--ink);
    margin-bottom: 0.8rem;
}
.service-desc {
    color: #5e554a;
    font-size: 0.95rem;
    margin-bottom: 1.4rem;
    flex-grow: 1;
}
.service-price {
    font-family: var(--font-serif);
    font-style: italic;
    font-size: 1.15rem;
    color: var(--taupe-dark);
    margin-bottom: 1.2rem;
}
.service-link {
    font-size: 0.72rem;
    font-weight: 400;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--ink);
    position: relative;
    align-self: flex-start;
    padding-bottom: 3px;
}
.service-link::after {
    content: "";
    position: absolute;
    left: 0; bottom: 0;
    width: 100%; height: 1px;
    background: var(--terracotta);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.35s var(--ease);
}
.service-card:hover .service-link::after { transform: scaleX(1); }

.services-cta {
    text-align: center;
    margin-top: clamp(2.5rem, 5vw, 4rem);
}

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

/* =========================================================
   Section Portfolio (teasing)
   ========================================================= */
.portfolio-teaser {
    background: var(--taupe-deep);
    color: var(--cream);
}

.portfolio-grid {
    display: grid;
    grid-template-columns: 1fr 0.85fr;
    gap: clamp(2.5rem, 7vw, 6rem);
    align-items: center;
}

.portfolio-text .eyebrow { color: var(--terracotta); }
.portfolio-text .section-title { color: var(--cream); }
.portfolio-text p {
    color: rgba(251, 248, 242, 0.78);
    font-size: 1.05rem;
    max-width: 420px;
}
.portfolio-cta { margin-top: 2rem; }

.portfolio-media {
    position: relative;
    margin: 0;
    max-width: 440px;
    justify-self: center;
}
.portfolio-media img {
    width: 100%;
    height: auto;
    position: relative;
    z-index: 1;
    border-radius: 2px;
}
.portfolio-media::before {
    content: "";
    position: absolute;
    inset: -22px 22px 22px -22px;
    border: 1px solid rgba(244, 237, 227, 0.35);
    z-index: 0;
}
.portfolio-media figcaption {
    position: absolute;
    z-index: 2;
    left: 1.2rem;
    bottom: 1.2rem;
    font-family: var(--font-serif);
    font-style: italic;
    font-size: 1.15rem;
    color: var(--cream);
    text-shadow: 0 2px 14px rgba(40, 35, 28, 0.6);
}

@media (max-width: 860px) {
    .portfolio-grid { grid-template-columns: 1fr; text-align: center; }
    .portfolio-text .eyebrow { justify-content: center; }
    .portfolio-text p { margin-left: auto; margin-right: auto; }
    .portfolio-media { order: -1; }
}

/* =========================================================
   Section Déroulé d'une séance
   ========================================================= */
.process { background: var(--sand); }

.process-head {
    max-width: 680px;
    margin: 0 auto clamp(3rem, 6vw, 5rem);
    text-align: center;
}
.process-intro {
    color: #5e554a;
    font-size: 1.05rem;
}

.process-steps {
    position: relative;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
}
/* Ligne reliant les étapes */
.process-steps::before {
    content: "";
    position: absolute;
    top: 38px;
    left: 12%;
    right: 12%;
    height: 1px;
    background: rgba(154, 135, 117, 0.4);
    z-index: 0;
}

.step {
    position: relative;
    z-index: 1;
    text-align: center;
}
.step-num {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 76px;
    height: 76px;
    margin-bottom: 1.6rem;
    border: 1px solid var(--terracotta);
    border-radius: 50%;
    background: var(--sand);
    font-family: var(--font-serif);
    font-size: 1.5rem;
    color: var(--terracotta);
    transition: background 0.4s var(--ease), color 0.4s var(--ease);
}
.step:hover .step-num {
    background: var(--terracotta);
    color: var(--cream);
}
.step-title {
    font-family: var(--font-serif);
    font-weight: 500;
    font-size: 1.5rem;
    color: var(--ink);
    margin-bottom: 0.7rem;
}
.step-desc {
    color: #5e554a;
    font-size: 0.95rem;
    max-width: 240px;
    margin: 0 auto;
}

.process-cta {
    text-align: center;
    margin-top: clamp(3rem, 6vw, 5rem);
}

@media (max-width: 860px) {
    .process-steps {
        grid-template-columns: 1fr;
        gap: 3rem;
        max-width: 420px;
        margin: 0 auto;
    }
    .process-steps::before {
        top: 38px;
        bottom: 38px;
        left: 50%;
        right: auto;
        width: 1px;
        height: auto;
        transform: translateX(-50%);
    }
}

/* =========================================================
   Section Blog (aperçu)
   ========================================================= */
.blog-preview { background: var(--cream); }

.blog-head {
    max-width: 620px;
    margin: 0 auto clamp(2.5rem, 5vw, 4rem);
    text-align: center;
}
.blog-intro {
    color: #5e554a;
    font-size: 1.05rem;
}

.blog-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.blog-card {
    display: flex;
    flex-direction: column;
    background: var(--sand);
    border-radius: 2px;
    overflow: hidden;
    transition: transform 0.4s var(--ease);
}
.blog-card:hover {
    transform: translateY(-6px);
}

.blog-media {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    aspect-ratio: 3 / 2;
    background: linear-gradient(135deg, var(--taupe-dark) 0%, var(--taupe-deep) 100%);
    overflow: hidden;
}
.blog-media-logo {
    width: 58%;
    max-width: 180px;
    opacity: 0.28;
    transition: transform 0.5s var(--ease), opacity 0.5s var(--ease);
}
.blog-card:hover .blog-media-logo {
    transform: scale(1.06);
    opacity: 0.4;
}
.blog-tag {
    position: absolute;
    top: 1rem;
    left: 1rem;
    font-size: 0.65rem;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--cream);
    background: rgba(191, 111, 78, 0.92);
    padding: 0.4em 0.9em;
    border-radius: 2px;
}

.blog-body {
    display: flex;
    flex-direction: column;
    flex-grow: 1;
    padding: 1.8rem 1.6rem 2rem;
}
.blog-meta {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    font-size: 0.68rem;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    margin-bottom: 0.9rem;
}
.blog-cat { color: var(--terracotta); }
.blog-date { color: var(--muted); }
.blog-date::before {
    content: "•";
    margin-right: 0.8rem;
    color: var(--muted);
}

.blog-title {
    font-family: var(--font-serif);
    font-weight: 500;
    font-size: 1.45rem;
    line-height: 1.25;
    margin-bottom: 0.8rem;
}
.blog-title a {
    color: var(--ink);
    transition: color 0.3s var(--ease);
}
.blog-title a:hover { color: var(--terracotta); }

.blog-excerpt {
    color: #5e554a;
    font-size: 0.95rem;
    margin-bottom: 1.4rem;
    flex-grow: 1;
}
.blog-link {
    font-size: 0.72rem;
    font-weight: 400;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--ink);
    position: relative;
    align-self: flex-start;
    padding-bottom: 3px;
}
.blog-link::after {
    content: "";
    position: absolute;
    left: 0; bottom: 0;
    width: 100%; height: 1px;
    background: var(--terracotta);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.35s var(--ease);
}
.blog-card:hover .blog-link::after { transform: scaleX(1); }

.blog-preview-cta {
    text-align: center;
    margin-top: clamp(2.5rem, 5vw, 4rem);
}

@media (max-width: 920px) {
    .blog-grid { grid-template-columns: 1fr; max-width: 440px; margin: 0 auto; }
}

/* =========================================================
   Section Témoignages
   ========================================================= */
.testimonials { background: var(--sand); }

.testimonials-head {
    text-align: center;
    margin-bottom: clamp(2.5rem, 5vw, 3.5rem);
}

.testimonials-swiper {
    max-width: 820px;
    margin: 0 auto;
    padding: 0 0.5rem;
}

.testimonial {
    margin: 0;
    padding: 0 clamp(0.5rem, 4vw, 3rem);
    text-align: center;
}
.testimonial-mark {
    display: block;
    font-family: var(--font-serif);
    font-size: 5rem;
    line-height: 0.6;
    color: var(--terracotta);
    opacity: 0.55;
    margin-bottom: 1.2rem;
}
.testimonial-text {
    font-family: var(--font-serif);
    font-style: italic;
    font-weight: 400;
    font-size: clamp(1.3rem, 2.6vw, 1.85rem);
    line-height: 1.45;
    color: var(--ink);
    margin-bottom: 2rem;
}
.testimonial-author {
    font-style: normal;
    display: flex;
    flex-direction: column;
    gap: 0.35rem;
    font-size: 0.95rem;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: var(--taupe-dark);
}
.testimonial-author span {
    font-size: 0.72rem;
    letter-spacing: 0.2em;
    color: var(--terracotta);
}

/* Contrôles */
.testimonials-controls {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1.6rem;
    margin-top: 2.8rem;
}
.swiper-button-prev-c,
.swiper-button-next-c {
    width: 44px;
    height: 44px;
    border: 1px solid var(--taupe);
    border-radius: 50%;
    background: transparent;
    cursor: pointer;
    position: relative;
    transition: background 0.35s var(--ease), border-color 0.35s var(--ease);
    flex-shrink: 0;
}
.swiper-button-prev-c::after,
.swiper-button-next-c::after {
    content: "";
    position: absolute;
    top: 50%; left: 50%;
    width: 9px; height: 9px;
    border-top: 1.5px solid var(--taupe-dark);
    border-right: 1.5px solid var(--taupe-dark);
    transition: border-color 0.35s var(--ease);
}
.swiper-button-prev-c::after {
    transform: translate(-30%, -50%) rotate(-135deg);
}
.swiper-button-next-c::after {
    transform: translate(-70%, -50%) rotate(45deg);
}
.swiper-button-prev-c:hover,
.swiper-button-next-c:hover {
    background: var(--terracotta);
    border-color: var(--terracotta);
}
.swiper-button-prev-c:hover::after,
.swiper-button-next-c:hover::after {
    border-color: var(--cream);
}

/* Pagination */
.testimonials-swiper .swiper-pagination {
    position: static;
    display: flex;
    align-items: center;
    gap: 0.6rem;
    width: auto;
}
.testimonials-swiper .swiper-pagination-bullet {
    width: 8px;
    height: 8px;
    background: var(--taupe);
    opacity: 0.4;
    transition: all 0.35s var(--ease);
}
.testimonials-swiper .swiper-pagination-bullet-active {
    background: var(--terracotta);
    opacity: 1;
    width: 26px;
    border-radius: 4px;
}

/* =========================================================
   Bandeau Photothérapie & Hypnose
   ========================================================= */
.wellbeing {
    background: linear-gradient(135deg, var(--terracotta) 0%, var(--terracotta-dark) 100%);
    color: var(--cream);
    position: relative;
    overflow: hidden;
}
.wellbeing::before {
    content: "";
    position: absolute;
    inset: 1.6rem;
    border: 1px solid rgba(251, 248, 242, 0.25);
    pointer-events: none;
}

.wellbeing-inner {
    text-align: center;
    max-width: 720px;
    position: relative;
    z-index: 1;
}
.eyebrow-light { color: rgba(251, 248, 242, 0.9); }
.eyebrow-light::before,
.eyebrow-light::after { background: rgba(251, 248, 242, 0.7); }

.wellbeing-title {
    font-family: var(--font-serif);
    font-weight: 500;
    font-size: clamp(2rem, 4.2vw, 3.2rem);
    line-height: 1.12;
    margin-bottom: 1.4rem;
}
.wellbeing-text {
    font-size: 1.1rem;
    color: rgba(251, 248, 242, 0.92);
    margin-bottom: 2.4rem;
}
.wellbeing-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    justify-content: center;
}

/* =========================================================
   CTA final
   ========================================================= */
.final-cta {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    min-height: 62vh;
    padding: clamp(5rem, 10vw, 9rem) 1.5rem;
    background: var(--taupe-deep) url("images/galerie/maeva-remy.webp") center 35% / cover no-repeat;
    color: var(--cream);
}
.final-cta::after {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(40, 35, 28, 0.58);
}

.final-cta-content {
    position: relative;
    z-index: 1;
    max-width: 700px;
}
.final-cta-title {
    font-family: var(--font-serif);
    font-weight: 500;
    font-size: clamp(2.2rem, 5vw, 4rem);
    line-height: 1.08;
    margin-bottom: 1.4rem;
    text-shadow: 0 2px 20px rgba(40, 35, 28, 0.4);
}
.final-cta-text {
    font-size: 1.1rem;
    color: rgba(251, 248, 242, 0.92);
    max-width: 520px;
    margin: 0 auto 2.4rem;
}
.final-cta-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    justify-content: center;
}

@media (min-width: 900px) {
    .final-cta { background-attachment: fixed; }
}

/* =========================================================
   Page Prestations
   ========================================================= */
.offers { background: var(--cream); }
.offers--alt { background: var(--sand); }

.offers-head {
    max-width: 640px;
    margin: 0 auto clamp(2.5rem, 5vw, 3.5rem);
    text-align: center;
}
.offers-intro {
    color: #5e554a;
    font-size: 1.05rem;
}

/* Mise en page éditoriale (texte + panneau tarif) */
.offer-split {
    display: grid;
    grid-template-columns: 1.15fr 0.85fr;
    gap: clamp(2.5rem, 6vw, 5.5rem);
    align-items: center;
}
.offer-editorial .lead {
    font-size: 1.2rem;
    color: var(--ink);
    margin-bottom: 1.3rem;
}
.offer-editorial-text {
    color: #5e554a;
    margin-bottom: 1.8rem;
}
.offer-quote {
    font-family: var(--font-serif);
    font-style: italic;
    font-size: 1.5rem;
    color: var(--taupe-dark);
    padding-left: 1.4rem;
    border-left: 2px solid var(--terracotta);
}

.offer-panel {
    background: var(--sand);
    border: 1px solid rgba(154, 135, 117, 0.3);
    border-radius: 2px;
    padding: clamp(2.2rem, 4vw, 3rem);
    text-align: center;
    position: relative;
}
.offer-panel-label {
    font-size: 0.72rem;
    letter-spacing: 0.24em;
    text-transform: uppercase;
    color: var(--terracotta);
}
.offer-panel-price {
    font-family: var(--font-serif);
    font-weight: 500;
    font-size: clamp(3.4rem, 8vw, 4.6rem);
    line-height: 1;
    color: var(--ink);
    margin: 0.8rem 0 0.2rem;
}
.offer-panel-price span {
    font-size: 0.4em;
    color: var(--terracotta);
    vertical-align: super;
    margin-left: 0.15em;
}
.offer-panel-sub {
    font-family: var(--font-serif);
    font-style: italic;
    font-size: 1.1rem;
    color: var(--muted);
    margin-bottom: 1.8rem;
    padding-bottom: 1.8rem;
    border-bottom: 1px solid rgba(154, 135, 117, 0.3);
}
.offer-check {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0.9rem;
    text-align: left;
    margin-bottom: 2rem;
}
.offer-check li {
    position: relative;
    padding-left: 1.8rem;
    color: #5e554a;
    font-size: 0.95rem;
}
.offer-check li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0.15em;
    width: 6px;
    height: 11px;
    border-right: 1.5px solid var(--terracotta);
    border-bottom: 1.5px solid var(--terracotta);
    transform: rotate(45deg);
}
.offer-panel-cta { width: 100%; }
.offer-panel-note {
    font-size: 0.85rem;
    font-style: italic;
    color: var(--muted);
    margin-bottom: 1.4rem;
}

@media (max-width: 860px) {
    .offer-split { grid-template-columns: 1fr; }
    .offer-panel { max-width: 460px; margin: 0 auto; }
}
@media (min-width: 861px) {
    .offer-split--reverse .offer-editorial { order: 2; }
    .offer-split--reverse .offer-panel { order: 1; }
}

/* Carte d'offre */
.offer-card {
    display: flex;
    flex-direction: column;
    padding: 2.4rem 2.2rem;
    background: var(--cream);
    border: 1px solid rgba(154, 135, 117, 0.25);
    border-radius: 2px;
    transition: transform 0.4s var(--ease), box-shadow 0.4s var(--ease);
}
.offers--alt .offer-card { background: var(--cream); }
.offer-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 18px 40px rgba(70, 61, 51, 0.1);
}
.offer-card--single {
    max-width: 620px;
    margin: 0 auto;
}

.offer-top {
    display: flex;
    align-items: baseline;
    justify-content: space-between;
    gap: 1rem;
    padding-bottom: 1.2rem;
    margin-bottom: 1.4rem;
    border-bottom: 1px solid rgba(154, 135, 117, 0.25);
}
.offer-name {
    font-family: var(--font-serif);
    font-weight: 500;
    font-size: 1.7rem;
    color: var(--ink);
}
.offer-price {
    font-family: var(--font-serif);
    font-style: italic;
    font-size: 1.4rem;
    color: var(--terracotta);
    white-space: nowrap;
}
.offer-desc {
    color: #5e554a;
    font-size: 0.98rem;
    margin-bottom: 1.4rem;
}
.offer-features {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0.7rem;
    margin-bottom: 1.6rem;
}
.offer-features li {
    position: relative;
    padding-left: 1.5rem;
    color: #5e554a;
    font-size: 0.95rem;
}
.offer-features li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0.55em;
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--terracotta);
}
.offer-note {
    font-size: 0.85rem;
    font-style: italic;
    color: var(--muted);
    margin-bottom: 1.4rem;
}
.offer-cta { align-self: flex-start; margin-top: auto; }

.offer-link {
    align-self: flex-start;
    margin-top: auto;
    font-size: 0.72rem;
    font-weight: 400;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--ink);
    position: relative;
    padding-bottom: 3px;
}
.offer-link::after {
    content: "";
    position: absolute;
    left: 0; bottom: 0;
    width: 100%; height: 1px;
    background: var(--terracotta);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.35s var(--ease);
}
.offer-card:hover .offer-link::after,
.offer-link:hover::after { transform: scaleX(1); }
.offer-link { transition: color 0.3s var(--ease); }
.offer-link:hover { color: var(--terracotta); }
.formula-card--featured .offer-link:hover { color: var(--sand); }

/* Grille mariage (formules) */
.formulas-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.8rem;
    align-items: stretch;
}
.formula-card {
    position: relative;
    display: flex;
    flex-direction: column;
    padding: 2.6rem 2rem 2.2rem;
    background: var(--cream);
    border: 1px solid rgba(154, 135, 117, 0.28);
    border-radius: 2px;
    text-align: center;
    transition: transform 0.4s var(--ease), box-shadow 0.4s var(--ease);
}
.formula-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 18px 40px rgba(70, 61, 51, 0.1);
}

.formula-roman {
    font-family: var(--font-serif);
    font-size: 1.4rem;
    letter-spacing: 0.1em;
    color: var(--terracotta);
    padding-bottom: 0.8rem;
    margin-bottom: 0.8rem;
    position: relative;
}
.formula-roman::after {
    content: "";
    position: absolute;
    left: 50%; bottom: 0;
    transform: translateX(-50%);
    width: 28px; height: 1px;
    background: rgba(191, 111, 78, 0.5);
}
.formula-name {
    font-family: var(--font-serif);
    font-weight: 500;
    font-size: 1.9rem;
    color: var(--ink);
    margin-bottom: 0.3rem;
}
.formula-tag {
    font-size: 0.72rem;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--terracotta);
    margin-bottom: 1.2rem;
}
.formula-desc {
    color: #5e554a;
    font-size: 0.95rem;
    margin-bottom: 1.6rem;
}
.formula-card .offer-check {
    margin-bottom: 1.8rem;
    text-align: left;
}

.formula-foot {
    margin-top: auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.9rem;
    padding-top: 1.6rem;
    border-top: 1px solid rgba(154, 135, 117, 0.28);
}
.formula-price {
    font-family: var(--font-serif);
    font-style: italic;
    font-size: 1.4rem;
    color: var(--taupe-dark);
}
.formula-foot .offer-link {
    align-self: center;
    margin-top: 0;
}

/* Formule mise en avant (carte sombre) */
.formula-card--featured {
    background: linear-gradient(150deg, var(--taupe-dark) 0%, var(--taupe-deep) 100%);
    border-color: transparent;
    box-shadow: 0 22px 50px rgba(70, 61, 51, 0.25);
}
.formula-card--featured .formula-name { color: var(--cream); }
.formula-card--featured .formula-desc { color: rgba(251, 248, 242, 0.78); }
.formula-card--featured .offer-check li { color: rgba(251, 248, 242, 0.82); }
.formula-card--featured .formula-price { color: var(--sand); }
.formula-card--featured .formula-foot { border-top-color: rgba(251, 248, 242, 0.18); }
.formula-card--featured .offer-link { color: var(--cream); }

.formula-badge {
    position: absolute;
    top: -0.85rem;
    left: 50%;
    transform: translateX(-50%);
    font-size: 0.64rem;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--cream);
    background: var(--terracotta);
    padding: 0.45em 1em;
    border-radius: 2px;
    white-space: nowrap;
}

/* Options (cartes) */
.options-wrap {
    margin-top: clamp(3rem, 6vw, 4.5rem);
}
.options-title {
    font-family: var(--font-serif);
    font-weight: 500;
    font-size: 1.6rem;
    color: var(--ink);
    text-align: center;
    margin-bottom: clamp(1.6rem, 3vw, 2.2rem);
}
.options-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
}
.option-card {
    display: flex;
    flex-direction: column;
    padding: 1.8rem 1.6rem;
    background: var(--cream);
    border: 1px solid rgba(154, 135, 117, 0.28);
    border-radius: 2px;
    transition: transform 0.4s var(--ease), box-shadow 0.4s var(--ease), border-color 0.4s var(--ease);
}
.option-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 16px 36px rgba(70, 61, 51, 0.1);
    border-color: rgba(191, 111, 78, 0.4);
}
.option-name {
    font-family: var(--font-serif);
    font-weight: 500;
    font-size: 1.3rem;
    color: var(--ink);
    margin-bottom: 0.6rem;
}
.option-desc {
    font-size: 0.92rem;
    color: #5e554a;
    margin-bottom: 1.4rem;
    flex-grow: 1;
}
.option-price {
    font-family: var(--font-serif);
    font-style: italic;
    font-size: 1.3rem;
    color: var(--terracotta);
    padding-top: 1rem;
    border-top: 1px solid rgba(154, 135, 117, 0.28);
}
.option-link {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    margin-top: 0.9rem;
    font-size: 0.78rem;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--terracotta);
    transition: color 0.3s var(--ease);
}
.option-link::after {
    content: "→";
    transition: transform 0.3s var(--ease);
}
.option-link:hover { color: var(--terracotta-dark); }
.option-link:hover::after { transform: translateX(4px); }

@media (max-width: 760px) {
    .options-grid { grid-template-columns: 1fr; max-width: 460px; margin: 0 auto; }
}

/* Photothérapie */
.therapy-steps {
    position: relative;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-bottom: clamp(3rem, 6vw, 4.5rem);
}
.therapy-steps::before {
    content: "";
    position: absolute;
    top: 27px;
    left: 16%;
    right: 16%;
    height: 1px;
    background: rgba(191, 111, 78, 0.45);
    z-index: 0;
}
.therapy-step {
    position: relative;
    z-index: 1;
    text-align: center;
    padding: 0 0.5rem;
}
.therapy-num {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 54px;
    height: 54px;
    border-radius: 50%;
    background: var(--terracotta);
    color: var(--cream);
    font-family: var(--font-serif);
    font-size: 1.4rem;
    margin-bottom: 1.4rem;
    box-shadow: 0 0 0 6px var(--sand);
}
.therapy-name {
    font-family: var(--font-serif);
    font-weight: 500;
    font-size: 1.45rem;
    color: var(--ink);
    margin-bottom: 0.7rem;
}
.therapy-step p {
    color: #5e554a;
    font-size: 0.95rem;
    max-width: 300px;
    margin: 0 auto;
}
.therapy-themes {
    list-style: none;
    text-align: left;
    max-width: 330px;
    margin: 1rem auto;
    display: flex;
    flex-direction: column;
    gap: 0.7rem;
}
.therapy-themes li {
    position: relative;
    padding-left: 1.1rem;
    font-size: 0.92rem;
    color: #5e554a;
    line-height: 1.5;
}
.therapy-themes li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0.55em;
    width: 5px;
    height: 5px;
    border-radius: 50%;
    background: var(--terracotta);
}
.therapy-themes strong {
    font-weight: 500;
    color: var(--ink);
}

/* Bénéfices + prix */
.therapy-bottom {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: clamp(2rem, 5vw, 4rem);
    align-items: center;
    background: var(--cream);
    border: 1px solid rgba(154, 135, 117, 0.28);
    border-radius: 2px;
    padding: clamp(2.2rem, 4vw, 3.2rem);
}
.therapy-benefits-title {
    font-family: var(--font-serif);
    font-style: italic;
    font-size: 1.5rem;
    color: var(--taupe-dark);
    margin-bottom: 1.4rem;
}
.therapy-bottom .offer-check {
    margin-bottom: 0;
}
.therapy-pricecard {
    text-align: center;
    border-left: 1px solid rgba(154, 135, 117, 0.28);
    padding-left: clamp(2rem, 4vw, 3.5rem);
}
.therapy-pricecard .offer-panel-sub {
    border-bottom: none;
    padding-bottom: 0;
    margin-bottom: 1.6rem;
}

@media (max-width: 920px) {
    .therapy-bottom {
        grid-template-columns: 1fr;
        max-width: 520px;
        margin: 0 auto;
    }
    .therapy-pricecard {
        border-left: none;
        border-top: 1px solid rgba(154, 135, 117, 0.28);
        padding-left: 0;
        padding-top: 2rem;
    }
}

@media (max-width: 920px) {
    .formulas-grid,
    .therapy-steps { grid-template-columns: 1fr; max-width: 520px; margin-left: auto; margin-right: auto; }
    .therapy-steps { margin-bottom: clamp(2.5rem, 5vw, 3.5rem); gap: 2.5rem; }
    .therapy-steps::before { display: none; }
    .formula-card--featured { order: -1; }
}
@media (max-width: 480px) {
    .options-list li {
        grid-template-columns: 1fr;
        grid-template-areas: "name" "desc" "price";
        gap: 0.4rem;
    }
    .option-price { justify-self: start; }
}

/* =========================================================
   Bande de photos par prestation
   ========================================================= */
.presta-gallery {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: clamp(0.8rem, 2vw, 1.4rem);
    margin-top: clamp(2.5rem, 5vw, 3.5rem);
}
.presta-shot {
    position: relative;
    display: block;
    aspect-ratio: 3 / 4;
    overflow: hidden;
    border-radius: 2px;
    background: var(--taupe-dark);
}
.presta-shot img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.7s var(--ease);
}
.presta-shot:hover img { transform: scale(1.05); }
.presta-shot-label {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 2;
    padding: 1.4rem 1rem 0.9rem;
    font-family: var(--font-sans);
    font-size: 0.78rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    text-align: center;
    color: var(--cream);
    background: linear-gradient(to top, rgba(40, 35, 28, 0.72), rgba(40, 35, 28, 0));
}

@media (max-width: 720px) {
    .presta-gallery { grid-template-columns: 1fr 1fr; }
    .presta-gallery--themed { grid-template-columns: 1fr; }
}

/* =========================================================
   Galerie (Portfolio)
   ========================================================= */
.gallery-section { background: var(--cream); }

.gallery-head {
    max-width: 620px;
    margin: 0 auto clamp(2.5rem, 5vw, 3.5rem);
    text-align: center;
}
.gallery-intro {
    color: #5e554a;
    font-size: 1.05rem;
}

.gallery-filters {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 0.6rem;
    margin: 0 auto clamp(2rem, 4vw, 3rem);
}
.gallery-filter {
    font-family: var(--font-sans);
    font-size: 0.82rem;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: #6b6154;
    background: transparent;
    border: 1px solid rgba(107, 97, 84, 0.28);
    border-radius: 999px;
    padding: 0.6rem 1.2rem;
    cursor: pointer;
    transition: color 0.35s var(--ease), background 0.35s var(--ease), border-color 0.35s var(--ease);
}
.gallery-filter:hover {
    color: var(--taupe);
    border-color: rgba(107, 97, 84, 0.55);
}
.gallery-filter.active {
    color: var(--cream);
    background: var(--taupe);
    border-color: var(--taupe);
}

.gallery-masonry {
    column-count: 3;
    column-gap: 1.4rem;
}

.gallery-item.is-hidden { display: none; }

.gallery-empty {
    text-align: center;
    color: #6b6154;
    font-style: italic;
    margin-top: 1rem;
}

.gallery-item {
    position: relative;
    display: block;
    break-inside: avoid;
    margin-bottom: 1.4rem;
    overflow: hidden;
    border-radius: 2px;
    background: var(--sand);
}
.gallery-item img {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.7s var(--ease);
}
.gallery-item:hover img { transform: scale(1.05); }

.gallery-overlay {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(40, 35, 28, 0);
    opacity: 0;
    transition: background 0.45s var(--ease), opacity 0.45s var(--ease);
}
.gallery-item:hover .gallery-overlay {
    background: rgba(40, 35, 28, 0.28);
    opacity: 1;
}
.gallery-plus {
    position: relative;
    width: 52px;
    height: 52px;
    border: 1px solid rgba(251, 248, 242, 0.9);
    border-radius: 50%;
    transform: scale(0.85);
    transition: transform 0.45s var(--ease);
}
.gallery-item:hover .gallery-plus { transform: scale(1); }
.gallery-plus::before,
.gallery-plus::after {
    content: "";
    position: absolute;
    top: 50%; left: 50%;
    background: var(--cream);
    transform: translate(-50%, -50%);
}
.gallery-plus::before { width: 16px; height: 1px; }
.gallery-plus::after { width: 1px; height: 16px; }

@media (max-width: 900px) {
    .gallery-masonry { column-count: 2; }
}
@media (max-width: 560px) {
    .gallery-masonry { column-count: 1; }
}

/* Ajustements GLightbox */
.glightbox-clean .gslide-description { display: none; }
.goverlay { background: rgba(40, 35, 28, 0.92); }

/* =========================================================
   Page Contact
   ========================================================= */
.contact-section { background: var(--cream); }

.contact-grid {
    display: grid;
    grid-template-columns: 0.85fr 1.15fr;
    gap: clamp(2.5rem, 6vw, 5rem);
    align-items: start;
}

.contact-lead {
    color: #5e554a;
    font-size: 1.05rem;
    margin-bottom: 2.4rem;
}

.contact-details {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 1.4rem;
    margin-bottom: 2.4rem;
}
.contact-details li {
    display: flex;
    align-items: center;
    gap: 1rem;
}
.contact-ico {
    flex-shrink: 0;
    width: 46px;
    height: 46px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(154, 135, 117, 0.4);
    border-radius: 50%;
}
.contact-ico svg {
    width: 20px;
    height: 20px;
    fill: none;
    stroke: var(--terracotta);
    stroke-width: 1.5;
    stroke-linecap: round;
    stroke-linejoin: round;
}
.contact-label {
    display: block;
    font-size: 0.68rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--muted);
    margin-bottom: 0.2rem;
}
.contact-details a {
    font-size: 1.05rem;
    color: var(--ink);
    transition: color 0.3s var(--ease);
}
.contact-details a:hover { color: var(--terracotta); }

.contact-social-links {
    display: flex;
    flex-direction: column;
    gap: 0.7rem;
    margin-top: 0.5rem;
}
.contact-social-links a {
    display: inline-flex;
    align-items: center;
    gap: 0.6rem;
    font-size: 0.95rem;
    color: var(--ink);
    transition: color 0.3s var(--ease);
}
.contact-social-links a:hover { color: var(--terracotta); }
.contact-social-links svg {
    width: 20px;
    height: 20px;
    fill: none;
    stroke: currentColor;
    stroke-width: 1.5;
    flex-shrink: 0;
}

/* Formulaire */
.contact-form-card {
    background: var(--sand);
    border: 1px solid rgba(154, 135, 117, 0.28);
    border-radius: 2px;
    padding: clamp(1.8rem, 4vw, 2.8rem);
    min-width: 0;
}
.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.2rem;
}
.form-field {
    display: flex;
    flex-direction: column;
    margin-bottom: 1.2rem;
    min-width: 0;
}
.form-field label {
    font-size: 0.72rem;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: var(--taupe-dark);
    margin-bottom: 0.5rem;
}
.form-field input,
.form-field select,
.form-field textarea {
    font-family: var(--font-sans);
    font-size: 0.98rem;
    font-weight: 300;
    color: var(--ink);
    background: var(--cream);
    border: 1px solid rgba(154, 135, 117, 0.4);
    border-radius: 2px;
    padding: 0.85rem 1rem;
    width: 100%;
    max-width: 100%;
    min-width: 0;
    transition: border-color 0.3s var(--ease), box-shadow 0.3s var(--ease);
}
.form-field textarea { resize: vertical; }
.form-field input:focus,
.form-field select:focus,
.form-field textarea:focus {
    outline: none;
    border-color: var(--terracotta);
    box-shadow: 0 0 0 3px rgba(191, 111, 78, 0.12);
}
.form-field select {
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 12 12'%3E%3Cpath d='M3 4.5L6 7.5L9 4.5' stroke='%23bf6f4e' stroke-width='1.5' fill='none' stroke-linecap='round'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 1rem center;
    background-size: 12px;
    padding-right: 2.4rem;
    cursor: pointer;
}
.form-submit {
    width: 100%;
    margin-top: 0.6rem;
}
.form-submit:disabled {
    opacity: 0.65;
    cursor: wait;
}
.form-note {
    font-size: 0.78rem;
    color: var(--muted);
    text-align: center;
    margin-top: 1rem;
}

@media (max-width: 860px) {
    .contact-grid { grid-template-columns: 1fr; }
}
@media (max-width: 480px) {
    .form-row { grid-template-columns: 1fr; gap: 0; }
}

/* =========================================================
   Section Réservation (Contact)
   ========================================================= */
.booking-section { background: var(--sand); }

.booking-card {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 2rem;
    flex-wrap: wrap;
    background: linear-gradient(135deg, var(--taupe-dark) 0%, var(--taupe-deep) 100%);
    border-radius: 2px;
    padding: clamp(2.2rem, 5vw, 3.4rem);
    color: var(--cream);
}
.booking-text { max-width: 560px; }
.booking-card .eyebrow { color: var(--terracotta); }
.booking-title {
    font-family: var(--font-serif);
    font-weight: 500;
    font-size: clamp(1.8rem, 3.5vw, 2.6rem);
    line-height: 1.12;
    margin-bottom: 0.8rem;
}
.booking-desc {
    color: rgba(251, 248, 242, 0.82);
    font-size: 1.02rem;
}
.booking-cta { flex-shrink: 0; }

@media (max-width: 760px) {
    .booking-card { flex-direction: column; align-items: flex-start; }
    .booking-cta { width: 100%; }
}

/* =========================================================
   Page Mentions légales
   ========================================================= */
.legal-section { background: var(--cream); }

.legal-content {
    max-width: 800px;
}
.legal-block {
    padding-bottom: 2rem;
    margin-bottom: 2rem;
    border-bottom: 1px solid rgba(154, 135, 117, 0.22);
}
.legal-block:last-child {
    border-bottom: none;
    margin-bottom: 0;
    padding-bottom: 0;
}
.legal-block h2 {
    font-family: var(--font-serif);
    font-weight: 500;
    font-size: 1.6rem;
    color: var(--ink);
    margin-bottom: 0.9rem;
}
.legal-block p {
    color: #5e554a;
    font-size: 0.98rem;
    line-height: 1.7;
    margin-bottom: 0.9rem;
}
.legal-block p:last-child { margin-bottom: 0; }
.legal-block a {
    color: var(--terracotta);
    transition: color 0.3s var(--ease);
}
.legal-block a:hover { color: var(--terracotta-dark); }

/* =========================================================
   Blog (front : liste + article)
   ========================================================= */
.blog-list-section { background: var(--cream); }

/* Image de couverture dans les cartes */
.blog-card .blog-media { position: relative; }
.blog-cover {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s var(--ease);
}
.blog-card:hover .blog-cover { transform: scale(1.05); }

/* Filtres catégories */
.blog-filters {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 0.6rem;
    margin-bottom: clamp(2.2rem, 4vw, 3rem);
}
.blog-filter {
    font-size: 0.72rem;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: var(--taupe-dark);
    padding: 0.55em 1.2em;
    border: 1px solid rgba(154, 135, 117, 0.4);
    border-radius: 100px;
    transition: all 0.3s var(--ease);
}
.blog-filter:hover { border-color: var(--terracotta); color: var(--terracotta); }
.blog-filter.is-active {
    background: var(--terracotta);
    border-color: var(--terracotta);
    color: var(--cream);
}

.blog-empty {
    text-align: center;
    color: var(--muted);
    font-family: var(--font-serif);
    font-style: italic;
    font-size: 1.3rem;
    padding: 3rem 0;
}

/* Pagination */
.pagination {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    gap: 0.5rem;
    margin-top: clamp(2.5rem, 5vw, 3.5rem);
}
.pagination-link {
    min-width: 40px;
    padding: 0.55em 0.9em;
    text-align: center;
    font-size: 0.85rem;
    letter-spacing: 0.05em;
    color: var(--taupe-dark);
    border: 1px solid rgba(154, 135, 117, 0.4);
    border-radius: 2px;
    transition: all 0.3s var(--ease);
}
.pagination-link:hover { border-color: var(--terracotta); color: var(--terracotta); }
.pagination-link.is-active {
    background: var(--terracotta);
    border-color: var(--terracotta);
    color: var(--cream);
}

/* Article */
.article-hero::before { background: linear-gradient(135deg, rgba(60, 52, 43, 0.72) 0%, rgba(40, 35, 28, 0.78) 100%); }
.article-hero-date {
    font-size: 0.78rem;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: rgba(251, 248, 242, 0.8);
    margin-top: 0.4rem;
}

.article-section { background: var(--cream); }
.article-container { max-width: 760px; }

.article-body {
    color: #4a4339;
    font-size: 1.08rem;
    line-height: 1.8;
}
.article-body > *:first-child { margin-top: 0; }
.article-body p { margin-bottom: 1.4rem; }
.article-body h2 {
    font-family: var(--font-serif);
    font-weight: 500;
    font-size: clamp(1.7rem, 3vw, 2.3rem);
    color: var(--ink);
    margin: 2.4rem 0 1rem;
}
.article-body h3 {
    font-family: var(--font-serif);
    font-weight: 500;
    font-size: 1.5rem;
    color: var(--ink);
    margin: 2rem 0 0.8rem;
}
.article-body a { color: var(--terracotta); text-decoration: underline; text-underline-offset: 3px; }
.article-body img {
    width: 100%;
    height: auto;
    border-radius: 2px;
    margin: 1.8rem 0;
}
.article-body ul,
.article-body ol { margin: 0 0 1.4rem 1.4rem; }
.article-body li { margin-bottom: 0.5rem; }
.article-body blockquote {
    margin: 1.8rem 0;
    padding: 0.4rem 0 0.4rem 1.6rem;
    border-left: 2px solid var(--terracotta);
    font-family: var(--font-serif);
    font-style: italic;
    font-size: 1.4rem;
    color: var(--taupe-dark);
}
.article-body figure { margin: 1.8rem 0; }
.article-body figcaption {
    font-size: 0.85rem;
    color: var(--muted);
    text-align: center;
    margin-top: 0.5rem;
}

.article-foot {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    justify-content: space-between;
    align-items: center;
    margin-top: clamp(2.5rem, 5vw, 3.5rem);
    padding-top: 2rem;
    border-top: 1px solid rgba(154, 135, 117, 0.28);
}

.blog-related { background: var(--sand); }

/* =========================================================
   Footer
   ========================================================= */
.site-footer {
    background: var(--ink);
    color: rgba(251, 248, 242, 0.78);
}

.footer-top {
    display: grid;
    grid-template-columns: 1.6fr 1fr 1.2fr;
    gap: clamp(2.5rem, 6vw, 5rem);
    padding-top: clamp(3.5rem, 6vw, 5.5rem);
    padding-bottom: clamp(3rem, 5vw, 4rem);
}

.footer-logo {
    height: 72px;
    width: auto;
    margin-bottom: 1.4rem;
}
.footer-tagline {
    font-family: var(--font-serif);
    font-style: italic;
    font-size: 1.15rem;
    line-height: 1.5;
    color: rgba(251, 248, 242, 0.7);
    max-width: 340px;
    margin-bottom: 1.8rem;
}

.footer-socials {
    display: flex;
    flex-direction: column;
    gap: 0.9rem;
}
.footer-socials a {
    display: inline-flex;
    align-items: center;
    gap: 0.7rem;
    font-size: 0.9rem;
    color: rgba(251, 248, 242, 0.8);
    transition: color 0.3s var(--ease);
}
.footer-socials a:hover { color: var(--terracotta); }
.footer-socials svg {
    width: 22px;
    height: 22px;
    fill: none;
    stroke: currentColor;
    stroke-width: 1.5;
    flex-shrink: 0;
}

.footer-title {
    font-family: var(--font-sans);
    font-weight: 400;
    font-size: 0.75rem;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: var(--sand);
    margin-bottom: 1.4rem;
}

.footer-nav ul,
.footer-contact ul {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
}
.footer-nav a,
.footer-contact a {
    font-size: 0.95rem;
    color: rgba(251, 248, 242, 0.78);
    transition: color 0.3s var(--ease), padding-left 0.3s var(--ease);
}
.footer-nav a:hover,
.footer-contact a:hover {
    color: var(--terracotta);
}
.footer-nav a:hover { padding-left: 0.3rem; }

.footer-cta {
    margin-top: 1.6rem;
    border-color: rgba(251, 248, 242, 0.35);
}

.footer-bottom {
    border-top: 1px solid rgba(251, 248, 242, 0.12);
}
.footer-bottom-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    padding-top: 1.6rem;
    padding-bottom: 1.6rem;
    font-size: 0.82rem;
    color: rgba(251, 248, 242, 0.55);
}
.footer-bottom-inner a {
    color: rgba(251, 248, 242, 0.7);
    transition: color 0.3s var(--ease);
}
.footer-bottom-inner a:hover { color: var(--terracotta); }

@media (max-width: 860px) {
    .footer-top {
        grid-template-columns: 1fr 1fr;
    }
    .footer-brand { grid-column: 1 / -1; }
}
@media (max-width: 520px) {
    .footer-top { grid-template-columns: 1fr; }
    .footer-bottom-inner {
        flex-direction: column;
        text-align: center;
        gap: 0.6rem;
    }
}

/* =========================================================
   Menu mobile
   ========================================================= */
.mobile-overlay {
    position: fixed;
    inset: 0;
    background: rgba(59, 52, 44, 0.5);
    backdrop-filter: blur(2px);
    z-index: 110;
    opacity: 0;
    transition: opacity 0.4s var(--ease);
}
.mobile-overlay.show { opacity: 1; }

.mobile-menu {
    position: fixed;
    top: 0; right: 0;
    width: min(380px, 86vw);
    height: 100%;
    background: var(--taupe-deep);
    color: var(--cream);
    z-index: 120;
    padding: 2rem 2rem 2.5rem;
    display: flex;
    flex-direction: column;
    transform: translateX(100%);
    transition: transform 0.45s var(--ease);
    overflow-y: auto;
}
.mobile-menu.open { transform: translateX(0); }

.mobile-menu-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-bottom: 1.5rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.12);
}
.mobile-menu-title {
    font-family: var(--font-serif);
    font-size: 1.5rem;
    letter-spacing: 0.04em;
    color: var(--sand);
}
.mobile-close {
    background: none;
    border: none;
    color: var(--cream);
    font-size: 2rem;
    line-height: 1;
    cursor: pointer;
    transition: color 0.3s var(--ease);
}
.mobile-close:hover { color: var(--terracotta); }

.mobile-nav { margin: 1.8rem 0 1.2rem; }
.mobile-nav ul { list-style: none; }
.mobile-nav li { border-bottom: 1px solid rgba(255, 255, 255, 0.08); }
.mobile-nav a {
    display: block;
    padding: 1rem 0;
    font-family: var(--font-serif);
    font-size: 1.4rem;
    color: rgba(251, 248, 242, 0.9);
    transition: color 0.3s var(--ease), padding-left 0.3s var(--ease);
}
.mobile-nav a:hover {
    color: var(--terracotta);
    padding-left: 0.4rem;
}

.mobile-cta { width: 100%; margin-top: 0.8rem; }
.mobile-menu .btn-outline {
    border-color: rgba(251, 248, 242, 0.4);
    color: var(--sand);
}
.mobile-menu .btn-outline:hover {
    background: rgba(251, 248, 242, 0.1);
    color: var(--cream);
}

.mobile-contact {
    margin-top: auto;
    padding-top: 2rem;
    display: flex;
    flex-direction: column;
    gap: 0.4rem;
}
.mobile-contact-label,
.mobile-social {
    font-size: 0.7rem;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--taupe);
}
.mobile-contact-label { margin-bottom: 0.3rem; }
.mobile-contact a {
    font-size: 0.95rem;
    color: var(--sand);
    transition: color 0.3s var(--ease);
}
.mobile-contact a:hover { color: var(--terracotta); }

.mobile-social {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    margin-top: 1.4rem;
    padding-top: 1.4rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    text-transform: none;
    letter-spacing: 0.02em;
}
.mobile-social a {
    font-size: 0.85rem;
    color: rgba(251, 248, 242, 0.75);
    transition: color 0.3s var(--ease);
}
.mobile-social a:hover { color: var(--terracotta); }

/* =========================================================
   Responsive
   ========================================================= */
@media (max-width: 980px) {
    .header-nav,
    .header-cta { display: none; }
    .burger { display: flex; }
    .header-inner { padding: 0 1.4rem; }
}

@media (max-width: 480px) {
    .header-logo img { height: 62px; }
    :root { --header-h: 74px; }
}

/* Empêche le scroll en arrière-plan quand le menu est ouvert */
body.menu-open { overflow: hidden; }

/* =========================================================
   SweetAlert2 (thème Blondi)
   ========================================================= */
.blondi-swal {
    background: var(--cream) !important;
    border: 1px solid rgba(154, 135, 117, 0.22);
    border-radius: 2px !important;
    padding: 2rem 1.6rem 1.6rem !important;
    box-shadow: 0 18px 48px rgba(70, 61, 51, 0.18) !important;
    font-family: var(--font-sans) !important;
}
.blondi-swal-title {
    font-family: var(--font-serif) !important;
    font-weight: 500 !important;
    color: var(--ink) !important;
    font-size: 1.7rem !important;
}
.blondi-swal-text {
    color: #5e554a !important;
    font-size: 1rem !important;
    line-height: 1.6 !important;
}
.blondi-swal-btn {
    margin-top: 0.4rem !important;
    min-width: 140px;
}
.blondi-swal .swal2-icon {
    border-color: rgba(191, 111, 78, 0.35) !important;
    margin-top: 0.4rem !important;
}
.blondi-swal .swal2-icon.swal2-success [class^=swal2-success-line],
.blondi-swal .swal2-icon.swal2-success .swal2-success-ring {
    background-color: transparent !important;
}
.blondi-swal .swal2-icon.swal2-success [class^=swal2-success-line] {
    background-color: var(--terracotta) !important;
}
.blondi-swal .swal2-icon.swal2-success .swal2-success-ring {
    border-color: rgba(191, 111, 78, 0.35) !important;
}
