/* =====================================================================
   HAPPY VITALITY — style.css
   Cabinet de massage bien-être · Donville-les-Bains, Normandie
===================================================================== */

/* =====================================================================
   VARIABLES & RESET
===================================================================== */
:root {
  --navy: #0d1b4b;
  --navy-l: #162260;
  --gold: #C8942A;
  --gold-l: #e0a93a;
  --gold-pale: #f5e6c8;
  --cream: #fdf8f0;
  --cream-d: #f5ede0;
  --white: #fff;
  --text: #1a1a2e;
  --mid: #3d3d5c;
  --light: #7a7a9a;
  --ease: 0.35s cubic-bezier(.4, 0, .2, 1);
  --nav-h: 68px;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body { font-family: 'Lato', sans-serif; background: var(--cream); color: var(--text); line-height: 1.7; overflow-x: hidden; }
img { max-width: 100%; display: block; object-fit: cover; }
a { color: inherit; text-decoration: none; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }
ul { list-style: none; }
h1, h2, h3, h4 { font-family: 'Cormorant Garamond', serif; line-height: 1.2; }
h1 { font-size: clamp(2rem, 5vw, 3.8rem); font-weight: 700; }
h2 { font-size: clamp(1.6rem, 3.5vw, 2.6rem); font-weight: 600; }
h3 { font-size: clamp(1.15rem, 2vw, 1.65rem); font-weight: 600; }
p { font-size: 1rem; color: var(--mid); }

/* =====================================================================
   LAYOUT UTILITIES
===================================================================== */
.container { max-width: 1100px; margin: 0 auto; padding: 0 1.5rem; }
.section { padding: 5rem 0; }
.section-sm { padding: 3rem 0; }
.page-top { padding-top: var(--nav-h); }

/* =====================================================================
   TYPOGRAPHY HELPERS
===================================================================== */
.section-eyebrow {
  font-family: 'Lato', sans-serif; font-size: .71rem; letter-spacing: .32em;
  text-transform: uppercase; color: var(--gold); display: block; margin-bottom: .5rem;
}
.section-hd { text-align: center; margin-bottom: 3.5rem; }
.section-hd h2 { color: var(--navy); margin-bottom: .75rem; }
.section-hd p { max-width: 540px; margin: 0 auto; }
.gold-bar { width: 60px; height: 2px; background: linear-gradient(90deg, transparent, var(--gold), transparent); margin: 1rem auto 0; }
.divider { display: flex; align-items: center; gap: 1rem; margin: 1.5rem 0; }
.divider::before, .divider::after { content: ''; flex: 1; height: 1px; background: var(--gold); opacity: .3; }
.divider span { color: var(--gold); }

/* =====================================================================
   BUTTONS
===================================================================== */
.btn {
  display: inline-block; font-family: 'Lato', sans-serif; font-size: .84rem;
  letter-spacing: .14em; text-transform: uppercase; font-weight: 700;
  padding: .85rem 2rem; border-radius: 4px; transition: var(--ease); cursor: pointer;
}
.btn-gold { background: var(--gold); color: var(--navy); position: relative; overflow: hidden; }
.btn-gold::after {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(135deg, rgba(255,255,255,0) 0%, rgba(255,255,255,.18) 50%, rgba(255,255,255,0) 100%);
  transform: translateX(-100%) skewX(-20deg); transition: transform 0s;
}
.btn-gold:hover::after { transform: translateX(200%) skewX(-20deg); transition: transform 0.5s ease; }
.btn-gold:hover { background: var(--gold-l); transform: translateY(-2px); box-shadow: 0 8px 24px rgba(200,148,42,.35); }
.btn-outline { border: 2px solid var(--gold); color: var(--gold); background: transparent; }
.btn-outline:hover { background: var(--gold); color: var(--navy); transform: translateY(-2px); }
.btn-white { background: var(--white); color: var(--navy); }
.btn-white:hover { background: var(--gold-pale); transform: translateY(-2px); }

/* =====================================================================
   PHOTO SLOTS
===================================================================== */
.photo-slot {
  position: relative; overflow: hidden; border-radius: 4px;
  background: var(--navy-l); display: block;
}
.photo-slot img {
  position: absolute; inset: 0; width: 100%; height: 100%;
  object-fit: cover; transition: transform .5s ease;
}
.photo-slot:hover img { transform: scale(1.04); }
.photo-slot .ph {
  position: absolute; inset: 0; display: flex; flex-direction: column;
  align-items: center; justify-content: center; text-align: center; padding: 1.5rem;
  background: linear-gradient(135deg, #0d1b4b 0%, #1a2f6a 100%); pointer-events: none;
}
.photo-slot img ~ .ph { display: none; }
.ph-icon { font-size: 2rem; opacity: .4; margin-bottom: .6rem; }
.ph p { font-size: .75rem; color: rgba(255,255,255,.3); line-height: 1.4; }
.photo-caption {
  position: absolute; bottom: 0; left: 0; right: 0;
  padding: 1.4rem 1rem .75rem;
  background: linear-gradient(to top, rgba(13,27,75,.7) 0%, transparent 100%);
  color: rgba(255,255,255,.85); font-size: .76rem; font-style: italic; pointer-events: none;
}

/* =====================================================================
   HEADER / NAV
===================================================================== */
header {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  background: var(--navy); border-bottom: 1px solid rgba(200,148,42,.25);
  transition: var(--ease);
}
header.scrolled { box-shadow: 0 4px 30px rgba(13,27,75,.4); }
nav { display: flex; align-items: center; height: var(--nav-h); gap: .5rem; }

.logo-wrap { display: flex; align-items: center; gap: .55rem; cursor: pointer; flex-shrink: 0; max-width: 195px; }
.logo-svg { width: 36px; height: 36px; flex-shrink: 0; }
.logo-text { display: flex; flex-direction: column; line-height: 1; overflow: hidden; min-width: 0; }
.logo-script { font-family: 'Tangerine', cursive; font-size: 1.8rem; font-weight: 700; color: var(--gold); white-space: nowrap; }
.logo-sub { font-family: 'Lato', sans-serif; font-size: .49rem; letter-spacing: .15em; color: rgba(255,255,255,.4); text-transform: uppercase; white-space: nowrap; }

.nav-links { display: flex; align-items: center; flex: 1; justify-content: flex-end; flex-wrap: nowrap; gap: 0; }
.nav-links a {
  font-family: 'Lato', sans-serif; font-size: .7rem; letter-spacing: .07em;
  text-transform: uppercase; color: rgba(255,255,255,.78);
  padding: .4rem .48rem; border-radius: 3px; transition: var(--ease); white-space: nowrap;
  position: relative;
}
.nav-links a::after {
  content: ''; position: absolute; bottom: -2px; left: 50%;
  width: 0; height: 1.5px; background: var(--gold); transition: width 0.25s ease, left 0.25s ease;
}
.nav-links a:hover, .nav-links a.active { color: var(--gold); }
.nav-links a.active::after, .nav-links a:hover::after { width: 70%; left: 15%; }
.nav-cta {
  background: var(--gold) !important; color: var(--navy) !important;
  font-weight: 700 !important; padding: .46rem .9rem !important;
  border-radius: 3px; margin-left: .4rem;
}
.nav-cta:hover { background: var(--gold-l) !important; }
.nav-cta::after { display: none !important; }

/* Dropdown massages */
.nav-dropdown { position: relative; }
.nav-dropdown > a { padding-right: 1.1rem !important; }
.nav-dropdown > a::before {
  content: '▾'; position: absolute; right: .2rem; top: 50%;
  transform: translateY(-50%); font-size: .55rem; color: rgba(255,255,255,.5);
  transition: var(--ease); pointer-events: none;
}
.nav-dropdown:hover > a::before { color: var(--gold); }
.dropdown-menu {
  display: none; position: absolute; top: 100%; left: 50%; transform: translateX(-50%);
  background: var(--navy); border: 1px solid rgba(200,148,42,.2); border-radius: 4px;
  min-width: 200px; padding: .5rem 0; z-index: 200;
  box-shadow: 0 12px 40px rgba(13,27,75,.5);
  /* Padding-top invisible pour combler le gap entre le lien et le menu */
  margin-top: 0;
}
/* Pont invisible pour éviter que le menu se referme entre le lien et le menu */
.nav-dropdown > a::after {
  content: ''; position: absolute; bottom: -12px; left: 0;
  width: 100%; height: 12px; background: transparent;
}
.nav-dropdown:hover .dropdown-menu { display: block; }
.dropdown-menu a {
  display: block; font-size: .69rem; padding: .55rem 1.1rem;
  color: rgba(255,255,255,.75) !important; white-space: nowrap;
}
.dropdown-menu a:hover { color: var(--gold) !important; background: rgba(200,148,42,.08); }
.dropdown-menu .dropdown-section {
  font-size: .58rem; letter-spacing: .2em; text-transform: uppercase;
  color: rgba(200,148,42,.5); padding: .6rem 1.1rem .3rem; pointer-events: none;
}
.dropdown-menu a::after { display: none !important; }

.hamburger { display: none; flex-direction: column; gap: 5px; padding: 8px; flex-shrink: 0; }
.hamburger span { display: block; width: 24px; height: 2px; background: var(--gold); border-radius: 2px; transition: var(--ease); }
.hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.mobile-menu {
  display: none; position: fixed; top: var(--nav-h); left: 0; right: 0; bottom: 0;
  background: var(--navy); z-index: 999; overflow-y: auto;
  flex-direction: column; align-items: center; justify-content: center; gap: 1.2rem;
  backdrop-filter: blur(12px); -webkit-backdrop-filter: blur(12px);
}
.mobile-menu.open { display: flex; }
.mobile-menu a { font-family: 'Cormorant Garamond', serif; font-size: 1.5rem; font-weight: 600; color: var(--white); transition: var(--ease); }
.mobile-menu a:hover { color: var(--gold); }
.mobile-menu .mob-section {
  font-family: 'Lato', sans-serif; font-size: .58rem; letter-spacing: .25em;
  text-transform: uppercase; color: rgba(200,148,42,.5); margin-top: .5rem;
}
.mob-cta {
  font-family: 'Lato', sans-serif !important; font-size: .88rem !important;
  background: var(--gold); color: var(--navy) !important;
  padding: .75rem 1.8rem; border-radius: 4px; font-weight: 700 !important;
}

/* =====================================================================
   FOOTER
===================================================================== */
footer { background: var(--navy); color: rgba(255,255,255,.7); padding: 3.5rem 0 1.5rem; }
.footer-grid { display: grid; grid-template-columns: 1.6fr 1fr 1fr; gap: 3rem; margin-bottom: 2.5rem; }
.ftr-script { font-family: 'Tangerine', cursive; font-size: 3rem; font-weight: 700; color: var(--gold); display: block; margin-bottom: .75rem; }
.footer-brand p { font-size: .87rem; color: rgba(255,255,255,.55); }
.footer-col h4 { font-family: 'Lato', sans-serif; font-size: .7rem; letter-spacing: .25em; text-transform: uppercase; color: var(--gold); margin-bottom: 1.1rem; }
.footer-col ul { display: flex; flex-direction: column; gap: .5rem; }
.footer-col ul a { font-size: .87rem; color: rgba(255,255,255,.65); transition: var(--ease); }
.footer-col ul a:hover { color: var(--gold); }
.footer-col p { font-size: .85rem; color: rgba(255,255,255,.55); line-height: 1.8; }
.footer-bottom { border-top: 1px solid rgba(255,255,255,.1); padding-top: 1.5rem; display: flex; align-items: center; justify-content: space-between; font-size: .76rem; color: rgba(255,255,255,.3); }
.insta-link { display: inline-flex; align-items: center; gap: .45rem; color: var(--gold); font-size: .87rem; transition: var(--ease); }
.insta-link:hover { color: var(--gold-l); }

/* =====================================================================
   PAGE HERO (pages intérieures)
===================================================================== */
.page-hero {
  background: var(--navy); padding: 6.5rem 0 4.5rem; text-align: center; position: relative; overflow: hidden;
}
/* === FLEUR DE VIE — filigrane hero === */
.page-hero::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: min(420px, 80vw);
  height: min(420px, 80vw);
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 200 200'%3E%3Cg fill='none' stroke='%23C8942A' stroke-width='0.6' opacity='1'%3E%3Ccircle cx='100' cy='100' r='33.3'/%3E%3Ccircle cx='100' cy='66.7' r='33.3'/%3E%3Ccircle cx='100' cy='133.3' r='33.3'/%3E%3Ccircle cx='128.8' cy='83.3' r='33.3'/%3E%3Ccircle cx='128.8' cy='116.7' r='33.3'/%3E%3Ccircle cx='71.2' cy='83.3' r='33.3'/%3E%3Ccircle cx='71.2' cy='116.7' r='33.3'/%3E%3Ccircle cx='100' cy='100' r='66.6'/%3E%3Ccircle cx='100' cy='100' r='99.5'/%3E%3C/g%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center;
  opacity: 0.22;
  z-index: 1;
  pointer-events: none;
}

/* Le contenu hero reste au-dessus */
.page-hero-content,
.hero-content,
.page-hero h1,
.hero-italic {
  position: relative;
  z-index: 2;
}

.page-hero::after {
  content: ''; position: absolute; bottom: 0; left: 0; right: 0; height: 3px;
  background: linear-gradient(90deg, transparent, var(--gold) 30%, var(--gold) 70%, transparent); opacity: .45;
}
.page-hero h1 { color: var(--white); margin-bottom: .9rem; }
.hero-italic {
  font-family: 'Cormorant Garamond', serif; font-style: italic;
  font-size: 1.08rem; color: rgba(255,255,255,.62); max-width: 560px; margin: 0 auto; line-height: 1.7;
}
/* Badge "nouveauté" */
.badge-new {
  display: inline-block; background: var(--gold); color: var(--navy);
  font-family: 'Lato', sans-serif; font-size: .58rem; letter-spacing: .18em; text-transform: uppercase;
  font-weight: 700; padding: .18rem .6rem; border-radius: 20px; margin-left: .6rem; vertical-align: middle;
}
/* Badge "pro" */
.badge-pro {
  display: inline-block; background: var(--navy-l); color: var(--gold); border: 1px solid rgba(200,148,42,.4);
  font-family: 'Lato', sans-serif; font-size: .58rem; letter-spacing: .18em; text-transform: uppercase;
  font-weight: 700; padding: .18rem .6rem; border-radius: 20px; margin-left: .6rem; vertical-align: middle;
}

/* =====================================================================
   MASSAGE DETAIL LAYOUT
===================================================================== */
.massage-content-wrap { background: var(--cream); }
.massage-layout { display: grid; grid-template-columns: 1fr 310px; gap: 4rem; align-items: start; }

.problem-block {
  background: var(--cream-d); border-left: 4px solid var(--gold);
  border-radius: 0 4px 4px 0; padding: 1.8rem 1.8rem 1.8rem 1.6rem; margin-bottom: 2.5rem;
}
.problem-block .pb-label {
  font-family: 'Lato', sans-serif; font-size: .67rem; letter-spacing: .28em;
  text-transform: uppercase; color: var(--gold); margin-bottom: .55rem; display: block;
}
.problem-block h3 { color: var(--navy); font-size: 1.28rem; margin-bottom: .65rem; }
.problem-block p { font-size: .94rem; line-height: 1.75; }

.results-block { margin-bottom: 2.5rem; }
.results-block h3 { color: var(--navy); font-size: 1.28rem; margin-bottom: 1.1rem; }
.benefits-list { display: flex; flex-direction: column; gap: .65rem; }
.benefit-item { display: flex; align-items: flex-start; gap: .75rem; transition: opacity 0.5s ease, transform 0.5s ease; }
.benefit-dot { width: 6px; height: 6px; border-radius: 50%; background: var(--gold); flex-shrink: 0; margin-top: .65rem; }
.benefit-item span { font-size: .93rem; color: var(--mid); }

.process-block { margin-bottom: 2rem; }
.process-block h3 { color: var(--navy); font-size: 1.28rem; margin-bottom: 1.1rem; }
.process-steps { display: flex; flex-direction: column; gap: 1rem; }
.process-step { display: flex; gap: 1rem; align-items: flex-start; }
.step-num {
  width: 30px; height: 30px; border-radius: 50%;
  background: var(--navy); color: var(--gold);
  font-family: 'Cormorant Garamond', serif; font-weight: 700; font-size: .93rem;
  display: flex; align-items: center; justify-content: center; flex-shrink: 0; margin-top: .15rem;
  transition: background 0.25s ease, color 0.25s ease, transform 0.25s ease;
}
.process-step:hover .step-num { background: var(--gold); color: var(--navy); transform: scale(1.12); }
.process-step p { font-size: .92rem; line-height: 1.65; margin: 0; }
.tip { margin-top: 1.2rem; font-size: .83rem; color: var(--light); font-style: italic; }

/* Price card */
.price-card { background: var(--navy); border-radius: 4px; padding: 2.1rem; position: sticky; top: 86px; }
/* Page RDV : plusieurs cards dans l'aside, on désactive le sticky */
[data-page="rdv"] .price-card { position: static; }
.price-card h3 { color: var(--white); margin-bottom: 1.4rem; font-size: 1.18rem; }
.price-option {
  border-bottom: 1px solid rgba(255,255,255,.08); padding: .85rem 0;
  display: flex; justify-content: space-between; align-items: center;
  transition: background 0.2s ease, padding 0.2s ease; border-radius: 3px;
  padding-left: 6px; padding-right: 6px;
}
.price-option:last-of-type { border-bottom: none; }
.price-option:hover { background: rgba(200,148,42,.08); }
.price-option .dur { font-size: .86rem; color: rgba(255,255,255,.58); }
.price-option .prc { font-family: 'Cormorant Garamond', serif; font-size: 1.45rem; color: var(--gold); font-weight: 700; }
.price-note { color: rgba(255,255,255,.38); font-size: .76rem; margin-top: .9rem; line-height: 1.55; }
.price-card .btn { width: 100%; text-align: center; margin-top: 1.4rem; display: block; }

/* Price card PRO (devis) */
.price-card-pro { background: var(--navy); border-radius: 4px; padding: 2.1rem; position: sticky; top: 86px; border: 1px solid rgba(200,148,42,.3); }
.price-card-pro h3 { color: var(--white); margin-bottom: .8rem; font-size: 1.18rem; }
.price-card-pro .pro-label {
  font-family: 'Lato', sans-serif; font-size: .67rem; letter-spacing: .25em; text-transform: uppercase;
  color: var(--gold); margin-bottom: 1rem; display: block;
}
.price-card-pro p { color: rgba(255,255,255,.58); font-size: .85rem; line-height: 1.65; margin-bottom: 1.2rem; }
.price-card-pro .contact-item {
  display: flex; align-items: center; gap: .6rem;
  color: rgba(255,255,255,.75); font-size: .88rem; margin-bottom: .65rem;
}
.price-card-pro .contact-item a { color: var(--gold); }
.price-card-pro .contact-item a:hover { color: var(--gold-l); }
.price-card-pro .btn { width: 100%; text-align: center; margin-top: 1.4rem; display: block; }

/* Photo break */
.photo-break { padding: 0; }
.photo-break-inner { display: grid; grid-template-columns: 1fr 1fr 1fr; gap: 1rem; }
.photo-break-inner .photo-slot { height: 220px; }

/* CTA band */
.cta-band {
  background: var(--navy); padding: 4rem 0; text-align: center;
  border-top: 1px solid rgba(200,148,42,.15);
}
.cta-band h2 { color: var(--white); margin-bottom: .75rem; }
.cta-band p { color: rgba(255,255,255,.58); margin-bottom: 1.8rem; }

/* =====================================================================
   HOME — HERO
===================================================================== */
.hero {
  min-height: 100vh; background: var(--navy);
  display: flex; align-items: center; position: relative; overflow: hidden;
}
.hero-bg {
  position: absolute; inset: 0;
  background: radial-gradient(ellipse at 75% 50%, rgba(200,148,42,.09) 0%, transparent 55%),
              radial-gradient(ellipse at 20% 80%, rgba(22,34,96,.8) 0%, transparent 50%);
}
.hero-pattern {
  position: absolute; inset: 0;
  background-image: repeating-linear-gradient(45deg, transparent, transparent 40px, rgba(200,148,42,.025) 40px, rgba(200,148,42,.025) 41px);
}
.hero-ornament {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  width: min(480px, 90vw);
  height: min(480px, 90vw);
  opacity: 0.52;
  pointer-events: none;
  z-index: 1;
}
.hero-content { position: relative; z-index: 2; max-width: 660px; }
.hero-label {
  font-family: 'Lato', sans-serif; font-size: .7rem; letter-spacing: .4em;
  text-transform: uppercase; color: var(--gold); margin-bottom: 1.1rem;
  display: flex; align-items: center; gap: .75rem;
}
.hero-label::before { content: ''; width: 26px; height: 1px; background: var(--gold); }
.hero-script {
  font-family: 'Tangerine', cursive; font-weight: 700; color: var(--gold);
  font-size: clamp(4.5rem, 11vw, 9rem); display: block; line-height: 1; margin-bottom: .75rem;
  background: linear-gradient(90deg, var(--gold) 0%, var(--gold-l) 40%, var(--gold) 80%);
  background-size: 200% auto; -webkit-background-clip: text; -webkit-text-fill-color: transparent;
  background-clip: text; animation: shimmer 3.5s linear infinite;
}
@keyframes shimmer { from { background-position: 200% center; } to { background-position: -200% center; } }
.hero-sub {
  font-family: 'Cormorant Garamond', serif; font-size: clamp(1rem, 1.8vw, 1.1rem);
  color: rgba(255,255,255,.6); margin-bottom: 2.4rem; max-width: 500px;
  font-style: italic; line-height: 1.75;
}
.hero-actions { display: flex; gap: 1rem; flex-wrap: wrap; }
.hero-scroll {
  position: absolute; bottom: 2.5rem; left: 50%; transform: translateX(-50%);
  display: flex; flex-direction: column; align-items: center; gap: .5rem;
  color: rgba(255,255,255,.3); font-size: .63rem; letter-spacing: .2em; text-transform: uppercase;
  transition: opacity 0.4s ease;
}
.hero-scroll.hidden { opacity: 0; }
.scroll-line { width: 1px; height: 34px; background: linear-gradient(to bottom, var(--gold), transparent); animation: pulse 2s ease-in-out infinite; }
@keyframes pulse { 0%, 100% { opacity: .3; } 50% { opacity: 1; } }

/* Home — intro strip */
.intro-strip { background: var(--cream-d); padding: 3rem 0; }
.intro-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2rem; }
.intro-item { text-align: center; }
.intro-icon { font-size: 1.8rem; margin-bottom: .65rem; display: inline-block; animation: float 3s ease-in-out infinite; }
.intro-item:nth-child(2) .intro-icon { animation-delay: 0.5s; }
.intro-item:nth-child(3) .intro-icon { animation-delay: 1s; }
@keyframes float { 0%, 100% { transform: translateY(0); } 50% { transform: translateY(-6px); } }
.intro-item h4 { font-family: 'Cormorant Garamond', serif; font-size: 1.02rem; color: var(--navy); font-weight: 600; }
.intro-item p { font-size: .86rem; color: var(--light); margin-top: .25rem; }

