/* ========== PALETTE & BASE ========== */
:root {
    --bg: #F7F4EF; /* beige/crème */
    --sage: #E9EFEA; /* sauge pâle */
    --deep: #2C4A3E; /* vert profond */
    --gold: #C2A878; /* doré doux */
    --ink: #222; /* texte principal */
    --muted: #6B6F6A; /* texte secondaire */
    --radius: 16px;
    --shadow: 0 12px 34px rgba(0, 0, 0, .06);
}

* {
    box-sizing: border-box
}

html, body {
    margin: 0;
    padding: 0;
    background: var(--bg);
    color: var(--ink)
}

body {
    font-family: Inter, system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
    line-height: 1.7
}

html {
    scroll-behavior: smooth
}

/* ========== NAVBAR ========== */
.nav-zen {
    background: rgba(255, 255, 255, .75) !important;
    backdrop-filter: blur(8px);
    border-bottom: 1px solid rgba(0, 0, 0, .06);
}

.nav-zen .nav-link {
    color: #444 !important;
    font-weight: 500;
    padding: 10px 12px;
    border-radius: 10px;
    transition: background .25s ease, color .25s ease;
}

.nav-zen .nav-link:hover {
    background: rgba(44, 74, 62, .08);
    color: var(--deep) !important;
}

/* Espacement fluide des liens */
.navbar-nav {
    display: flex;
    justify-content: center;
    gap: clamp(10px, 3vw, 45px)
}

.navbar-nav .nav-link {
    font-size: 15.5px;
    letter-spacing: .3px;
    transition: color .25s ease, transform .25s ease;
}

.navbar-nav .nav-link:hover {
    color: var(--deep) !important;
    transform: translateY(-1px)
}

/* Logo dans la barre */
.en-tete-logo {
    height: 48px;
    width: auto;
    object-fit: contain;
    filter: brightness(1.05);
    transition: transform .25s ease, filter .25s ease;
}

.en-tete-logo:hover {
    transform: scale(1.05);
    filter: brightness(1.15)
}

.navbar-brand {
    display: flex;
    align-items: center;
    padding: 4px 0
}

.nav-zen .nav-link.active:hover::after {
    background-color: var(--gold);
}


/* ========== SECTIONS / TITRES ========== */
.section {
    padding: 60px 0
}

.sec-title {
    font-family: "Noto Serif JP", serif;
    color: var(--deep);
    font-size: clamp(22px, 3.2vw, 30px);
    margin: 0 0 10px;
}

.sage {
    background: var(--sage)
}


.nav-zen.scrolled {
    box-shadow: 0 8px 24px rgba(0, 0, 0, .06);
    backdrop-filter: blur(10px);
}

/* Lien actif (page courante) */
.nav-zen .nav-link.active {
    color: var(--deep) !important;
    font-weight: 600;
    position: relative;
}

.nav-zen .nav-link.active::after {
    content: "";
    position: absolute;
    bottom: 6px;
    left: 50%;
    transform: translateX(-50%);
    width: 18px;
    height: 2px;
    border-radius: 2px;
    background-color: var(--deep);
    opacity: 0.9;
}


/* ========== GRILLE & CARTES ========== */
.grid-zen {
    display: grid;
    gap: 26px;
    grid-template-columns:1fr
}

@media (min-width: 900px) {
    .grid-zen {
        grid-template-columns:1.05fr .95fr
    }
}

.card-zen {
    background: #fff;
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    padding: 22px;
}

.card-zen h2, .card-zen h3 {
    color: var(--deep)
}

/* ========== IMAGES ========== */
.picture {
    overflow: hidden;
    border-radius: var(--radius);
    box-shadow: var(--shadow)
}

.picture img {
    display: block;
    width: 100%;
    height: auto;
    transform: scale(1);
    transition: transform 1.1s ease
}

.picture:hover img {
    transform: scale(1.03)
}

/* ========== ARCHES (3 cartes) ========== */
.arches {
    display: grid;
    grid-template-columns:1fr;
    gap: 20px
}

@media (min-width: 860px) {
    .arches {
        grid-template-columns:repeat(3, 1fr)
    }
}

