/*
 Theme Name:   Astra Child - BrunoZen
 Theme URI:    https://brunozen.fr
 Description:  Thème enfant Astra reproduisant fidèlement la charte graphique BrunoZen (Playfair Display + Lato, palette crème/sable/cuivre).
 Author:       Bruno
 Template:     astra
 Version:      2.0
 Text Domain:  astra-child-brunozen
*/

/* ────────────────────────────────────────────
   Ce fichier reprend telle quelle la feuille de
   style originale de brunozen.fr (classes .hero,
   .site-header, .service-card, .massage-item,
   .tarif-card, .reviews-section, .site-footer, etc.)
   afin que le contenu collé en blocs HTML personnalisés
   dans WordPress produise un rendu identique au site
   d.origine. Import de police retiré : chargée
   séparément dans functions.php pour la performance.
   ──────────────────────────────────────────── */


/* ——— Variables ——— */
:root {
  --cream:   #F7F2EA;
  --sand:    #EDE0CA;
  --copper:  #C09060;
  --copper2: #A07040;
  --dark:    #2A1F1A;
  --text:    #3D2E26;
  --muted:   #7A6A60;
  --white:   #FFFFFF;
  --card-bg: #FDFAF5;
  --border:  rgba(192,144,96,.25);
  --shadow:  0 4px 24px rgba(42,31,26,.10);
  --radius:  12px;
  --trans:   .3s ease;
  --max-w:   1140px;
}

/* ——— Reset ——— */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: 'Lato', sans-serif;
  background: var(--cream);
  color: var(--text);
  line-height: 1.7;
  overflow-x: hidden;
}
img { display: block; max-width: 100%; height: auto; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }

/* ——— Topbar ——— */
.topbar {
  background: var(--dark);
  color: rgba(255,255,255,.75);
  font-size: .78rem;
  letter-spacing: .04em;
  padding: .45rem 0;
}
.topbar-inner {
  max-width: var(--max-w);
  margin: auto;
  padding: 0 1.5rem;
  display: flex;
  flex-wrap: wrap;
  gap: .5rem 2rem;
  align-items: center;
  justify-content: center;
}
.topbar a { color: var(--copper); transition: color var(--trans); }
.topbar a:hover { color: var(--white); }
.topbar .sep { opacity: .3; }

/* ——— Header / Nav ——— */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(247,242,234,.92);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
  transition: box-shadow var(--trans);
}
.site-header.scrolled { box-shadow: 0 2px 20px rgba(42,31,26,.12); }

.header-inner {
  max-width: var(--max-w);
  margin: auto;
  padding: .8rem 1.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}
.logo {
  flex-shrink: 0;
  display: flex;
  flex-direction: column;
  line-height: 1.1;
}
.logo-name {
  font-family: 'Playfair Display', serif;
  font-size: 1.55rem;
  font-weight: 700;
  color: var(--dark);
  letter-spacing: .02em;
}
.logo-sub {
  font-size: .72rem;
  text-transform: uppercase;
  letter-spacing: .18em;
  color: var(--copper);
  font-weight: 700;
}

/* Nav */
.main-nav { display: flex; align-items: center; gap: .15rem; flex-wrap: wrap; }
.main-nav a {
  font-size: .85rem;
  font-weight: 700;
  letter-spacing: .04em;
  text-transform: uppercase;
  color: var(--text);
  padding: .5rem .75rem;
  border-radius: 6px;
  transition: color var(--trans), background var(--trans);
  position: relative;
}
.main-nav a:hover,
.main-nav a.active { color: var(--copper); }
.main-nav a::after {
  content: '';
  position: absolute;
  bottom: 4px; left: 50%; right: 50%;
  height: 2px;
  background: var(--copper);
  border-radius: 2px;
  transition: left var(--trans), right var(--trans);
}
.main-nav a:hover::after,
.main-nav a.active::after { left: .75rem; right: .75rem; }