/* Home — about preview */
.about-preview { background: var(--cream); }
.about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 5rem; align-items: center; }
.about-visual-wrap { position: relative; }
.about-photo-slot { width: 100%; aspect-ratio: 3/4; border-radius: 4px; overflow: hidden; background: var(--navy-l); display: block; }
.about-photo-slot img { width: 100%; height: 100%; object-fit: cover; }
.about-badge {
  position: absolute; bottom: -1.4rem; right: -1.4rem;
  background: var(--gold); color: var(--navy);
  width: 90px; height: 90px; border-radius: 50%;
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  font-family: 'Cormorant Garamond', serif; font-size: .7rem; text-align: center; line-height: 1.3; font-weight: 700;
  animation: badgePulse 4s ease-in-out infinite;
}
@keyframes badgePulse {
  0%, 100% { transform: scale(1); box-shadow: 0 4px 20px rgba(200,148,42,.3); }
  50% { transform: scale(1.04); box-shadow: 0 8px 28px rgba(200,148,42,.5); }
}
.about-badge strong { font-size: 1.22rem; display: block; }
.about-text .section-eyebrow { text-align: left; }
.about-text h2 { color: var(--navy); margin-bottom: 1rem; }
.about-text p { margin-bottom: 1.2rem; }

/* Home — massages cards */
.massages-section { background: var(--navy); padding: 5rem 0; }
.massages-section .section-hd h2 { color: var(--white); }
.massages-section .section-hd p { color: rgba(255,255,255,.58); }
.massages-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1.5rem; }