.arch {
    background: #fff;
    border-radius: 20px 20px 16px 16px;
    padding: 26px 20px;
    text-align: center;
    box-shadow: var(--shadow);
    position: relative;
    overflow: hidden;
    transition: transform .25s ease, box-shadow .25s ease;
}

.arch:before {
    content: "";
    position: absolute;
    inset: 0 0 auto 0;
    height: 46%;
    background: radial-gradient(120% 100% at 50% 100%, rgba(194, 168, 120, .18), rgba(194, 168, 120, 0) 70%);
    pointer-events: none;
}

.arch:hover {
    transform: translateY(-3px);
    box-shadow: 0 18px 44px rgba(0, 0, 0, .08)
}

.arch__icon {
    font-size: 26px;
    color: var(--gold);
    margin-bottom: 8px
}

.arch h3 {
    font-family: "Noto Serif JP", serif;
    margin: 6px 0 6px;
    color: var(--deep)
}

.arch p {
    color: var(--muted);
    margin: 0
}

/* ========== RÉVÉLATION AU SCROLL (sections) ========== */
.reveal {
    opacity: 0;
    transform: translateY(14px);
    transition: opacity .7s ease, transform .7s ease
}

.reveal.is-visible {
    opacity: 1;
    transform: none
}

/* ========== ANIM D’ENTRÉE DU HERO (logo → titre → sous-titre) ========== */
/* État initial */
.hero-luxe__logo, .hero-luxe__title, .hero-luxe__sub {
    opacity: 0;
    transform: translateY(18px);
    will-change: opacity, transform;
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
}

/* Déclenché quand <html> reçoit .is-ready (via JS) */
.is-ready .hero-luxe__logo {
    animation: logoFadeIn 1.6s ease-out .2s forwards
}

.is-ready .hero-luxe__title {
    animation: textFadeIn 1.6s ease-out .7s forwards
}

.is-ready .hero-luxe__sub {
    animation: textFadeIn 1.6s ease-out 1.1s forwards
}

@keyframes logoFadeIn {
    from {
        opacity: 0;
        transform: translateY(18px)
    }
    to {
        opacity: 1;
        transform: translateY(0)
    }
}

@keyframes textFadeIn {
    from {
        opacity: 0;
        transform: translateY(14px)
    }
    to {
        opacity: 1;
        transform: translateY(0)
    }
}

/* Réduction des mouvements (accessibilité) */
@media (prefers-reduced-motion: reduce) {
    .hero-luxe, .hero-luxe__overlay {
        transition: none !important
    }

    .hero-luxe__logo, .hero-luxe__title, .hero-luxe__sub {
        opacity: 1 !important;
        transform: none !important;
        animation: none !important;
    }
}

/* === Mini galerie en grille === */
.gallery-zen {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
    gap: 16px;
    margin-top: 16px;
}

.gallery-zen img {
    width: 100%;
    height: auto;
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    transition: transform .35s ease, box-shadow .35s ease;
}

.gallery-zen img:hover {
    transform: scale(1.04);
    box-shadow: 0 12px 28px rgba(0, 0, 0, .08);
}

/* ====== Grille de pages visuelles ====== */
.grid-pages {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
    gap: 24px;
    margin-top: 30px;
}

.page-card {
    position: relative;
    aspect-ratio: 1 / 1;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-family: "Noto Serif JP", serif;
    font-size: 1.15rem;
    text-align: center;
    text-decoration: none;
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    overflow: hidden;
    transition: transform 0.5s ease, box-shadow 0.5s ease;
    isolation: isolate;
}

.page-card img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: brightness(0.6) contrast(1.05);
    transition: transform 0.6s ease, filter 0.4s ease;
    z-index: 0;
}

.page-card::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, .4), rgba(0, 0, 0, .15));
    z-index: 1;
    transition: opacity 0.4s ease;
}

.page-card span {
    position: relative;
    z-index: 2;
    font-weight: 600;
    letter-spacing: 0.3px;
    text-shadow: 0 2px 6px rgba(0, 0, 0, 0.4);
}

.page-card:hover img {
    transform: scale(1.08);
    filter: brightness(0.8) contrast(1.1);
}

.page-card:hover::after {
    opacity: 0.8;
}

.page-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 18px 44px rgba(0, 0, 0, 0.1);
}

/* Animation d’apparition douce */
.pages-grid.reveal {
    opacity: 0;
    transform: translateY(24px);
    transition: opacity 1s ease, transform 1s ease;
}