/* CTA réserver */
.btn-book {
  display: inline-block;
  background: var(--copper);
  color: var(--white) !important;
  padding: .55rem 1.2rem;
  border-radius: 50px;
  font-size: .82rem;
  font-weight: 700;
  letter-spacing: .06em;
  text-transform: uppercase;
  transition: background var(--trans), transform var(--trans);
  white-space: nowrap;
  border: none;
  cursor: pointer;
}
.btn-book:hover { background: var(--copper2); transform: translateY(-1px); }
.btn-book::after { display: none !important; }

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: .4rem;
}
.hamburger span {
  width: 24px;
  height: 2px;
  background: var(--dark);
  border-radius: 2px;
  transition: all .3s;
}
.hamburger.open span:nth-child(1) { transform: rotate(45deg) translate(5px,5px); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: rotate(-45deg) translate(5px,-5px); }

/* ——— Hero ——— */
.hero {
  position: relative;
  height: 88vh;
  min-height: 520px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  text-align: center;
}
.hero-bg {
  position: absolute;
  inset: 0;
  background-image: url('https://brunozen.fr/wp-content/uploads/IMG_3284-2.jpg');
  background-size: cover;
  background-position: center top;
  transform: scale(1.05);
  animation: heroZoom 12s ease-in-out infinite alternate;
}
@keyframes heroZoom {
  from { transform: scale(1.05); }
  to   { transform: scale(1.0); }
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom,
    rgba(42,31,26,.30) 0%,
    rgba(42,31,26,.55) 60%,
    rgba(42,31,26,.75) 100%);
}
.hero-content {
  position: relative;
  z-index: 2;
  color: var(--white);
  padding: 0 1.5rem;
  animation: fadeUp .9s ease both;
}
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(28px); }
  to   { opacity: 1; transform: translateY(0); }
}
.hero-eyebrow {
  font-size: .78rem;
  text-transform: uppercase;
  letter-spacing: .28em;
  color: var(--sand);
  margin-bottom: 1rem;
  font-weight: 700;
}
.hero h1 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2rem, 6vw, 4rem);
  font-weight: 700;
  line-height: 1.15;
  margin-bottom: 1rem;
  text-shadow: 0 2px 12px rgba(0,0,0,.3);
}
.hero p {
  font-size: 1.05rem;
  max-width: 540px;
  margin: 0 auto 2rem;
  opacity: .9;
  font-weight: 300;
}
.hero-btns { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; }
.btn-primary {
  background: var(--copper);
  color: var(--white);
  padding: .85rem 2.2rem;
  border-radius: 50px;
  font-weight: 700;
  font-size: .9rem;
  letter-spacing: .08em;
  text-transform: uppercase;
  transition: all var(--trans);
  box-shadow: 0 4px 20px rgba(192,144,96,.4);
}
.btn-primary:hover { background: var(--copper2); transform: translateY(-2px); box-shadow: 0 6px 28px rgba(192,144,96,.5); }
.btn-secondary {
  border: 2px solid rgba(255,255,255,.7);
  color: var(--white);
  padding: .83rem 2rem;
  border-radius: 50px;
  font-weight: 700;
  font-size: .9rem;
  letter-spacing: .08em;
  text-transform: uppercase;
  transition: all var(--trans);
}
.btn-secondary:hover { background: rgba(255,255,255,.15); border-color: var(--white); }

/* Badge climatisé */
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  background: rgba(255,255,255,.15);
  border: 1px solid rgba(255,255,255,.3);
  backdrop-filter: blur(8px);
  border-radius: 50px;
  padding: .35rem 1rem;
  font-size: .78rem;
  letter-spacing: .1em;
  text-transform: uppercase;
  margin-bottom: 1.5rem;
}

/* ——— Sections communes ——— */
.section { padding: 5rem 1.5rem; }
.section-sm { padding: 3rem 1.5rem; }
.container { max-width: var(--max-w); margin: auto; }

