/* ==============================================
   VARIABLES & RESET
   ============================================== */
:root {
  --rose-pale:    #F2E4E4;
  --rose-doux:    #C9A0A0;
  --rose-accent:  #A87070;
  --rose-fonce:   #7A4E4E;
  --creme:        #FAF7F5;
  --blanc:        #FFFFFF;
  --brun-texte:   #2C2020;
  --gris-doux:    #7A6A6A;

  --font-titre: 'Playfair Display', Georgia, serif;
  --font-corps: 'Raleway', system-ui, sans-serif;

  --shadow-soft:   0 2px 24px rgba(168, 112, 112, 0.10);
  --shadow-medium: 0 8px 40px rgba(168, 112, 112, 0.18);

  --radius: 14px;
  --transition: 0.3s ease;
}

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

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-corps);
  color: var(--brun-texte);
  background: var(--creme);
  line-height: 1.75;
  font-weight: 300;
}

a { color: inherit; text-decoration: none; }
ul { list-style: none; }
address { font-style: normal; }
img { max-width: 100%; height: auto; display: block; }

/* ==============================================
   TYPOGRAPHY
   ============================================== */
h1, h2, h3, h4 {
  font-family: var(--font-titre);
  font-weight: 400;
  line-height: 1.2;
}
h1 { font-size: clamp(2.4rem, 6vw, 4.5rem); }
h2 { font-size: clamp(1.8rem, 4vw, 2.8rem); }
h3 { font-size: clamp(1.15rem, 2.5vw, 1.5rem); }
em { font-style: italic; color: var(--rose-accent); }
strong { font-weight: 600; }

/* ==============================================
   CONTAINER
   ============================================== */
.container {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 2rem;
}

/* ==============================================
   PLACEHOLDER IMAGES
   ============================================== */
.placeholder-img {
  background: var(--rose-pale);
  position: relative;
  overflow: hidden;
}
.placeholder-img::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, var(--rose-pale) 0%, #E0C8C8 100%);
}
.placeholder-img::after {
  content: attr(data-label);
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-corps);
  font-size: 0.8rem;
  font-weight: 500;
  color: var(--rose-accent);
  letter-spacing: 0.08em;
  text-align: center;
  padding: 1rem;
  z-index: 1;
}

/* ==============================================
   BUTTONS
   ============================================== */
.btn-primary {
  display: inline-block;
  background: var(--rose-accent);
  color: var(--blanc);
  padding: 0.85rem 2.2rem;
  border-radius: 50px;
  font-family: var(--font-corps);
  font-size: 0.85rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  transition: background var(--transition), transform var(--transition), box-shadow var(--transition);
}
.btn-primary:hover {
  background: var(--rose-fonce);
  transform: translateY(-2px);
  box-shadow: var(--shadow-medium);
}

.btn-outline {
  display: inline-block;
  border: 1.5px solid var(--rose-accent);
  color: var(--rose-accent);
  padding: 0.75rem 2rem;
  border-radius: 50px;
  font-family: var(--font-corps);
  font-size: 0.85rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  transition: all var(--transition);
}
.btn-outline:hover {
  background: var(--rose-accent);
  color: var(--blanc);
}

.link-arrow {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  color: var(--rose-accent);
  font-size: 0.82rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  transition: gap var(--transition);
}
.link-arrow::after {
  content: '→';
  transition: transform var(--transition);
}
.link-arrow:hover::after { transform: translateX(4px); }

/* ==============================================
   HEADER
   ============================================== */
.site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  background: rgba(250, 247, 245, 0.94);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  transition: box-shadow var(--transition);
}
.site-header.scrolled { box-shadow: var(--shadow-soft); }

.header-inner {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 2rem;
  height: 80px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.logo { display: flex; align-items: center; }

.logo-text {
  font-family: var(--font-titre);
  font-size: 1.25rem;
  color: var(--rose-accent);
  letter-spacing: 0.04em;
}

.main-nav ul {
  display: flex;
  gap: 2.5rem;
  align-items: center;
}
.main-nav a {
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--brun-texte);
  transition: color var(--transition);
  position: relative;
  padding-bottom: 2px;
}
.main-nav a::after {
  content: '';
  position: absolute;
  bottom: -3px; left: 0; right: 0;
  height: 1px;
  background: var(--rose-accent);
  transform: scaleX(0);
  transition: transform var(--transition);
}
.main-nav a:hover,
.main-nav a.active { color: var(--rose-accent); }
.main-nav a:hover::after,
.main-nav a.active::after { transform: scaleX(1); }