.pages-grid.reveal.is-visible {
    opacity: 1;
    transform: translateY(0);
}


/* ========== FOOTER ========== */
.footer {
    text-align: center;
    color: #51615D;
    padding: 32px 0;
    font-size: 14px
}

a.link {
    color: var(--deep);
    text-decoration: underline;
    text-underline-offset: 3px
}


/* ========== THEME ZEN SAGE ========== */
:root {
    --bg: #FAF8F5; /* ivoire */
    --paper: #F3EEE9; /* sable */
    --sage: #7D9D8A; /* vert sauge */
    --sage-600: #5F7D6D;
    --gold: #C6A26A; /* accent doré discret */
    --ink: #2E3830; /* texte principal */
    --muted: #8C8C8C;

    --radius: 20px;
    --shadow: 0 12px 28px rgba(0, 0, 0, .08);
}

* {
    box-sizing: border-box
}

html, body {
    margin: 0;
    padding: 0
}

img {
    max-width: 100%;
    display: block
}

a {
    color: inherit;
    text-decoration: none
}


h1, h2, h3 {
    font-family: "Cormorant Garamond", "Noto Serif JP", serif;
    font-weight: 600;
    line-height: 1.15;
    letter-spacing: .2px;
}

.container {
    max-width: 1150px;
    margin: auto;
    padding: 0 22px
}

.section {
    padding: 72px 0
}

.text-center {
    text-align: center
}


/* ===== HERO ===== */
.hero {
    position: relative;
    min-height: 80vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: #fff;
    overflow: hidden;

    /* image + voile permanent (plus foncé pour éviter le flash clair) */
    background: linear-gradient(180deg, rgba(30, 40, 35, 0.65), rgba(46, 56, 48, 0.35)),
    url("../images/image697.jpg") center/cover no-repeat;

    /* fondu + zoom du fond */
    animation: heroFadeZoom 2.5s ease-out forwards;
    opacity: 0;
    transform: scale(1.05);
}

/* intérieur centré */
.hero__inner {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    z-index: 2;
}

/* logo */
.hero__logo {
    width: clamp(400px, 22vw, 220px);
    height: auto;
    margin-bottom: 24px;
    filter: drop-shadow(0 3px 6px rgba(0, 0, 0, 0.3));
    animation: fadeInUp 1.8s ease-out forwards;
    opacity: 0;
    animation-delay: 0.5s;
}

/* texte */
.hero__subtitle {
    font-family: "Cormorant Garamond", "Noto Serif JP", serif;
    font-size: clamp(22px, 3vw, 32px);
    letter-spacing: 0.5px;
    font-weight: 500;
    margin-bottom: 28px;
    text-shadow: 0 2px 12px rgba(0, 0, 0, 0.35);
    animation: fadeInUp 1.8s ease-out forwards;
    opacity: 0;
    animation-delay: 1s;
}

/* bouton */
.hero__cta {
    display: inline-block;
    padding: 14px 26px;
    background: var(--gold);
    color: #fff;
    border-radius: 999px;
    box-shadow: 0 12px 24px rgba(0, 0, 0, 0.12);
    transition: all 0.25s ease;
    animation: fadeInUp 1.8s ease-out forwards;
    opacity: 0;
    animation-delay: 1.4s;
}

.hero__cta:hover {
    background: #e0b978;
    transform: translateY(-2px);
}

/* ===== Animations ===== */
@keyframes fadeInUp {
    0% {
        transform: translateY(30px);
        opacity: 0;
    }
    100% {
        transform: translateY(0);
        opacity: 1;
    }
}

@keyframes heroFadeZoom {
    0% {
        opacity: 0;
        transform: scale(1.1);
    }
    100% {
        opacity: 1;
        transform: scale(1);
    }
}


@keyframes heroBreath {
    0%, 100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.04);
    }
}


/* ===== Rubrique “Nos services” en bulles inspirées (ovales) ===== */
.services {
    background: var(--paper)
}

.services-list {
    display: grid;
    gap: 24px;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    margin-top: 28px;
}

.service {
    text-align: center;
    background: #fff;
    padding: 18px;
    border-radius: 24px;
    box-shadow: var(--shadow);
}