/* Massages grid — 3 cols for particuliers */
.massages-grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; }
.massages-grid-2 { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1.5rem; }

.massage-card {
  background: rgba(255,255,255,.04); border: 1px solid rgba(200,148,42,.2);
  border-radius: 4px; transition: var(--ease);
  position: relative; overflow: hidden;
  box-shadow: none;
}
.massage-card::before {
  content: ''; position: absolute; top: 0; left: 0; width: 3px; height: 0;
  background: var(--gold); transition: var(--ease);
}
.massage-card:hover::before { height: 100%; }
.massage-card:hover { background: rgba(255,255,255,.07); transform: translateY(-3px); border-color: rgba(200,148,42,.45); box-shadow: 0 16px 48px rgba(200,148,42,.18); }

.mc-photo { height: 190px; overflow: hidden; display: block; position: relative; background: var(--navy-l); }
.mc-photo img { width: 100%; height: 100%; object-fit: cover; transition: transform .6s ease; }
.massage-card:hover .mc-photo img { transform: scale(1.06); }
.mc-photo .ph { position: absolute; inset: 0; display: flex; flex-direction: column; align-items: center; justify-content: center; background: linear-gradient(135deg, #0d1b4b, #1a2f6a); }
.mc-body { padding: 1.5rem 1.4rem 1.4rem; }
.mc-body h3 { color: var(--white); font-size: 1.18rem; margin-bottom: .5rem; }
.mc-body p { font-size: .87rem; color: rgba(255,255,255,.55); line-height: 1.6; margin-bottom: .9rem; }
.mc-price { font-family: 'Cormorant Garamond', serif; font-size: .93rem; color: var(--gold); margin-bottom: .6rem; }
.mc-link { font-family: 'Lato', sans-serif; font-size: .7rem; letter-spacing: .14em; text-transform: uppercase; color: rgba(255,255,255,.35); display: flex; align-items: center; gap: .4rem; transition: var(--ease); }
.mc-link span { transition: transform .3s; }
.massage-card:hover .mc-link { color: var(--gold); }
.massage-card:hover .mc-link span { transform: translateX(4px); }

/* Photo band */
.photo-band { display: grid; grid-template-columns: 2fr 1fr 1fr; gap: .75rem; height: 280px; }
.photo-band .photo-slot { height: 100%; border-radius: 0; }

/* Hours section */
.hours-section { background: var(--cream); }
.hours-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; align-items: start; }
.hours-table { width: 100%; border-collapse: collapse; }
.hours-table td { padding: .65rem .5rem; font-size: .9rem; border-bottom: 1px solid rgba(13,27,75,.07); }
.hours-table td:first-child { font-weight: 700; color: var(--navy); width: 130px; }
.hours-table td:last-child { color: var(--mid); }
.hours-table tr.closed td { color: var(--light); font-style: italic; }
.hours-aside { background: var(--navy); border-radius: 4px; overflow: hidden; }
.hours-aside-photo { height: 160px; position: relative; }
.hours-aside-photo img { width: 100%; height: 100%; object-fit: cover; }
.hours-aside-body { padding: 1.6rem; }
.hours-aside-body h3 { color: var(--white); font-size: 1.1rem; margin-bottom: .65rem; }
.hours-aside-body p { color: rgba(255,255,255,.55); font-size: .87rem; line-height: 1.65; }
.location-badge {
  display: inline-block; background: rgba(200,148,42,.15); color: var(--gold);
  font-size: .7rem; letter-spacing: .12em; padding: .28rem .7rem; border-radius: 20px;
  font-family: 'Lato', sans-serif; text-transform: uppercase; margin-bottom: .8rem;
}

/* =====================================================================
   TARIFS PAGE
===================================================================== */
.tarifs-wrap { background: var(--cream); }
.tarifs-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; margin-bottom: 2rem; }
.tarif-card {
  background: var(--white); border-radius: 4px; overflow: hidden;
  border: 1px solid rgba(13,27,75,.08); box-shadow: 0 2px 16px rgba(13,27,75,.05);
  transition: var(--ease); cursor: pointer;
}
.tarif-card:hover { transform: translateY(-4px); box-shadow: 0 12px 40px rgba(13,27,75,.12); border-color: var(--gold); }
.tarif-card-head { background: var(--navy); padding: 1.4rem 1.4rem 1.1rem; display: flex; align-items: center; gap: .75rem; }
.tarif-card-head span { font-size: 1.5rem; }
.tarif-card-head h3 { color: var(--white); font-size: 1rem; }
.tarif-card-body { padding: 1.2rem 1.4rem 1.4rem; }
.tarif-row { display: flex; justify-content: space-between; align-items: center; padding: .55rem 0; border-bottom: 1px solid rgba(13,27,75,.06); }
.tarif-row:last-child { border-bottom: none; }
.tarif-row .dur { font-size: .87rem; color: var(--mid); }
.tarif-row .prc { font-family: 'Cormorant Garamond', serif; font-size: 1.3rem; color: var(--gold); font-weight: 700; }
.tarif-card-pro .tarif-card-head { background: var(--navy-l); }
.tarif-row-devis { padding: .7rem 0; color: var(--mid); font-size: .88rem; font-style: italic; }
.tarifs-note { background: var(--cream-d); border-radius: 4px; padding: 1.5rem; margin-top: 2rem; }
.tarifs-note p { font-size: .87rem; }