.main-nav .nav-rdv {
  background: var(--rose-accent);
  color: var(--blanc);
  padding: 0.55rem 1.4rem;
  border-radius: 50px;
  transition: background var(--transition), transform var(--transition);
}
.main-nav .nav-rdv::after { display: none; }
.main-nav .nav-rdv:hover {
  background: var(--rose-fonce);
  color: var(--blanc);
  transform: translateY(-1px);
}

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}
.nav-toggle span {
  display: block;
  width: 24px;
  height: 1.5px;
  background: var(--brun-texte);
  transition: all var(--transition);
}
.nav-toggle.active span:nth-child(1) { transform: rotate(45deg) translate(4.5px, 4.5px); }
.nav-toggle.active span:nth-child(2) { opacity: 0; }
.nav-toggle.active span:nth-child(3) { transform: rotate(-45deg) translate(4.5px, -4.5px); }

/* ==============================================
   HERO
   ============================================== */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  background:
    radial-gradient(ellipse 70% 60% at 50% 40%, rgba(201,160,160,0.18) 0%, transparent 70%),
    linear-gradient(160deg, var(--creme) 0%, #f5ede8 50%, var(--creme) 100%);
  overflow: hidden;
}


.hero-watermark {
  position: absolute;
  width: 600px;
  height: auto;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  opacity: 0.30;
  pointer-events: none;
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: 640px;
  margin: 0 auto;
  padding: 120px 2rem 4rem;
  display: flex;
  flex-direction: column;
  align-items: center;
}


.hero-title {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
  margin-bottom: 1.4rem;
}
.hero-title-seo {
  font-family: var(--font-corps);
  font-size: 0.76rem;
  font-weight: 600;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--rose-accent);
}
.hero-title-brand {
  font-family: var(--font-titre);
  font-size: clamp(2.4rem, 6vw, 4.2rem);
  font-weight: 400;
  line-height: 1.2;
  color: var(--brun-texte);
}
.hero-desc {
  font-size: 1.05rem;
  color: var(--gris-doux);
  margin-bottom: 2.5rem;
  line-height: 1.9;
}
.hero-actions { display: flex; gap: 1rem; flex-wrap: wrap; align-items: center; justify-content: center; }
.hero-scroll {
  position: absolute;
  bottom: 2.5rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  color: var(--gris-doux);
  font-size: 0.72rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}
.hero-scroll::after {
  content: '';
  display: block;
  width: 1px;
  height: 50px;
  background: var(--rose-doux);
  animation: scrollLine 1.8s ease-in-out infinite;
}
@keyframes scrollLine {
  0%   { transform: scaleY(0); transform-origin: top; }
  50%  { transform: scaleY(1); transform-origin: top; }
  51%  { transform: scaleY(1); transform-origin: bottom; }
  100% { transform: scaleY(0); transform-origin: bottom; }
}

/* ==============================================
   INTRO
   ============================================== */
.intro {
  padding: 5.5rem 0;
  background: var(--blanc);
}
.intro-inner {
  text-align: center;
  max-width: 680px;
  margin: 0 auto;
}
.intro-inner p {
  font-size: 1.1rem;
  color: var(--gris-doux);
  line-height: 1.95;
}

/* ==============================================
   SECTION HEADER (réutilisable)
   ============================================== */
.section-header {
  text-align: center;
  margin-bottom: 4rem;
}
.section-label {
  display: block;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--rose-doux);
  margin-bottom: 0.8rem;
}
.section-header h2 { margin-bottom: 1.2rem; }
.section-header p {
  color: var(--gris-doux);
  max-width: 520px;
  margin: 0 auto 1.5rem;
}
.section-divider {
  width: 40px;
  height: 1.5px;
  background: var(--rose-doux);
  margin: 1.2rem auto 0;
}

/* ==============================================
   PILLARS
   ============================================== */