.service .thumb {
    aspect-ratio: 1/1;
    border-radius: 50% 50% 38% 38% / 50% 50% 46% 46%;
    overflow: hidden;
    margin: 0 auto 14px;
    box-shadow: 0 8px 18px rgba(0, 0, 0, .08);
}

.service .thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transform: scale(1.03)
}

.service h3 {
    margin: 4px 0 6px;
    font-size: 20px
}

.service p {
    color: var(--muted);
    font-size: 14px;
    margin: 0
}

/* ===== Grille de “cartes-pages” (ton menu d’accueil cliquable) ===== */
.pages-grid {
    display: grid;
    gap: 24px;
    margin-top: 8px;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
}

.page-card {
    position: relative;
    aspect-ratio: 4/3;
    overflow: hidden;
    border-radius: var(--radius);
    background: var(--paper);
    box-shadow: var(--shadow);
    isolation: isolate;
}

.page-card img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transform: scale(1.05);
    filter: brightness(.9) contrast(1.05);
    transition: transform .45s ease, filter .45s ease;
}

.page-card::after {
    content: "";
    position: absolute;
    inset: 0;
    z-index: 1;
    background: linear-gradient(to top, rgba(0, 0, 0, .38), rgba(0, 0, 0, .10));
}

.page-card span {
    position: absolute;
    z-index: 2;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: #fff;
    font-family: "Cormorant Garamond", serif;
    font-weight: 600;
    font-size: clamp(18px, 2.4vw, 24px);
    text-shadow: 0 2px 8px rgba(0, 0, 0, .45);
    padding: 0 10px;
    text-align: center;
}

.page-card:hover img {
    transform: scale(1.08);
    filter: brightness(.95) contrast(1.08)
}

/* ===== Bloc “Pourquoi nous choisir ?” ===== */
.features {
    display: grid;
    gap: 18px;
    grid-template-columns:1.1fr .9fr;
    align-items: center;
}

@media (max-width: 900px) {
    .features {
        grid-template-columns:1fr;
    }
}

.feature-list {
    display: grid;
    gap: 18px
}

.feature {
    display: flex;
    gap: 14px;
    align-items: flex-start;
    background: #fff;
    padding: 18px;
    border-radius: 18px;
    box-shadow: var(--shadow);
}

.feature svg {
    flex: 0 0 32px;
    color: var(--sage)
}

.kit-photo {
    aspect-ratio: 4/3;
    border-radius: 24px;
    overflow: hidden;
    box-shadow: var(--shadow)
}

.kit-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover
}

/* ===== Strip réservation ===== */
.booking-strip {
    background: linear-gradient(135deg, var(--sage), var(--sage-600));
    color: #fff;
    border-radius: 24px;
    padding: 28px;
    display: flex;
    gap: 18px;
    align-items: center;
    justify-content: space-between;
}

.booking-strip a {
    background: #fff;
    color: var(--sage-600);
    padding: 10px 16px;
    border-radius: 999px;
    font-weight: 600
}

/* ===== Petites images “Origine” ===== */
.symbols {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
    gap: 16px;
    align-items: center;
    justify-items: center;
    margin: 16px 0 8px;
}

.symbols img {
    width: clamp(120px, 35vw, 180px);
    height: auto;
    object-fit: contain;
    filter: drop-shadow(0 3px 8px rgba(0, 0, 0, .06));
}

/* ===== Footer minimal ===== */
.footer {
    padding: 28px 0;
    text-align: center;
    color: #6E6E6E;
    font-size: 14px;
    border-top: 1px solid rgba(0, 0, 0, .06);
    background: #fff;
}


.hero__subtitle {
    animation-delay: .05s;
}

.hero__cta {
    animation-delay: .10s;
}

@keyframes softIn {
    to {
        opacity: 1;
        transform: none;
    }
}


/* 2) Couper TOUTES les animations d'apparition (logo/texte/bouton/hero) */
.hero {
    animation: none !important;
    opacity: 1 !important;
    transform: none !important;
}

/* 3) Désactiver les effets "breath/zoom" persistants de la hero */
@keyframes heroFadeZoom {
}

@keyframes heroBreath {
}

/* 4) Garder les hovers (on NE touche pas à leurs transitions) */
.hero__cta {
    transition: transform .18s ease, box-shadow .18s ease, background-color .18s ease;
}