/* =====================================================================
   QUI SUIS-JE PAGE
===================================================================== */
.about-page-wrap { background: var(--cream); }
.about-page-grid { display: grid; grid-template-columns: 340px 1fr; gap: 4.5rem; align-items: start; }
.about-page-photo { width: 100%; aspect-ratio: 3/4; border-radius: 4px; overflow: hidden; background: var(--navy-l); display: block; }
.about-page-photo img { width: 100%; height: 100%; object-fit: cover; }
.about-page-text h2 { color: var(--navy); margin-bottom: 1rem; }
.about-page-text p { margin-bottom: 1.1rem; }
.values-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1.2rem; margin: 2rem 0; }
.value-item { background: var(--cream-d); border-radius: 4px; padding: 1.3rem; border-top: 3px solid var(--gold); }
.value-item h4 { font-family: 'Cormorant Garamond', serif; color: var(--navy); font-size: 1.05rem; margin-bottom: .4rem; }
.value-item p { font-size: .86rem; }
.formation-block { background: var(--navy); border-radius: 4px; padding: 1.8rem; margin-top: 1.5rem; }
.formation-block h4 { font-family: 'Cormorant Garamond', serif; color: var(--gold); font-size: 1.05rem; margin-bottom: 1rem; }
.formation-item { display: flex; gap: .6rem; align-items: flex-start; margin-bottom: .65rem; }
.formation-dot { width: 5px; height: 5px; border-radius: 50%; background: var(--gold); flex-shrink: 0; margin-top: .6rem; }
.formation-item span { font-size: .88rem; color: rgba(255,255,255,.65); line-height: 1.5; }