.pillars {
  padding: 6rem 0;
  background: var(--creme);
}
.pillars-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}
.pillar {
  background: var(--blanc);
  border-radius: var(--radius);
  padding: 2.5rem 2rem;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.9rem;
  transition: transform var(--transition), box-shadow var(--transition);
}
.pillar:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-medium);
}
.pillar-icon {
  width: 64px;
  height: 64px;
  color: var(--rose-accent);
  margin-bottom: 0.4rem;
}
.pillar h3 { color: var(--brun-texte); }
.pillar > p {
  color: var(--gris-doux);
  font-size: 0.92rem;
  flex: 1;
}

/* ==============================================
   BENTO GRID — CE QUE NOUS PROPOSONS
   ============================================== */
.bento-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
}

.bento-card {
  border-radius: var(--radius);
  padding: 2rem;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  aspect-ratio: 1 / 1;
  position: relative;
  overflow: hidden;
  cursor: pointer;
  transition: transform 0.35s ease, box-shadow 0.35s ease, background 0.35s ease;
}

.bento-card.bento-wide {
  grid-column: span 2;
  aspect-ratio: auto;
  min-height: 260px;
}

/* Fonds distincts par carte */
.bento-1 { background: var(--rose-pale); }
.bento-2 { background: var(--blanc); }
.bento-3 { background: var(--blanc); }
.bento-4 { background: #EDE8E8; }

.bento-1:hover { background: #e8d0d0; }
.bento-4:hover { background: #e4dcdc; }

.bento-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-medium);
}

/* Barre d'accent gauche qui monte au hover */
.bento-card::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: 0;
  width: 3px;
  height: 0;
  background: linear-gradient(to top, var(--rose-accent), var(--rose-doux));
  transition: height 0.45s cubic-bezier(0.4, 0, 0.2, 1);
  pointer-events: none;
  z-index: 1;
  border-radius: 0 2px 2px 0;
}
.bento-card:hover::after {
  height: 100%;
}

/* Shimmer au hover */
.bento-card::before {
  content: '';
  position: absolute;
  top: 0; left: -80%;
  width: 50%; height: 100%;
  background: linear-gradient(
    to right,
    rgba(255,255,255,0)    0%,
    rgba(255,255,255,0.18) 50%,
    rgba(255,255,255,0)    100%
  );
  transform: skewX(-15deg);
  pointer-events: none;
  z-index: 3;
}
.bento-card:hover::before {
  animation: shimmer-slide 0.6s ease forwards;
}

/* Numéro décoratif en filigrane */
.bento-num {
  position: absolute;
  top: 0.8rem;
  right: 1.4rem;
  font-family: var(--font-titre);
  font-size: 6rem;
  font-weight: 400;
  line-height: 1;
  color: var(--rose-doux);
  opacity: 0.18;
  pointer-events: none;
  z-index: 0;
  transition: opacity 0.4s ease, transform 0.4s ease;
  user-select: none;
}
.bento-card:hover .bento-num {
  opacity: 0.32;
  transform: scale(1.05) translateY(-4px);
}

.bento-icon {
  width: 48px;
  height: 48px;
  color: var(--rose-accent);
  flex-shrink: 0;
  position: relative;
  z-index: 1;
}

.bento-foot {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
  position: relative;
  z-index: 1;
}

/* Micro-label de catégorie */
.bento-cat {
  display: block;
  font-size: 0.67rem;
  font-weight: 600;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--rose-doux);
  margin-bottom: 0.15rem;
}

.bento-foot h3 {
  color: var(--brun-texte);
}

.bento-foot p {
  color: var(--gris-doux);
  font-size: 0.88rem;
  line-height: 1.6;
}

/* Toute la carte est cliquable — overlay via ::before (::after réservé à la flèche →) */
.bento-foot .link-arrow::before {
  content: '';
  position: absolute;
  inset: 0;
  z-index: 2;
}

/* ==============================================
   FORMULES
   ============================================== */