.section-label {
  font-size: .72rem;
  text-transform: uppercase;
  letter-spacing: .22em;
  color: var(--copper);
  font-weight: 700;
  margin-bottom: .5rem;
}
.section-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.6rem, 4vw, 2.4rem);
  font-weight: 700;
  color: var(--dark);
  line-height: 1.2;
  margin-bottom: 1rem;
}
.section-title em { font-style: italic; color: var(--copper); }
.section-lead {
  font-size: 1.05rem;
  color: var(--muted);
  max-width: 620px;
  line-height: 1.75;
}
.divider {
  width: 48px;
  height: 3px;
  background: linear-gradient(90deg, var(--copper), var(--copper2));
  border-radius: 3px;
  margin: 1.2rem 0;
}
.center-text { text-align: center; }
.center-text .section-lead, .center-text .divider { margin-left: auto; margin-right: auto; }

/* ——— Cards services (accueil) ——— */
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
  margin-top: 3rem;
}
.service-card {
  background: var(--card-bg);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  transition: transform var(--trans), box-shadow var(--trans);
  box-shadow: var(--shadow);
}
.service-card:hover { transform: translateY(-6px); box-shadow: 0 12px 40px rgba(42,31,26,.16); }
.service-card img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  transition: transform .5s ease;
}
.service-card:hover img { transform: scale(1.04); }
.service-card-body { padding: 1.5rem; }
.service-card-body h3 {
  font-family: 'Playfair Display', serif;
  font-size: 1.2rem;
  font-weight: 600;
  color: var(--dark);
  margin-bottom: .5rem;
}
.service-card-body p { font-size: .9rem; color: var(--muted); margin-bottom: 1rem; }
.service-card-body a {
  font-size: .8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .1em;
  color: var(--copper);
  display: inline-flex;
  align-items: center;
  gap: .4rem;
  transition: gap var(--trans);
}
.service-card-body a:hover { gap: .7rem; }

/* ——— Section "À propos" bande ——— */
.about-band {
  background: var(--dark);
  color: var(--white);
}
.about-band-inner {
  max-width: var(--max-w);
  margin: auto;
  padding: 5rem 1.5rem;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}
.about-band .section-title { color: var(--white); }
.about-band .divider { background: linear-gradient(90deg, var(--copper), #E8C090); }
.about-band p { color: rgba(255,255,255,.8); margin-bottom: 1rem; line-height: 1.8; }
.about-band ul li {
  color: rgba(255,255,255,.8);
  padding: .4rem 0;
  padding-left: 1.4rem;
  position: relative;
  font-size: .95rem;
}
.about-band ul li::before {
  content: '✦';
  position: absolute;
  left: 0;
  color: var(--copper);
  font-size: .7rem;
  top: .55rem;
}
.about-img-wrap {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: 0 16px 60px rgba(0,0,0,.4);
}
.about-img-wrap img { width: 100%; height: 420px; object-fit: cover; }
.about-img-badge {
  position: absolute;
  bottom: 1.5rem;
  left: 1.5rem;
  background: var(--copper);
  color: var(--white);
  padding: .5rem 1rem;
  border-radius: 6px;
  font-size: .78rem;
  font-weight: 700;
  letter-spacing: .06em;
  text-transform: uppercase;
}

/* ——— Bienfaits / Features ——— */
.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 2rem;
  margin-top: 3rem;
}
.feature-item { text-align: center; padding: 2rem 1rem; }
.feature-icon {
  font-size: 2.2rem;
  margin-bottom: 1rem;
  display: block;
}
.feature-item h4 {
  font-family: 'Playfair Display', serif;
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--dark);
  margin-bottom: .5rem;
}
.feature-item p { font-size: .88rem; color: var(--muted); }