/* Cabinet gallery */
.cabinet-gallery { background: var(--cream-d); padding: 4rem 0; }
.gallery-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1rem; }
.gallery-item { border-radius: 4px; overflow: hidden; background: var(--navy-l); position: relative; aspect-ratio: 4/3; }
.gallery-item img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s ease; }
.gallery-item:hover img { transform: scale(1.05); }
.gallery-wide { grid-column: span 2; aspect-ratio: 16/9; }
/* Grilles dédiées page qui-suis-je */
.gallery-3col { grid-template-columns: repeat(3, 1fr); }
.gallery-2col { grid-template-columns: repeat(2, 1fr); }
.gallery-item-tall { aspect-ratio: 3/4; }

/* Video block */
.video-block { position: relative; border-radius: 4px; overflow: hidden; background: var(--navy); margin: 2rem 0; }
.video-block video { width: 100%; display: block; max-height: 400px; object-fit: cover; }

/* =====================================================================
   CONTACT / RDV PAGE
===================================================================== */
.rdv-wrap { background: var(--cream); }
.rdv-contact-grid { display: grid; grid-template-columns: 1fr 360px; gap: 3rem; align-items: start; }
.calendly-block { flex: 1; }
.url-config { display: flex; gap: .75rem; align-items: center; margin-bottom: 1.2rem; flex-wrap: wrap; }
.url-config label { font-size: .78rem; color: var(--mid); white-space: nowrap; }
.url-config input {
  flex: 1; min-width: 220px; font-family: 'Lato', sans-serif; font-size: .84rem;
  border: 1.5px solid rgba(13,27,75,.15); border-radius: 3px; padding: .55rem .9rem;
  outline: none; background: var(--cream); color: var(--text); transition: var(--ease);
}
.url-config input:focus { border-color: var(--gold); box-shadow: 0 0 0 3px rgba(200,148,42,.1); }
.calendly-wrap { position: relative; min-height: 500px; }
.cal-notice {
  background: var(--navy); border-radius: 4px; padding: 2.5rem; text-align: center;
}
.cal-notice.hidden { display: none; }
.n-icon { font-size: 2.5rem; margin-bottom: 1rem; }
.cal-notice h3 { color: var(--navy); color: var(--white); margin-bottom: .65rem; font-size: 1.4rem; }
.cal-notice p { font-size: .88rem; color: rgba(255,255,255,.65); max-width: 400px; margin: 0 auto 1.3rem; line-height: 1.7; }
.setup-steps {
  text-align: left; background: rgba(255,255,255,.06); border-radius: 4px;
  padding: 1.3rem; margin: .8rem 0 1.5rem; width: 100%; max-width: 420px; margin: 0 auto 1rem;
}
.setup-steps h4 { font-family: 'Lato', sans-serif; font-size: .69rem; letter-spacing: .25em; text-transform: uppercase; color: var(--gold); margin-bottom: .8rem; }
.setup-steps ol { padding-left: 1.1rem; display: flex; flex-direction: column; gap: .55rem; }
.setup-steps ol li { font-size: .86rem; color: rgba(255,255,255,.65); line-height: 1.55; }
.setup-steps ol li a { color: var(--gold); text-decoration: underline; }
.setup-steps code { background: rgba(0,0,0,.3); color: var(--gold); padding: .1em .38em; border-radius: 3px; font-size: .8em; }
.calendly-inline-widget { min-height: 660px !important; }
.notif-badge {
  display: inline-flex; align-items: center; gap: .38rem;
  background: #e8f5e9; color: #2e7d32;
  font-size: .71rem; font-weight: 700; letter-spacing: .08em; text-transform: uppercase;
  padding: .26rem .62rem; border-radius: 20px; margin-bottom: .65rem;
}
.notif-badge::before { content: '●'; font-size: .5rem; color: #4caf50; }

/* Contact aside */
.contact-aside { display: flex; flex-direction: column; gap: 1.3rem; }
.aside-card {
  background: var(--white); border-radius: 4px; padding: 1.5rem;
  border-left: 3px solid var(--gold); box-shadow: 0 2px 12px rgba(13,27,75,.04);
}
.aside-card h4 { font-family: 'Cormorant Garamond', serif; color: var(--navy); font-size: 1.05rem; font-weight: 600; margin-bottom: .6rem; }
.aside-card p { font-size: .84rem; color: var(--mid); line-height: 1.7; }

/* Formulaire de contact */
.contact-form-wrap { background: var(--white); border-radius: 4px; padding: 2rem; box-shadow: 0 4px 30px rgba(13,27,75,.06); }
.contact-form-wrap h3 { color: var(--navy); margin-bottom: 1.3rem; font-size: 1.3rem; }
.form-group { margin-bottom: 1rem; }
.form-group label {
  font-family: 'Lato', sans-serif; font-size: .7rem; letter-spacing: .14em;
  text-transform: uppercase; color: var(--navy); font-weight: 700; display: block; margin-bottom: .38rem;
}
.form-group input, .form-group textarea, .form-group select {
  width: 100%; font-family: 'Lato', sans-serif; font-size: .91rem;
  border: 1.5px solid rgba(13,27,75,.15); border-radius: 3px;
  padding: .66rem .9rem; outline: none; background: var(--cream);
  color: var(--text); transition: var(--ease);
}
.form-group input:focus, .form-group textarea:focus, .form-group select:focus {
  border-color: var(--gold); box-shadow: 0 0 0 3px rgba(200,148,42,.1); background: var(--white);
}
.form-group textarea { resize: vertical; min-height: 100px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.form-success {
  display: none; background: #e8f5e9; border: 1px solid #a5d6a7;
  border-radius: 4px; padding: 1rem; color: #2e7d32; font-size: .87rem; text-align: center; margin-top: 1rem;
}
.form-success.visible { display: block; }
.contact-photo-slot { height: 200px; border-radius: 4px; margin-top: 1.2rem; display: block; position: relative; background: var(--navy-l); }
.contact-photo-slot img { width: 100%; height: 100%; object-fit: cover; }

/* =====================================================================
   SCROLL REVEAL
===================================================================== */
.reveal { opacity: 0; transform: translateY(28px); transition: opacity 0.65s cubic-bezier(.4,0,.2,1), transform 0.65s cubic-bezier(.4,0,.2,1); }
.reveal.visible { opacity: 1; transform: translateY(0); }
.reveal-left { opacity: 0; transform: translateX(-32px); transition: opacity 0.65s cubic-bezier(.4,0,.2,1), transform 0.65s cubic-bezier(.4,0,.2,1); }
.reveal-left.visible { opacity: 1; transform: translateX(0); }
.reveal-right { opacity: 0; transform: translateX(32px); transition: opacity 0.65s cubic-bezier(.4,0,.2,1), transform 0.65s cubic-bezier(.4,0,.2,1); }
.reveal-right.visible { opacity: 1; transform: translateX(0); }
.reveal-scale { opacity: 0; transform: scale(0.92); transition: opacity 0.6s cubic-bezier(.4,0,.2,1), transform 0.6s cubic-bezier(.4,0,.2,1); }
.reveal-scale.visible { opacity: 1; transform: scale(1); }
.delay-1 { transition-delay: 0.1s; }
.delay-2 { transition-delay: 0.2s; }
.delay-3 { transition-delay: 0.3s; }
.delay-4 { transition-delay: 0.4s; }
.delay-5 { transition-delay: 0.5s; }

/* Progress bar */
#progress-bar {
  position: fixed; top: 0; left: 0; height: 3px; width: 0%;
  background: linear-gradient(90deg, var(--gold), var(--gold-l));
  z-index: 9999; transition: width 0.1s linear; pointer-events: none;
}
/* Back to top */
#back-top {
  position: fixed; bottom: 2rem; right: 2rem; width: 46px; height: 46px;
  background: var(--gold); border-radius: 50%; display: flex; align-items: center; justify-content: center;
  cursor: pointer; opacity: 0; transform: translateY(12px) scale(0.85);
  transition: opacity 0.35s ease, transform 0.35s ease, background 0.2s ease;
  z-index: 888; box-shadow: 0 4px 20px rgba(200,148,42,.45); border: none;
}
#back-top.visible { opacity: 1; transform: translateY(0) scale(1); }
#back-top:hover { background: var(--gold-l); transform: translateY(-3px) scale(1.05); }
#back-top svg { width: 18px; height: 18px; fill: var(--navy); }