.formules {
  padding: 6rem 0;
  background: var(--blanc);
}
.formules-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
}
.formule-card {
  background: var(--creme);
  border-radius: var(--radius);
  overflow: hidden;
  transition: transform var(--transition), box-shadow var(--transition);
  display: flex;
  flex-direction: column;
}
.formule-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-medium);
}
.formule-image {
  height: 240px;
  overflow: hidden;
}
.formule-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}
.formule-card:hover .formule-image img {
  transform: scale(1.04);
}
.formule-body {
  padding: 2rem;
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}
.formule-prix {
  font-family: var(--font-titre);
  font-size: 2.2rem;
  color: var(--rose-accent);
  line-height: 1;
}
.formule-duree {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gris-doux);
  margin-bottom: 0.2rem;
}
.formule-body h3 { color: var(--brun-texte); margin-bottom: 0.5rem; }
.formule-body ul { flex: 1; }
.formule-body ul li {
  padding: 0.45rem 0 0.45rem 1.2rem;
  font-size: 0.88rem;
  color: var(--gris-doux);
  border-bottom: 1px solid var(--rose-pale);
  position: relative;
}
.formule-body ul li::before {
  content: '–';
  position: absolute;
  left: 0;
  color: var(--rose-doux);
}
.formule-body .btn-primary {
  align-self: flex-start;
  margin-top: 1.2rem;
}

/* ==============================================
   INFOS
   ============================================== */
.infos {
  padding: 6rem 0;
  background: var(--rose-pale);
}
.infos-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 5rem;
  align-items: start;
}
.info-bloc h2 { margin-bottom: 1.5rem; }
.info-bloc address {
  font-size: 1rem;
  color: var(--gris-doux);
  line-height: 1.9;
  margin: 1rem 0;
}
.info-detail {
  font-size: 0.9rem;
  color: var(--gris-doux);
  margin-bottom: 0.5rem;
}
.info-detail strong { color: var(--brun-texte); }
.tel-link {
  display: inline-block;
  font-family: var(--font-titre);
  font-size: 2rem;
  color: var(--rose-accent);
  margin: 1rem 0 0.5rem;
  transition: color var(--transition);
}
.tel-link:hover { color: var(--rose-fonce); }
.sans-rdv {
  font-size: 0.88rem;
  color: var(--gris-doux);
  font-style: italic;
}

.horaires-list li {
  display: flex;
  justify-content: space-between;
  padding: 0.8rem 0;
  border-bottom: 1px solid rgba(168, 112, 112, 0.15);
  font-size: 0.92rem;
  color: var(--gris-doux);
}
.horaires-list li span:first-child {
  font-weight: 500;
  color: var(--brun-texte);
}

/* ==============================================
   FOOTER
   ============================================== */
.site-footer {
  background: var(--brun-texte);
  color: rgba(250, 247, 245, 0.65);
  padding: 5rem 0 2.5rem;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 3rem;
  padding-bottom: 3rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}
.footer-logo {
  height: 50px;
  width: auto;
  margin-bottom: 1.2rem;
  filter: brightness(0) invert(1);
  opacity: 0.85;
}
.footer-logo-text {
  font-family: var(--font-titre);
  font-size: 1.25rem;
  color: var(--rose-doux);
  margin-bottom: 1.2rem;
  display: block;
}
.footer-brand address {
  font-size: 0.88rem;
  line-height: 1.9;
}
.footer-col-title {
  display: block;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--rose-doux);
  margin-bottom: 1.2rem;
}
.social-links {
  display: flex;
  flex-direction: column;
  gap: 0.9rem;
}
.social-links a {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 0.88rem;
  color: rgba(250, 247, 245, 0.65);
  transition: color var(--transition);
}
.social-links a:hover { color: var(--rose-doux); }
.footer-nav-links {
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}
.footer-nav-links a {
  font-size: 0.88rem;
  color: rgba(250, 247, 245, 0.65);
  transition: color var(--transition);
}
.footer-nav-links a:hover { color: var(--rose-doux); }
.footer-bottom {
  padding-top: 2rem;
  text-align: center;
  font-size: 0.78rem;
  color: rgba(250, 247, 245, 0.3);
}

/* ==============================================
   GALERIE
   ============================================== */
.galerie {
  background: var(--blanc);
  overflow: hidden;
}
.galerie-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  grid-template-rows: 280px 280px;
  gap: 4px;
}
.galerie-item {
  overflow: hidden;
}
.galerie-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
  display: block;
}
.galerie-item:hover img {
  transform: scale(1.04);
}
.galerie-large {
  grid-row: 1 / 3;
}