/* 5) Accessibilité : si l'utilisateur préfère moins de mouvement */
@media (prefers-reduced-motion: reduce) {
    * {
        animation: none !important;
    }
}


/* 1) La hero n'est JAMAIS transparente au départ */
.hero {
    opacity: 1 !important; /* annulé: opacity:0 du heroFadeZoom */
    transform: none !important;
    background-color: #1f2b25; /* fallback sombre instantané */
    background-image: url("../images/image697.jpg") !important; /* photo seule */
    background-position: center;
    background-size: cover;
    /* on garde une respiration très légère du fond */
    animation: heroBreath 18s ease-in-out infinite !important;
}

/* 2) Le fondu se fait via un VOILE au-dessus de l'image */
.hero::before {
    content: "";
    position: absolute;
    inset: 0;
    z-index: 0;
    /* voile sombre au début (évite le flash clair), puis on l'estompe */
    background: linear-gradient(180deg, rgba(30, 40, 35, .72), rgba(46, 56, 48, .42));
    opacity: 1;
    animation: overlayReveal .9s ease-out .05s forwards;
}

/* 3) Le contenu reste au-dessus du voile */
.hero__inner {
    position: relative;
    z-index: 1;
}


.hero__logo {
    animation-delay: .20s
}

.hero__subtitle {
    animation-delay: .40s
}


/* === Keyframes (douces) === */
@keyframes overlayReveal {
    from {
        opacity: 1
    }
    to {
        opacity: 0
    }
}

@keyframes softFadeUp {
    to {
        opacity: 1;
        transform: none
    }
}

/* respiration très discrète */
@keyframes heroBreath {
    0%, 100% {
        transform: scale(1)
    }
    50% {
        transform: scale(1.02)
    }
}

/* Accessibilité */
@media (prefers-reduced-motion: reduce) {
    .hero, .hero::before, .hero__logo, .hero__subtitle {
        animation: none !important;
        opacity: 1 !important;
        transform: none !important;
    }
}


/* === Le Shiatsu : habillage spécifique (non intrusif) === */

/* Bandeau titre */
.shiatsu-hero {
    background: radial-gradient(120% 100% at 50% 0%, rgba(194, 166, 120, .12), rgba(194, 166, 120, 0) 60%),
    linear-gradient(180deg, rgba(44, 74, 62, .12), rgba(44, 74, 62, 0));
    padding: 86px 0 36px; /* tient compte du header fixed */
    border-bottom: 1px solid rgba(0, 0, 0, .05);
}

.shiatsu-crumbs {
    font-size: 14px;
    color: #6b6f6a;
    margin-bottom: 8px;
}

.shiatsu-crumbs a {
    text-decoration: underline;
    text-underline-offset: 2px;
}

.shiatsu-title {
    margin: 0 0 6px;
    font-family: "Noto Serif JP", serif;
    color: var(--deep);
    font-size: clamp(28px, 4.2vw, 42px);
}

.shiatsu-lead {
    max-width: 68ch;
    margin: 6px 0 0;
    color: #36433d;
}

/* Grille 2 colonnes avec aside sticky */
.shiatsu-grid {
    display: grid;
    grid-template-columns: 1.15fr .85fr;
    gap: 28px;
}

@media (max-width: 992px) {
    .shiatsu-grid {
        grid-template-columns: 1fr;
    }
}

/* Article : dropcap + figure légendée */
.shiatsu-article p {
    margin: 0 0 14px;
}

.dropcap::first-letter {
    float: left;
    font-family: "Cormorant Garamond", serif;
    font-size: 3.1rem;
    line-height: .9;
    padding-right: .18em;
    color: var(--gold);
}

.shiatsu-figure {
    margin: 16px 0 18px;
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow);
}

.shiatsu-figure img {
    width: 100%;
    height: auto;
    display: block;
}

.shiatsu-figure figcaption {
    padding: 8px 12px;
    font-size: 14px;
    color: #6b6f6a;
    background: #fff;
}

/* Aside sticky + cartes */
.shiatsu-aside {
    position: relative;
}

@media (min-width: 993px) {
    .shiatsu-aside {
        position: sticky;
        top: calc(var(--nav-h, 70px) + 18px);
        align-self: start;
    }
}