/* Toast */
#toast {
  position: fixed; bottom: 2rem; left: 50%; transform: translateX(-50%) translateY(80px);
  background: var(--navy); color: white; padding: .75rem 1.6rem; border-radius: 40px;
  font-size: .82rem; border: 1px solid rgba(200,148,42,.3); z-index: 9998;
  white-space: nowrap; transition: transform 0.4s cubic-bezier(.4,0,.2,1), opacity 0.4s ease;
  opacity: 0; pointer-events: none;
}
#toast.show { transform: translateX(-50%) translateY(0); opacity: 1; }
#toast span { color: var(--gold); margin-right: .4rem; }

/* =====================================================================
   RESPONSIVE
===================================================================== */
@media (max-width: 960px) {
  .nav-links { display: none; }
  .hamburger { display: flex; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .footer-grid > *:first-child { grid-column: 1/-1; }
  .about-grid { grid-template-columns: 1fr; gap: 2.5rem; }
  .about-photo-slot { aspect-ratio: 16/9; max-height: 260px; }
  .about-badge { bottom: -.5rem; right: -.5rem; }
  .massages-grid { grid-template-columns: 1fr; }
  .massages-grid-3 { grid-template-columns: 1fr 1fr; }
  .massages-grid-2 { grid-template-columns: 1fr; }
  .photo-band { grid-template-columns: 1fr 1fr; height: auto; gap: .75rem; }
  .photo-band .photo-slot { height: 200px; }
  .photo-band .photo-slot:last-child { display: none; }
  .hours-grid { grid-template-columns: 1fr; }
  .intro-grid { grid-template-columns: 1fr; gap: 1.2rem; }
  .massage-layout { grid-template-columns: 1fr; }
  .price-card, .price-card-pro { position: static; }
  .photo-break-inner { grid-template-columns: 1fr 1fr; }
  .photo-break-inner .photo-slot:last-child { display: none; }
  .tarifs-grid { grid-template-columns: 1fr 1fr; }
  .about-page-grid { grid-template-columns: 1fr; }
  .about-page-photo { aspect-ratio: 4/3; max-height: 280px; }
  .values-grid { grid-template-columns: 1fr 1fr; }
  .rdv-contact-grid { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .gallery-grid { grid-template-columns: 1fr 1fr; }
  .gallery-wide { grid-column: span 1; }
}
@media (max-width: 600px) {
  .section { padding: 3rem 0; }
  .footer-grid { grid-template-columns: 1fr; }
  .hero-actions { flex-direction: column; }
  .values-grid { grid-template-columns: 1fr; }
  .page-hero { padding: 5.5rem 0 3.5rem; }
  .photo-band { display: none; }
  .massages-grid-3 { grid-template-columns: 1fr; }
  .tarifs-grid { grid-template-columns: 1fr; }
  .gallery-grid { grid-template-columns: 1fr; }
}

/* =============================================
   PAGE RENDEZ-VOUS
   ============================================= */

/* Layout principal */
.rdv-section { background: var(--white); }
.rdv-layout {
  display: grid;
  grid-template-columns: 1fr 340px;
  gap: 3rem;
  align-items: start;
}

/* Card principale (Calendly) */
.rdv-card {
  background: var(--white);
  border-radius: 6px;
  padding: 2.5rem;
  box-shadow: 0 4px 40px rgba(13,27,75,.07);
  border: 1px solid rgba(13,27,75,.06);
}
.rdv-card h2 {
  color: var(--navy);
  font-family: 'Cormorant Garamond', serif;
  font-size: 2rem;
  margin-bottom: .75rem;
}
.rdv-intro {
  color: var(--mid);
  margin-bottom: 1.8rem;
  line-height: 1.7;
}

/* Config Calendly */
.calendly-config {
  background: var(--cream);
  border: 1px dashed var(--gold);
  border-radius: 4px;
  padding: 1.2rem 1.5rem;
  margin-bottom: 1.5rem;
}
.calendly-config label {
  display: block;
  font-size: .8rem;
  font-weight: 600;
  color: var(--navy);
  text-transform: uppercase;
  letter-spacing: .05em;
  margin-bottom: .5rem;
}
.calendly-input-row {
  display: flex;
  gap: .75rem;
}
.calendly-input-row input {
  flex: 1;
  padding: .6rem 1rem;
  border: 1px solid rgba(13,27,75,.15);
  border-radius: 4px;
  font-size: .9rem;
  color: var(--navy);
  background: var(--white);
}
.calendly-hint {
  font-size: .78rem;
  color: var(--mid);
  margin-top: .5rem;
  font-style: italic;
}

/* Conteneur Calendly widget */
.calendly-container {
  min-height: 500px;
  border-radius: 4px;
  overflow: hidden;
}
.calendly-inline-widget {
  min-height: 660px !important;
  width: 100% !important;
}
.calendly-placeholder {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-height: 320px;
  background: var(--cream);
  border-radius: 4px;
  text-align: center;
  padding: 2rem;
  color: var(--mid);
}
.calendly-placeholder-icon { font-size: 3rem; margin-bottom: 1rem; }
.calendly-placeholder-sub { font-size: .85rem; opacity: .7; margin-top: .4rem; }

/* ASIDE RDV */
.rdv-aside { display: flex; flex-direction: column; gap: 1.5rem; }

.aside-card {
  background: var(--white);
  border-radius: 6px;
  padding: 1.8rem;
  box-shadow: 0 4px 24px rgba(13,27,75,.07);
  border: 1px solid rgba(13,27,75,.06);
}
.aside-card h3 {
  font-family: 'Cormorant Garamond', serif;
  color: var(--navy);
  font-size: 1.15rem;
  margin-bottom: 1rem;
}

/* Liste "Bon à savoir" */
.aside-list { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 1rem; }
.aside-list li { display: flex; gap: .9rem; align-items: flex-start; }
.aside-icon { font-size: 1.1rem; flex-shrink: 0; margin-top: .1rem; }
.aside-list strong { display: block; font-size: .88rem; color: var(--navy); margin-bottom: .15rem; }
.aside-list p { font-size: .83rem; color: var(--mid); line-height: 1.55; margin: 0; }

/* Aside contact */
.aside-contact p { color: var(--mid); font-size: .9rem; margin-bottom: 1rem; line-height: 1.6; }
.btn-block { display: block; text-align: center; margin-top: .6rem; }
.btn-ghost {
  background: transparent;
  border: 1px solid rgba(13,27,75,.2);
  color: var(--navy);
  padding: .7rem 1.2rem;
  border-radius: 4px;
  font-size: .88rem;
  font-weight: 500;
  cursor: pointer;
  transition: all .25s;
  text-decoration: none;
}
.btn-ghost:hover { background: var(--navy); color: var(--white); border-color: var(--navy); }

/* Aside accès */
.aside-acces p { font-size: .88rem; color: var(--mid); line-height: 1.7; margin-bottom: 1rem; }

/* SECTION CONTACT FORMULAIRE */
.contact-section { background: var(--cream); }
.contact-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: start;
  margin-top: 2.5rem;
}
.contact-form-wrap {
  background: var(--white);
  border-radius: 6px;
  padding: 2.2rem;
  box-shadow: 0 4px 30px rgba(13,27,75,.07);
}
.form-group { margin-bottom: 1.2rem; }
.form-group label {
  display: block;
  font-size: .8rem;
  font-weight: 600;
  color: var(--navy);
  text-transform: uppercase;
  letter-spacing: .05em;
  margin-bottom: .4rem;
}
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: .75rem 1rem;
  border: 1px solid rgba(13,27,75,.15);
  border-radius: 4px;
  font-size: .92rem;
  color: var(--navy);
  background: var(--white);
  font-family: inherit;
  transition: border-color .2s;
  box-sizing: border-box;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(181,145,84,.12);
}
.form-group textarea { resize: vertical; min-height: 130px; }
.btn-full { width: 100%; justify-content: center; }
.form-mention { font-size: .78rem; color: var(--mid); margin-top: .8rem; line-height: 1.5; }