/* ——— Avis clients ——— */
.reviews-section { background: var(--sand); }
.reviews-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.5rem;
  margin-top: 2.5rem;
}
.review-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 1.5rem;
  box-shadow: var(--shadow);
  display: flex;
  flex-direction: column;
  gap: .75rem;
}
.review-stars { color: #F4A010; font-size: 1rem; letter-spacing: .1em; }
.review-text { font-size: .9rem; color: var(--text); line-height: 1.6; font-style: italic; }
.review-author { font-size: .78rem; font-weight: 700; color: var(--muted); text-transform: uppercase; letter-spacing: .06em; }
.review-date { font-size: .72rem; color: #B0A090; }
.reviews-cta { text-align: center; margin-top: 2rem; }
.reviews-score {
  display: inline-flex;
  align-items: center;
  gap: .75rem;
  background: var(--white);
  border-radius: 50px;
  padding: .6rem 1.4rem;
  box-shadow: var(--shadow);
  margin-bottom: 1.5rem;
}
.reviews-score .score { font-family: 'Playfair Display', serif; font-size: 1.4rem; font-weight: 700; color: var(--dark); }
.reviews-score .label { font-size: .8rem; color: var(--muted); }

/* ——— Infos Pratiques ——— */
.info-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 2rem;
  margin-top: 2.5rem;
}
.info-item {
  background: var(--card-bg);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.75rem;
  text-align: center;
}
.info-item .icon { font-size: 1.8rem; margin-bottom: .75rem; }
.info-item h4 {
  font-size: .72rem;
  text-transform: uppercase;
  letter-spacing: .14em;
  color: var(--copper);
  font-weight: 700;
  margin-bottom: .5rem;
}
.info-item p { font-size: .9rem; color: var(--text); line-height: 1.6; }
.info-item a { color: var(--copper); font-weight: 700; }
.info-item a:hover { color: var(--copper2); }

/* ——— Page intérieure hero ——— */
.page-hero {
  background: linear-gradient(135deg, var(--dark) 0%, #3D2E26 100%);
  color: var(--white);
  padding: 5rem 1.5rem 4rem;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.page-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" width="60" height="60"><circle cx="30" cy="30" r="1" fill="rgba(192,144,96,0.15)"/></svg>') repeat;
}
.page-hero-inner { position: relative; z-index: 1; }
.page-hero .section-label { color: var(--copper); }
.page-hero h1 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2rem, 5vw, 3rem);
  font-weight: 700;
  margin-bottom: .75rem;
}
.page-hero p { font-size: 1.05rem; opacity: .8; max-width: 580px; margin: 0 auto; }
.breadcrumb {
  font-size: .78rem;
  opacity: .6;
  margin-bottom: 1rem;
  text-transform: uppercase;
  letter-spacing: .1em;
}
.breadcrumb a { color: var(--copper); }
.breadcrumb a:hover { color: var(--sand); }

/* ——— Page massages ——— */
.massage-list { display: flex; flex-direction: column; gap: 2.5rem; margin-top: 3rem; }
.massage-item {
  background: var(--card-bg);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  display: grid;
  grid-template-columns: 300px 1fr;
  box-shadow: var(--shadow);
  transition: box-shadow var(--trans);
}
.massage-item:hover { box-shadow: 0 10px 40px rgba(42,31,26,.14); }
.massage-item-img { position: relative; overflow: hidden; }
.massage-item-img img { width: 100%; height: 100%; min-height: 240px; object-fit: cover; transition: transform .5s ease; }
.massage-item:hover .massage-item-img img { transform: scale(1.05); }
.massage-item-body { padding: 2rem 2.5rem; display: flex; flex-direction: column; justify-content: center; }
.massage-emoji { font-size: 1.6rem; margin-bottom: .5rem; }
.massage-item-body h2 {
  font-family: 'Playfair Display', serif;
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: .75rem;
}
.massage-item-body p { color: var(--muted); font-size: .95rem; line-height: 1.75; margin-bottom: 1rem; }
.massage-benefits { display: flex; flex-direction: column; gap: .35rem; margin-bottom: 1.25rem; }
.massage-benefits li {
  font-size: .9rem;
  color: var(--text);
  display: flex;
  align-items: flex-start;
  gap: .6rem;
}
.massage-benefits li::before { content: '✔'; color: var(--copper); flex-shrink: 0; font-size: .8rem; margin-top: .15rem; }
.price-tags { display: flex; gap: .75rem; flex-wrap: wrap; margin-bottom: 1.5rem; }
.price-tag {
  background: var(--cream);
  border: 1.5px solid var(--border);
  border-radius: 6px;
  padding: .35rem .9rem;
  font-size: .85rem;
  font-weight: 700;
  color: var(--dark);
}
.price-tag strong { color: var(--copper); }
.badge-exclusive {
  display: inline-block;
  background: rgba(192,144,96,.15);
  color: var(--copper);
  border: 1px solid rgba(192,144,96,.3);
  border-radius: 50px;
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  padding: .25rem .75rem;
  margin-bottom: 1rem;
}