@media (max-width: 700px) {
  .galerie-grid {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: repeat(3, 200px);
  }
  .galerie-large {
    grid-column: 1 / 3;
    grid-row: 1;
  }
}

/* ==============================================
   PAGE INTERIOR (partenaires, contact)
   ============================================== */
.page-hero {
  padding: 10rem 0 5rem;
  background: var(--creme);
  text-align: center;
}
.page-hero .section-label { margin-bottom: 0.8rem; }
.page-hero h1 { margin-bottom: 1rem; }
.page-hero p {
  color: var(--gris-doux);
  font-size: 1.05rem;
  max-width: 500px;
  margin: 0 auto;
}

/* Partenaires */
.partners-section { padding: 5rem 0 7rem; background: var(--blanc); }

.partner-tagline {
  font-size: 0.82rem;
  font-weight: 500;
  font-style: italic;
  color: var(--rose-accent);
  margin-bottom: 0.8rem;
  display: block;
}

/* Layout en lignes */
.partners-list {
  display: flex;
  flex-direction: column;
}

.partner-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 360px;
  border-bottom: 1px solid var(--rose-pale);
}
.partner-row:first-child { border-top: 1px solid var(--rose-pale); }

.partner-row--reverse {
  direction: rtl;
}
.partner-row--reverse > * {
  direction: ltr;
}

.partner-row__image {
  overflow: hidden;
  position: relative;
}
.partner-row__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.6s ease;
}
.partner-row:hover .partner-row__image img {
  transform: scale(1.03);
}
.partner-row__image.placeholder-img {
  min-height: 280px;
}

.partner-row__body {
  padding: 3rem 3.5rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 0.6rem;
  background: var(--blanc);
}
.partner-row--reverse .partner-row__body {
  background: var(--creme);
}

.partner-row__num {
  font-family: var(--font-titre);
  font-size: 3.5rem;
  color: var(--rose-pale);
  line-height: 1;
  font-weight: 400;
  display: block;
  margin-bottom: 0.5rem;
}

.partner-row__body h2 {
  font-size: clamp(1.5rem, 2.5vw, 2rem);
  color: var(--brun-texte);
  margin: 0;
}

.partner-row__body p:last-child {
  font-size: 0.92rem;
  color: var(--gris-doux);
  line-height: 1.8;
  max-width: 440px;
}

@media (max-width: 700px) {
  .partner-row {
    grid-template-columns: 1fr;
    direction: ltr;
    min-height: auto;
  }
  .partner-row--reverse { direction: ltr; }
  .partner-row__image { height: 220px; }
  .partner-row__body { padding: 2rem 1.5rem; }
  .partner-row__num { font-size: 2.5rem; }
}

/* Contact */
.contact-section { padding: 5rem 0 7rem; background: var(--blanc); }
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: start;
}
.contact-form { display: flex; flex-direction: column; gap: 1.2rem; }
.form-group { display: flex; flex-direction: column; gap: 0.5rem; }
.form-group label {
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--brun-texte);
}
.form-group input,
.form-group textarea,
.form-group select {
  font-family: var(--font-corps);
  font-size: 0.95rem;
  font-weight: 300;
  color: var(--brun-texte);
  background: var(--creme);
  border: 1px solid var(--rose-pale);
  border-radius: 8px;
  padding: 0.85rem 1rem;
  transition: border-color var(--transition), box-shadow var(--transition);
  outline: none;
  width: 100%;
}
.form-group input:focus,
.form-group textarea:focus {
  border-color: var(--rose-doux);
  box-shadow: 0 0 0 3px rgba(201, 160, 160, 0.18);
}
.form-group textarea { resize: vertical; min-height: 130px; }
.contact-info { display: flex; flex-direction: column; gap: 2rem; }
.contact-info-item { display: flex; gap: 1rem; align-items: flex-start; }
.contact-info-icon {
  width: 44px;
  height: 44px;
  background: var(--rose-pale);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--rose-accent);
  flex-shrink: 0;
}
.contact-info-text h4 {
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--brun-texte);
  margin-bottom: 0.3rem;
}
.contact-info-text p,
.contact-info-text address {
  font-size: 0.92rem;
  color: var(--gris-doux);
  line-height: 1.7;
}
.contact-info-text a {
  color: var(--rose-accent);
  transition: color var(--transition);
}
.contact-info-text a:hover { color: var(--rose-fonce); }
.map-placeholder {
  height: 300px;
  border-radius: var(--radius);
  overflow: hidden;
  margin-top: 2rem;
}