/* Image contact */
.contact-img-wrap { position: relative; border-radius: 6px; overflow: hidden; }
.contact-img-wrap img { width: 100%; height: 420px; object-fit: cover; display: block; border-radius: 6px; }
.contact-img-caption {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  background: linear-gradient(transparent, rgba(13,27,75,.7));
  padding: 2rem 1.5rem 1.5rem;
}
.contact-img-caption p { color: var(--white); font-size: .88rem; margin: 0; font-style: italic; }

/* Toast */
.toast {
  padding: 0;
  border-radius: 4px;
  font-size: .9rem;
  overflow: hidden;
  max-height: 0;
  transition: max-height .3s, padding .3s;
}
.toast.show {
  max-height: 80px;
  padding: .9rem 1.2rem;
  margin-bottom: 1.2rem;
}
.toast.success { background: #e8f5e9; color: #2e7d32; border: 1px solid #a5d6a7; }
.toast.error   { background: #fdecea; color: #c62828; border: 1px solid #ef9a9a; }

/* Responsive RDV */
@media (max-width: 960px) {
  .rdv-layout { grid-template-columns: 1fr; }
  .rdv-aside { flex-direction: row; flex-wrap: wrap; }
  .aside-card { flex: 1 1 280px; }
  .contact-layout { grid-template-columns: 1fr; }
  .contact-img-wrap { display: none; }
}
@media (max-width: 600px) {
  .rdv-card { padding: 1.5rem; }
  .calendly-input-row { flex-direction: column; }
  .rdv-aside { flex-direction: column; }
}


/* === FLEUR DE VIE — hero pages internes === */
.hero-fleur-vie {
  position: absolute;
  bottom: -18%;
  left: 50%;
  transform: translateX(-50%);
  width: min(480px, 90vw);
  height: min(480px, 90vw);
  opacity: 0.52;
  pointer-events: none;
  z-index: 1;
}

/* === PAGE RENDEZ-VOUS — champs formulaire === */
.form-field { margin-bottom: 1.1rem; }
.form-field label {
  display: block; font-size: .75rem; font-weight: 700;
  text-transform: uppercase; letter-spacing: .08em;
  color: var(--navy); margin-bottom: .4rem;
}
.form-field input,
.form-field select,
.form-field textarea {
  width: 100%; padding: .7rem 1rem;
  border: 1px solid rgba(13,27,75,.15); border-radius: 4px;
  font-size: .92rem; color: var(--navy); background: var(--white);
  font-family: inherit; transition: border-color .2s; box-sizing: border-box;
}
.form-field input:focus,
.form-field select:focus,
.form-field textarea:focus {
  outline: none; border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(200,148,42,.1);
}
.form-field textarea { resize: vertical; min-height: 120px; }

/* === Confirmation envoi === */
.form-ok {
  display: none; margin-top: 1rem; padding: .9rem 1.2rem;
  background: #e8f5e9; color: #2e7d32;
  border: 1px solid #a5d6a7; border-radius: 4px; font-size: .9rem;
}
.form-ok.visible { display: block; }

/* === Bloc config Calendly === */
.cal-config-block {
  background: var(--cream); border: 1px dashed var(--gold);
  border-radius: 4px; padding: 1.2rem 1.5rem; margin-bottom: 1.5rem;
}
.cal-config-label {
  font-size: .78rem; font-weight: 700; color: var(--navy);
  text-transform: uppercase; letter-spacing: .06em;
  display: block; margin-bottom: .6rem;
}
.cal-config-row { display: flex; gap: .75rem; }
.cal-config-row input {
  flex: 1; padding: .65rem 1rem;
  border: 1px solid rgba(13,27,75,.2); border-radius: 4px;
  font-size: .9rem; color: var(--navy); background: var(--white);
  font-family: inherit;
}
.cal-config-hint {
  font-size: .78rem; color: var(--mid); margin-top: .5rem; font-style: italic;
}

/* === Widget Calendly === */
.cal-embed-wrap {
  min-height: 200px; border-radius: 4px; overflow: hidden;
  margin-bottom: 1.5rem;
}
.cal-embed-wrap iframe { display: block; }

@media (max-width: 600px) {
  .cal-config-row { flex-direction: column; }
}
/* =============================================
   VIDÉO VERTICALE + MOSAÏQUE (qui-suis-je)
   ============================================= */
.video-gallery-layout {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 1.5rem;
  align-items: start;
  margin: 2rem 0;
}
.video-portrait-wrap {
  position: relative;
  width: 240px;
  flex-shrink: 0;
  border-radius: 4px;
  overflow: hidden;
  background: var(--navy);
}
.video-portrait-wrap video {
  display: block;
  width: 100%;
  height: auto;
  /* Corrige la rotation automatique du navigateur sur vidéos portrait */
  object-fit: cover;
}
.video-gallery-photos {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}
.video-gallery-photos .gallery-item {
  height: 180px;
}

@media (max-width: 700px) {
  .video-gallery-layout {
    grid-template-columns: 1fr;
  }
  .video-portrait-wrap {
    width: 100%;
    max-width: 320px;
    margin: 0 auto;
  }
  .video-gallery-photos .gallery-item {
    height: 150px;
  }
}

/* =============================================
   GALERIE CABINET — qui-suis-je
   ============================================= */

/* Rangée 1 : vidéo (1/2) + photo (1/2) — hauteur fixe, object-fit cover */
.gallery-row-half {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
  height: 480px;
}
.video-portrait-wrap {
  border-radius: 4px;
  overflow: hidden;
  background: var(--navy-l);
  position: relative;
  height: 100%;
  width: 100%;
}
.video-portrait-wrap video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.gallery-row-half > .gallery-item {
  aspect-ratio: unset;
  height: 100%;
}
@media (max-width: 768px) {
  .gallery-row-half { grid-template-columns: 1fr; height: auto; }
  .video-portrait-wrap { height: 400px; }
  .gallery-row-half > .gallery-item { height: 260px; }
}

/* Rangée asymétrique : 1 grande + colonne de 2 — hauteurs alignées */
.gallery-row-asym {
  display: grid;
  grid-template-columns: 3fr 2fr;
  gap: 1rem;
  align-items: stretch;
}
.gallery-row-asym > .gallery-item {
  aspect-ratio: unset;
  height: 460px;
}
.gallery-col-2 {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  height: 460px;
}
.gallery-col-2 .gallery-item {
  flex: 1;
  aspect-ratio: unset;
  min-height: 0;
}

/* Photo pleine largeur */
.gallery-full {
  width: 100%;
  aspect-ratio: 21/9;
  border-radius: 4px;
  overflow: hidden;
  background: var(--navy-l);
  position: relative;
}
.gallery-full img { width: 100%; height: 100%; object-fit: cover; }

/* Responsive */
@media (max-width: 768px) {
  .video-portrait-wrap { width: 100%; max-width: 320px; }
  .gallery-row-asym { grid-template-columns: 1fr; }
  .gallery-col-2 { flex-direction: row; }
  .gallery-col-2 .gallery-item { aspect-ratio: 4/3; }
  .gallery-full { aspect-ratio: 4/3; }
}

/* =============================================
   PAGE TARIFS — grille 2x2 et bandeau contact
   ============================================= */
.tarifs-grid-2x2 {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
  margin-bottom: 2rem;
}

.tarifs-grid-pro {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-bottom: 2rem;
}

.tarif-card-pro-h {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  background: var(--white);
  border: 1px solid rgba(13,27,75,.08);
  border-left: 4px solid var(--navy);
  border-radius: 4px;
  padding: 1.4rem 1.8rem;
  box-shadow: 0 2px 16px rgba(13,27,75,.05);
  text-decoration: none;
  transition: var(--ease);
}
.tarif-card-pro-h:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 36px rgba(13,27,75,.1);
  border-left-color: var(--gold);
}
.tarif-pro-left {
  display: flex;
  align-items: center;
  gap: 1.1rem;
  flex: 1;
}
.tarif-pro-icon { font-size: 1.8rem; flex-shrink: 0; }
.tarif-pro-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.2rem;
  font-weight: 600;
  color: var(--navy);
  margin-bottom: .25rem;
}
.tarif-pro-desc {
  font-size: .83rem;
  color: var(--mid);
  font-style: italic;
  line-height: 1.5;
}
.tarif-pro-right {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: .4rem;
  flex-shrink: 0;
}
.tarif-pro-label {
  font-size: .78rem;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--mid);
}
.tarif-pro-cta {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1rem;
  color: var(--gold);
  font-weight: 600;
}
@media (max-width: 580px) {
  .tarif-card-pro-h { flex-direction: column; align-items: flex-start; }
  .tarif-pro-right { align-items: flex-start; }
}



.tarifs-contact-band {
  background: var(--navy);
  border-radius: 4px;
  padding: 2rem;
  display: flex;
  flex-wrap: wrap;
  gap: 1.5rem;
  align-items: center;
  justify-content: space-between;
}

@media (max-width: 640px) {
  .tarifs-grid-2x2 { grid-template-columns: 1fr; }
  .tarifs-contact-band { flex-direction: column; align-items: flex-start; }
}

/* =============================================
   MENTION LÉGALE MASSAGE
   ============================================= */
.massage-mention {
  background: var(--cream-d);
  border-left: 3px solid rgba(200,148,42,.4);
  border-radius: 0 4px 4px 0;
  padding: 1rem 1.4rem;
  margin: 0 0 0;
}
.massage-mention p {
  font-size: .82rem;
  color: var(--light);
  font-style: italic;
  line-height: 1.65;
  margin: 0;
}