/* ——— Tarifs page ——— */
.tarifs-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
  margin-top: 3rem;
}
.tarif-card {
  background: var(--card-bg);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: transform var(--trans), box-shadow var(--trans);
  display: flex;
  flex-direction: column;
}
.tarif-card:hover { transform: translateY(-5px); box-shadow: 0 12px 40px rgba(42,31,26,.15); }
.tarif-card.featured {
  border-color: var(--copper);
  border-width: 2px;
  position: relative;
}
.tarif-badge {
  position: absolute;
  top: 1rem; right: 1rem;
  background: var(--copper);
  color: var(--white);
  font-size: .68rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .1em;
  padding: .25rem .75rem;
  border-radius: 50px;
}
.tarif-img { height: 180px; overflow: hidden; }
.tarif-img img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s ease; }
.tarif-card:hover .tarif-img img { transform: scale(1.06); }
.tarif-body { padding: 1.5rem; flex: 1; display: flex; flex-direction: column; }
.tarif-body h3 {
  font-family: 'Playfair Display', serif;
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: .5rem;
}
.tarif-price {
  font-size: 2rem;
  font-weight: 700;
  color: var(--copper);
  font-family: 'Playfair Display', serif;
  margin-bottom: 1rem;
}
.tarif-price span { font-size: 1rem; color: var(--muted); font-family: 'Lato', sans-serif; font-weight: 400; }
.tarif-includes { flex: 1; }
.tarif-includes li {
  font-size: .88rem;
  color: var(--muted);
  padding: .3rem 0;
  padding-left: 1.2rem;
  position: relative;
}
.tarif-includes li::before { content: '·'; position: absolute; left: 0; color: var(--copper); font-size: 1.2rem; line-height: 1.2; }
.tarif-cta {
  margin-top: 1.5rem;
  display: block;
  text-align: center;
  background: var(--copper);
  color: var(--white);
  padding: .7rem 1rem;
  border-radius: 6px;
  font-size: .82rem;
  font-weight: 700;
  letter-spacing: .06em;
  text-transform: uppercase;
  transition: background var(--trans);
}
.tarif-cta:hover { background: var(--copper2); }
.tarif-note {
  background: var(--sand);
  border-radius: var(--radius);
  padding: 1.25rem 1.5rem;
  margin-top: 2.5rem;
  font-size: .88rem;
  color: var(--muted);
}
.tarif-note strong { color: var(--dark); }

/* ——— WhatsApp float ——— */
.whatsapp-float {
  position: fixed;
  bottom: 1.75rem;
  right: 1.75rem;
  z-index: 200;
  width: 56px;
  height: 56px;
  background: #25D366;
  color: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.6rem;
  box-shadow: 0 4px 20px rgba(37,211,102,.4);
  transition: transform var(--trans), box-shadow var(--trans);
  animation: pulse 2.5s ease-in-out infinite;
}
.whatsapp-float:hover { transform: scale(1.1); box-shadow: 0 6px 28px rgba(37,211,102,.55); }
@keyframes pulse {
  0%, 100% { box-shadow: 0 4px 20px rgba(37,211,102,.4); }
  50%       { box-shadow: 0 4px 32px rgba(37,211,102,.65); }
}