.shiatsu-aside__card {
    background: #fff;
    border-radius: 16px;
    box-shadow: var(--shadow);
    padding: 18px;
    margin-bottom: 18px;
}

.shiatsu-aside__card h3 {
    margin: 0 0 10px;
    font-family: "Noto Serif JP", serif;
    color: var(--deep);
    font-size: 20px;
}

.shiatsu-bullets {
    margin: 0 0 12px;
    padding-left: 20px;
}

.shiatsu-bullets li {
    margin: 0 0 6px
}

.shiatsu-cta {
    display: inline-block;
    margin-top: 6px;
    padding: 10px 14px;
    border-radius: 999px;
    background: var(--deep);
    color: #fff;
    font-weight: 600;
}

/* Steps timeline verticale */
.shiatsu-steps {
    list-style: none;
    margin: 22px auto 0;
    padding: 0;
    max-width: 860px;
    position: relative;
}

.shiatsu-steps li {
    position: relative;
    padding-left: 30px;
    margin: 0 0 16px;
}

.shiatsu-steps li::before {
    content: "";
    position: absolute;
    left: 10px;
    top: 0;
    bottom: -10px;
    width: 2px;
    background: rgba(44, 74, 62, .18);
}

.shiatsu-steps li:last-child::before {
    bottom: 12px;
}

.step-dot {
    position: absolute;
    left: 3px;
    top: 4px;
    width: 14px;
    height: 14px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--gold), #d2b784);
    box-shadow: 0 6px 16px rgba(0, 0, 0, .12);
}

.shiatsu-steps h3 {
    margin: 0 0 4px;
    color: var(--deep);
    font-size: 20px
}

.shiatsu-steps p {
    margin: 0;
    color: var(--muted)
}

/* FAQ sans JS */
.shiatsu-faq {
    max-width: 860px;
    margin: 16px auto 0;
}

.shiatsu-faq details {
    background: #fff;
    border-radius: 14px;
    box-shadow: var(--shadow);
    padding: 12px 16px;
    margin: 10px 0;
}

.shiatsu-faq summary {
    cursor: pointer;
    font-weight: 600;
    color: var(--deep);
}

.shiatsu-faq p {
    margin: 10px 0 0;
    color: var(--muted)
}


/* === PATCH MOBILE ACCUEIL (à coller tout en bas) =================== */

/* 1) Logo de la hero : corrige le clamp inversé (le min doit être le plus petit) */
.hero__logo {
    width: clamp(400px, 22vw, 220px) !important; /* était clamp(400px,22vw,220px) */
    max-width: 70vw; /* garde de sécurité si très petit écran */
    height: auto;
    display: block;
}

/* 4) Cartes “Découvrir” : garantit que le titre reste bien au centre */
.page-card {
    position: relative;
}

.page-card span {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

/* 5) Image d’intro : évite tout débordement */
.picture img {
    width: 100%;
    height: auto;
    display: block;
}

/* 6) Évite tout zoom/anim agressif sur mobile (confort visuel) */
@media (max-width: 640px) {
    .page-card img {
        transform: none;
    }

    .page-card:hover img {
        transform: none;
    }
}

#adresse {
    height: 200px;
    width: auto;
}


/* --- FIX NAV TOUJOURS AU-DESSUS --- */
.site-header {
    position: relative;
    z-index: 3000; /* au-dessus du hero */
}

.site-header .navbar.nav-zen {
    position: fixed; /* déjà géré par Bootstrap via .fixed-top, mais on renforce */
    top: 0;
    left: 0;
    right: 0;
    z-index: 3001; /* plus haut que tout le reste */
}


/* --- FIX NAVBAR + ESPACEMENT GLOBAL (FINAL) --- */
body {
    padding-top: 70px; /* hauteur approximative de ta navbar */
}

@media (max-width: 991.98px) {
    body {
        padding-top: 60px;
    }
}

/* --- FORCER LE LOGO NAV A ETRE TOUJOURS VISIBLE --- */
.navbar.nav-zen .navbar-brand {
    display: flex !important;
    align-items: center;
}

.navbar.nav-zen .navbar-brand img {
    display: block !important;
    height: 48px;
    width: auto;
}

/* --- NAV TOUJOURS AU-DESSUS DU HERO --- */
.site-header {
    position: relative;
    z-index: 3000;
}

