/* ========== 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) }

/* la nav au-dessus du hero et du reste */
.nav-zen { z-index: 1030; }

/* marge en haut égale à la hauteur de la nav (valeur de secours 70px) */
body { padding-top: var(--nav-h, 70px); }

.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;
}


/* ========== HERO IMMERSIF ========== */
.hero-luxe{
    position:relative; height:78vh; min-height:460px; width:100%;
    background:url("../images/image697.jpg") center/cover no-repeat;
    display:flex; align-items:flex-end; justify-content:center;
    transition:height .7s ease, transform .7s ease; will-change:height, transform;
}
.hero-luxe__overlay{
    position:absolute; inset:0;
    background:linear-gradient(180deg, rgba(0,0,0,.15) 0%, rgba(0,0,0,.45) 70%);
    display:flex; align-items:center; justify-content:center; text-align:center; padding:0 18px;
    transition: background .7s ease, backdrop-filter .7s ease, opacity .7s ease;
}
.hero-luxe__curve{
    position:absolute; bottom:-1px; left:0; width:100%; height:140px; display:block; pointer-events:none;
}

/* Logo/titre/sous-titre du hero */
.hero-luxe__logo{
    height:120px; width:auto; object-fit:contain; margin-bottom:20px;
    filter:drop-shadow(0 4px 12px rgba(0,0,0,.25));
}
@media (max-width:768px){ .hero-luxe__logo{ height:80px } }

.hero-luxe__title{
    font-family:"Noto Serif JP",serif; color:#fff; margin:0 0 6px;
    font-size:clamp(32px,5vw,60px); letter-spacing:.5px; text-shadow:0 2px 12px rgba(0,0,0,.35);
}
.hero-luxe__sub{ color:#F4F4F4; font-size:clamp(14px,2vw,18px); margin:0 }

/* Flèche “descendre” */
.scroll-cue{
    position:absolute; left:50%; bottom:18px; transform:translateX(-50%);
    z-index:5; text-decoration:none; font-size:28px; line-height:1;
    color:#fff; opacity:.85; transition: transform .3s ease, opacity .3s ease;
}
.scroll-cue:hover{ transform:translateX(-50%) translateY(2px); opacity:1 }

/* État du hero après un petit scroll */
.hero-luxe.scrolled{ height:60vh }
.hero-luxe.scrolled .hero-luxe__overlay{
    background:linear-gradient(180deg, rgba(0,0,0,.10) 0%, rgba(0,0,0,.30) 70%);
    backdrop-filter:blur(2px); opacity:.98;
}

/* ========== 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 }

/* ========== ANCRES sous NAV STICKY (si tu utilises #intro) ========== */
#intro{ scroll-margin-top:90px }
@media (min-width:992px){ #intro{ scroll-margin-top:110px } }


/* ========== 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}

body{
    background:var(--bg);
    color:var(--ink);
    font-family:Inter, system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
    line-height:1.6;
    font-size:16px;
}

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}

/* ===== NAV simple (transparent puis collant sage) ===== */
.nav-zen{
    position:sticky; top:0; z-index:50;
    backdrop-filter:saturate(120%) blur(8px);
    background:rgba(255,255,255,.75);
    border-bottom:1px solid rgba(0,0,0,.05);
}
.nav-zen .nav-inner{display:flex; align-items:center; justify-content:space-between; gap:16px; padding:12px 0}
.nav-brand{display:flex; gap:10px; align-items:center}
.nav-brand img{height:38px; width:auto; object-fit:contain}
.nav-links{display:flex; gap:18px; align-items:center; flex-wrap:wrap}
.nav-links a{padding:8px 10px; border-radius:10px; transition:background .2s ease}
.nav-links a:hover{background:rgba(0,0,0,.06)}
.btn-ghost{padding:10px 16px; border-radius:999px; border:1px solid rgba(0,0,0,.12);}

/* ===== 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;
}


/* Option "whisper" ultra-douce (presque imperceptible) */
.hero__logo,
.hero__subtitle,
.hero__cta{
    opacity: .98;
    transform: translateY(4px);
    animation: softIn .35s ease-out forwards;
}
.hero__subtitle{ animation-delay: .05s; }
.hero__cta{ animation-delay: .10s; }

@keyframes softIn {
    to { opacity: 1; transform: none; }
}


/* === ANTI-FLASH (coller en bas du CSS) ===================== */

/* 1) Fond de secours sombre (s'affiche avant l'image) */
:root { --hero-fallback:#1f2b25; } /* vert très sombre, zen */

/* 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; }
}

/* === PATCH ANTI-FLASH + FONDU DOUX (à coller tout en bas) ============ */

/* 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; }

/* 4) Fondu doux du logo + texte (si tu veux le bouton aussi, ajoute la classe) */
.hero__logo,
.hero__subtitle{
    opacity: 0;
    transform: translateY(10px);
    animation: softFadeUp .9s ease-out forwards;
}
.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;
}

/* 2) Nav accueil non-Bootstrap : rendre le menu fluide sur petits écrans */
@media (max-width: 640px){
    .nav-inner{
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 6px;
    }
    .nav-brand img{ height: 34px; width: auto; }
    .nav-links{
        display: flex;
        flex-wrap: wrap;
        justify-content: center;
        gap: 10px;
        max-width: 100%;
    }
    .nav-links a{
        padding: 6px 10px;
        line-height: 1.2;
        white-space: nowrap; /* évite des retours bizarres */
    }
}

/* 3) Le padding-top global n’est pas nécessaire avec une nav sticky */
body{ padding-top: 0 !important; }

/* 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; }
}