/* ——— Footer ——— */
.site-footer {
  background: var(--dark);
  color: rgba(255,255,255,.7);
  padding: 3.5rem 1.5rem 1.5rem;
}
.footer-inner {
  max-width: var(--max-w);
  margin: auto;
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 3rem;
  margin-bottom: 2.5rem;
}
.footer-brand .logo-name { color: var(--white); font-size: 1.3rem; }
.footer-brand .logo-sub { margin-bottom: 1rem; display: block; }
.footer-brand p { font-size: .88rem; line-height: 1.75; margin-bottom: 1.25rem; }
.footer-brand a { color: var(--copper); font-weight: 700; font-size: .88rem; }
.footer-col h4 {
  font-size: .72rem;
  text-transform: uppercase;
  letter-spacing: .18em;
  color: var(--copper);
  font-weight: 700;
  margin-bottom: 1rem;
}
.footer-col ul li { margin-bottom: .5rem; }
.footer-col ul li a {
  font-size: .88rem;
  color: rgba(255,255,255,.65);
  transition: color var(--trans);
}
.footer-col ul li a:hover { color: var(--white); }
.footer-bottom {
  max-width: var(--max-w);
  margin: auto;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(255,255,255,.1);
  display: flex;
  flex-wrap: wrap;
  gap: .75rem 2rem;
  justify-content: space-between;
  font-size: .78rem;
  color: rgba(255,255,255,.4);
}
.footer-bottom a { color: rgba(255,255,255,.55); transition: color var(--trans); }
.footer-bottom a:hover { color: var(--white); }

/* ——— Responsive ——— */
@media (max-width: 900px) {
  .about-band-inner { grid-template-columns: 1fr; gap: 2.5rem; }
  .about-img-wrap { order: -1; }
  .about-img-wrap img { height: 300px; }
  .massage-item { grid-template-columns: 1fr; }
  .massage-item-img img { min-height: 200px; }
  .footer-inner { grid-template-columns: 1fr 1fr; }
  .footer-brand { grid-column: 1 / -1; }
}
@media (max-width: 680px) {
  .main-nav { display: none; flex-direction: column; position: absolute; top: 100%; left: 0; right: 0; background: var(--cream); border-bottom: 1px solid var(--border); padding: 1rem 1.5rem; box-shadow: 0 8px 24px rgba(42,31,26,.1); }
  .main-nav.open { display: flex; }
  .main-nav a { padding: .65rem 0; font-size: .9rem; border-bottom: 1px solid var(--border); border-radius: 0; width: 100%; }
  .main-nav a::after { display: none; }
  .hamburger { display: flex; }
  .btn-book { display: none; }
  .site-header { position: sticky; }
  .header-inner { flex-wrap: wrap; }
  .footer-inner { grid-template-columns: 1fr; gap: 2rem; }
  .hero h1 { font-size: 2rem; }
  .massage-item-body { padding: 1.5rem; }
}

/* ────────────────────────────────────────────
   Intégration des plugins BW (avis Google, dashboard)
   avec la charte BrunoZen ci-dessus
   ──────────────────────────────────────────── */
.bwgr-card {
  background: var(--card-bg);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}
.bwgr-author { font-family: 'Playfair Display', serif; color: var(--dark); }
.bwgr-stars { color: #F4A010; }
.bwgr-comment { color: var(--text); }
.bwgr-avatar-fallback { background: var(--sand); color: var(--copper2); }
.bwgr-reply { background: var(--cream); border-left-color: var(--copper); }

/* ────────────────────────────────────────────
   Accessibilité
   ──────────────────────────────────────────── */
a:focus-visible,
button:focus-visible,
.btn-primary:focus-visible,
.btn-book:focus-visible {
  outline: 3px solid var(--copper);
  outline-offset: 2px;
}
@media (prefers-reduced-motion: reduce) {
  * { animation: none !important; transition: none !important; }
}