/* ==============================================
   SCROLL TO TOP
   ============================================== */
.scroll-top {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  z-index: 99;
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background: var(--blanc);
  border: 1.5px solid var(--rose-doux);
  color: var(--rose-accent);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  box-shadow: var(--shadow-soft);
  opacity: 0;
  transform: translateY(12px);
  transition: opacity var(--transition), transform var(--transition), background var(--transition), color var(--transition);
  pointer-events: none;
}
.scroll-top.visible {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}
.scroll-top:hover {
  background: var(--rose-accent);
  color: var(--blanc);
  border-color: var(--rose-accent);
}

/* ==============================================
   RESPONSIVE
   ============================================== */
@media (max-width: 960px) {
  .pillars-grid { grid-template-columns: 1fr; gap: 1.5rem; }
  .bento-grid { grid-template-columns: repeat(2, 1fr); }
  .bento-card { aspect-ratio: auto; min-height: 220px; }
  .bento-card.bento-wide { grid-column: span 2; aspect-ratio: auto; }
  .formules-grid { grid-template-columns: 1fr; }
  .infos-grid { grid-template-columns: 1fr; gap: 3.5rem; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .footer-brand { grid-column: 1 / -1; }
  .partners-grid { grid-template-columns: repeat(2, 1fr); }
  .contact-grid { grid-template-columns: 1fr; gap: 3rem; }
}

/* ==============================================
   SCROLL PROGRESS BAR
   ============================================== */
#scroll-progress {
  position: fixed;
  top: 0; left: 0;
  height: 3px;
  width: 0%;
  background: linear-gradient(to right, var(--rose-doux), var(--rose-accent));
  z-index: 201;
  pointer-events: none;
  box-shadow: 0 0 8px rgba(168, 112, 112, 0.6);
}

/* ==============================================
   HERO — ANIMATIONS D'ENTRÉE
   ============================================== */