.site-header .navbar.nav-zen {
    position: fixed; /* renforce fixed-top Bootstrap */
    top: 0;
    left: 0;
    right: 0;
    z-index: 3001;
    background: rgba(255, 255, 255, .9) !important;
}

/* --- ESPACEMENT DU CONTENU POUR NE PAS PASSER SOUS LA NAV --- */
body {
    padding-top: 80px; /* nav ~70px + un peu de marge */
}

@media (max-width: 991.98px) {
    body {
        padding-top: 70px;
    }
}

/* --- FORCER LE LOGO NAV À RESTER AFFICHÉ --- */
.navbar.nav-zen .navbar-brand {
    display: flex !important;
    align-items: center;
    flex-shrink: 0; /* on empêche le logo de se faire écraser par les liens */
}

.navbar.nav-zen .navbar-brand img {
    display: block !important;
    height: 48px;
    width: auto;
}


/* =========================================
   PAGE "QUI SUIS-JE"
   (moi.html)
========================================= */


.shiatsu-crumbs {
    font-size: .9rem;
    margin-bottom: .75rem;
    color: var(--muted);
}

.shiatsu-crumbs a {
    color: var(--muted);
    text-decoration: none;
}

.shiatsu-crumbs a:hover {
    text-decoration: underline;
}

.shiatsu-title {
    font-family: "Noto Serif JP", serif;
    font-weight: 600;
    font-size: 2.4rem;
    margin-bottom: .5rem;
}

.shiatsu-lead {
    max-width: 40rem;
    font-size: 1.05rem;
    color: var(--muted);
}

/* Section de contenu principale */
.section {
    padding: 4rem 0 5rem;
}

.section h2 {
    font-family: "Noto Serif JP", serif;
    font-weight: 600;
}

.text-gold {
    color: var(--gold);
}

/* Carte du diplôme */
.card-diplome {
    border-radius: var(--radius);
    border: 1px solid rgba(0, 0, 0, 0.05);
    background: #fff;
}

.card-diplome .card-title {
    font-weight: 600;
}

.diplome-wrapper {
    border-radius: 12px;
    overflow: hidden;
    max-height: 420px; /* évite que l’image prenne toute la hauteur */
}

.diplome-wrapper img {
    width: 100%;
    height: auto;
    display: block;
}

/* Footer (si besoin d’harmoniser) */
.footer {
    padding: 1.5rem 1rem;
    font-size: .9rem;
    text-align: center;
    background: #fff;
    border-top: 1px solid rgba(0, 0, 0, 0.05);
}

/* ==============================
   RESPONSIVE
============================== */

@media (max-width: 991.98px) {
    .shiatsu-hero {
        padding-top: 6rem;
        padding-bottom: 3rem;
    }

    .shiatsu-title {
        font-size: 2rem;
    }

    .section {
        padding: 3rem 0 4rem;
    }

    .card-diplome {
        margin-top: 1.5rem;
    }
}

@media (max-width: 575.98px) {
    .shiatsu-crumbs {
        font-size: .8rem;
    }

    .shiatsu-title {
        font-size: 1.8rem;
    }
}


.arch--image {
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: none; /* si tu ne veux pas la même ombre que les autres */
    background: transparent;
}

.arch--image img {
    max-width: 80%;
    height: auto;
}


.nav-zen .nav-link.active {
    background: rgba(44, 74, 62, .08);
}


#personne {
    height: 120px;
    width: auto;
    border-radius: 15px;
}

#contact-haut {
    display: flex;
    justify-content: space-between;
}


.btn-rdv-bg {
    display: flex;
    align-items: center;
    justify-content: center;

    width: 100%;
    max-width: 320px;
    height: 70px;

    margin: 0 auto 18px;

    font-family: 'Inter', sans-serif;
    font-size: 1.05rem;
    font-weight: 600;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    color: #ffffff;
    text-decoration: none;

    background-image: url("../images/bouton.jpeg");
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;

    border-radius: 18px;

    transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.btn-rdv-bg:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.18);
}

.btn-rdv-bg:active {
    transform: translateY(0);
}


#boutonrdv {
    height: 50px;
    width: 50px;
}


#bouton {
    display: flex;
    justify-content: center;
}