.hero-title-seo {
  animation: fadeSlideDown 0.8s ease 0.3s both;
}
.hero-title-brand {
  animation: fadeSlideUp 1s ease 0.5s both;
}
.hero-desc {
  animation: fadeSlideUp 0.9s ease 0.8s both;
}
.hero-actions {
  animation: fadeIn 0.9s ease 1.1s both;
}
.hero-scroll {
  animation: fadeIn 1s ease 1.4s both;
}
@keyframes fadeSlideDown {
  from { opacity: 0; transform: translateY(-16px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes fadeSlideUp {
  from { opacity: 0; transform: translateY(22px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes fadeIn {
  from { opacity: 0; }
  to   { opacity: 1; }
}

/* ==============================================
   FLOATING RDV BUTTON
   ============================================== */
.floating-rdv {
  position: fixed;
  bottom: 6.5rem;
  right: 2rem;
  z-index: 97;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: var(--rose-accent);
  color: var(--blanc);
  padding: 0.72rem 1.5rem;
  border-radius: 50px;
  font-family: var(--font-corps);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  box-shadow: 0 4px 22px rgba(168, 112, 112, 0.42);
  opacity: 0;
  transform: translateY(10px) scale(0.95);
  pointer-events: none;
  transition: opacity 0.35s ease, transform 0.35s ease, background 0.3s ease, box-shadow 0.3s ease;
  animation: pulse-glow 3s ease-in-out infinite;
}
.floating-rdv.visible {
  opacity: 1;
  transform: translateY(0) scale(1);
  pointer-events: auto;
}
.floating-rdv:hover {
  background: var(--rose-fonce);
  animation: none;
  box-shadow: 0 6px 30px rgba(168, 112, 112, 0.55);
}
.floating-rdv svg { flex-shrink: 0; }
@keyframes pulse-glow {
  0%, 100% { box-shadow: 0 4px 22px rgba(168, 112, 112, 0.42); }
  50%       { box-shadow: 0 4px 22px rgba(168, 112, 112, 0.42), 0 0 0 8px rgba(168, 112, 112, 0.1); }
}

/* ==============================================
   GALERIE — OVERLAY AU HOVER
   ============================================== */
.galerie-item { position: relative; }
.galerie-item::after {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(168, 112, 112, 0);
  transition: background 0.4s ease;
  z-index: 1;
  pointer-events: none;
}
.galerie-item:hover::after {
  background: rgba(168, 112, 112, 0.1);
}

/* ==============================================
   PILLAR — SHIMMER AU HOVER
   ============================================== */
.pillar { position: relative; overflow: hidden; }
.pillar::before {
  content: '';
  position: absolute;
  top: 0; left: -80%;
  width: 50%; height: 100%;
  background: linear-gradient(
    to right,
    rgba(255,255,255,0)   0%,
    rgba(255,255,255,0.18) 50%,
    rgba(255,255,255,0)   100%
  );
  transform: skewX(-15deg);
  pointer-events: none;
  z-index: 3;
}
.pillar:hover::before {
  animation: shimmer-slide 0.6s ease forwards;
}
@keyframes shimmer-slide {
  from { left: -80%; }
  to   { left: 130%; }
}

/* ==============================================
   STRIP DE VALEURS
   ============================================== */
.values-strip {
  padding: 2.5rem 0;
  background: var(--blanc);
  border-top: 1px solid var(--rose-pale);
  border-bottom: 1px solid var(--rose-pale);
}
.values-strip-inner {
  display: flex;
  justify-content: center;
  align-items: stretch;
  flex-wrap: wrap;
}
.value-item {
  display: flex;
  align-items: center;
  gap: 0.7rem;
  padding: 0.5rem 2.2rem;
  border-right: 1px solid rgba(168, 112, 112, 0.18);
  font-size: 0.83rem;
  font-weight: 400;
  color: var(--gris-doux);
  white-space: nowrap;
}
.value-item:last-child { border-right: none; }
.value-item svg { color: var(--rose-accent); flex-shrink: 0; }
.value-item strong { color: var(--brun-texte); font-weight: 600; }

/* ==============================================
   ORNEMENT DÉCORATIF DE SECTION
   ============================================== */
.section-ornament {
  display: block;
  color: var(--rose-doux);
  font-size: 0.8rem;
  letter-spacing: 0.6em;
  margin-bottom: 0.6rem;
  opacity: 0.75;
  text-align: center;
}

/* ==============================================
   HORAIRES — JOUR ACTUEL
   ============================================== */
.horaires-list li.today span {
  color: var(--rose-accent) !important;
  font-weight: 600;
}

@media (max-width: 700px) {
  .main-nav {
    display: none;
    position: absolute;
    top: 80px; left: 0; right: 0;
    background: rgba(250, 247, 245, 0.98);
    backdrop-filter: blur(12px);
    padding: 2rem 2rem 2.5rem;
    box-shadow: var(--shadow-soft);
  }
  .main-nav.open { display: block; }
  .main-nav ul { flex-direction: column; gap: 1.4rem; align-items: flex-start; }
  .main-nav .nav-rdv { margin-top: 0.5rem; }
  .nav-toggle { display: flex; }

  .hero-watermark { width: 320px; }

  .footer-grid { grid-template-columns: 1fr; }
  .partners-grid { grid-template-columns: 1fr; }
  .bento-grid { grid-template-columns: 1fr; }
  .bento-card.bento-wide { grid-column: span 1; }

  .value-item {
    width: 50%;
    border-right: 1px solid rgba(168, 112, 112, 0.18);
    border-bottom: 1px solid rgba(168, 112, 112, 0.18);
    padding: 0.9rem 1rem;
    justify-content: center;
    flex-direction: column;
    text-align: center;
    gap: 0.35rem;
    font-size: 0.78rem;
    white-space: normal;
  }
  .value-item:nth-child(even) { border-right: none; }
  .value-item:nth-last-child(-n+2) { border-bottom: none; }

  .floating-rdv { display: none; }
}
