/* ── Reset & variables ─────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --cream:   #f5f0e8;
  --beige:   #e8dece;
  --sand:    #d4c4aa;
  --gold:    #b5924a;
  --gold-lt: #d4aa6a;
  --ardoise: #355863;
  --vert:    #8a9a7a;
  --brown:   #6b4f2e;
  --text:    #3a2e22;
  --text-lt: #6b5a44;
  --white:   #fdfaf5;
  --ff-head: 'Cormorant Garamond', Georgia, serif;
  --ff-body: 'Jost', sans-serif;
}

html { scroll-behavior: smooth; font-size: 110%; scroll-padding-top: 106px; }

body {
  background: var(--cream);
  color: var(--text);
  font-family: var(--ff-body);
  font-weight: 300;
  font-size: 1rem;
  line-height: 1.75;
  position: relative;
}
body > section, body > footer {
  position: relative;
}
body > nav {
  position: sticky;
  z-index: 100;
}
body > section .container,
body > footer .container,
body > footer > * {
  position: relative;
  z-index: 2;
}

/* ── Utility ───────────────────────────────────────── */
.container { max-width: 1100px; margin: 0 auto; padding: 0 2rem; }
.gold { color: var(--gold); }
.serif { font-family: var(--ff-head); }
hr.divider {
  border: none;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--sand), transparent);
  margin: 3rem auto;
  max-width: 400px;
}

/* ── Nav ───────────────────────────────────────────── */
nav {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(245,240,232,0.92);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid var(--sand);
  font-size: 0.909rem; /* compense le 110% du html pour garder la nav à taille normale */
}
.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.75rem 2rem;
  max-width: 1400px;
  margin: 0 auto;
}
.nav-logo {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  text-decoration: none;
  color: var(--gold);
}
.nav-logo img { height: 80px; width: auto; }
.nav-links {
  display: flex;
  gap: 1.1rem;
  list-style: none;
  align-items: center;
  flex-wrap: wrap;
  justify-content: flex-end;
}
.nav-links a {
  text-decoration: none;
  color: var(--text-lt);
  font-size: 0.75rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  transition: color 0.3s;
  white-space: nowrap;
}
.nav-links a:hover { color: var(--gold); }
.nav-cta {
  background: var(--gold);
  color: var(--white) !important;
  padding: 0.4rem 1rem;
  border-radius: 3px;
  font-weight: 500;
}
.nav-cta:hover { background: var(--brown); }

/* dropdown */
.nav-dropdown { position: relative; }
.nav-dropdown > a::after { content: ' ▾'; font-size: 0.7em; }
.dropdown-menu {
  display: none;
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%);
  background: var(--white);
  border: 1px solid var(--sand);
  border-radius: 4px;
  min-width: 180px;
  padding: 0.5rem 0;
  box-shadow: 0 8px 24px rgba(0,0,0,0.08);
  padding-top: 0.75rem;
}
.dropdown-menu::before {
  content: '';
  position: absolute;
  top: -10px;
  left: 0;
  right: 0;
  height: 10px;
}
.nav-dropdown:hover .dropdown-menu { display: block; }
.dropdown-menu { list-style: none; }
.dropdown-menu li { list-style: none; }
.dropdown-menu a {
  display: block;
  padding: 0.5rem 1.25rem;
  text-transform: none;
  font-size: 0.83rem;
  letter-spacing: 0.04em;
}
.dropdown-menu a:hover { background: var(--cream); color: var(--gold); }

/* burger */
.burger { display: none; background: none; border: none; cursor: pointer; flex-direction: column; gap: 5px; }
.burger span { display: block; width: 24px; height: 2px; background: var(--brown); transition: all 0.3s; }
.mobile-menu { display: none; flex-direction: column; gap: 0; background: var(--white); border-top: 1px solid var(--sand); }
.mobile-menu a { display: block; padding: 0.75rem 2rem; color: var(--text); text-decoration: none; border-bottom: 1px solid var(--cream); font-size: 0.9rem; }
.mobile-menu.open { display: flex; }

/* ── Hero ──────────────────────────────────────────── */
.hero {
  min-height: 88vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  position: relative;
  overflow: hidden;
  padding: 6rem 2rem 4rem;
}
.hero-bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 60% 70% at 20% 80%, rgba(181,146,74,0.10) 0%, transparent 60%),
    radial-gradient(ellipse 50% 60% at 80% 20%, rgba(181,146,74,0.08) 0%, transparent 60%),
    var(--cream);
}
.hero-ornament {
  position: absolute;
  width: 500px;
  height: 500px;
  border-radius: 50%;
  border: 1px solid rgba(181,146,74,0.15);
  top: 50%;
  left: 50%;
  transform: translate(-50%,-50%);
  pointer-events: none;
}
.hero-ornament::before {
  content: '';
  position: absolute;
  inset: 30px;
  border-radius: 50%;
  border: 1px solid rgba(181,146,74,0.10);
}
.hero-content { position: relative; z-index: 1; }
.hero-tree { width: 120px; height: 120px; margin: 0 auto 1.5rem; }
.hero-eyebrow {
  font-family: var(--ff-body);
  font-size: 0.75rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1rem;
}
.hero h1 {
  font-family: var(--ff-head);
  font-size: clamp(3rem, 8vw, 5.5rem);
  font-weight: 300;
  color: var(--brown);
  line-height: 1.1;
  letter-spacing: 0.05em;
  margin-bottom: 0.5rem;
}
.hero-tagline {
  font-family: var(--ff-head);
  font-style: italic;
  font-size: clamp(1rem, 2.5vw, 1.4rem);
  color: var(--gold);
  letter-spacing: 0.08em;
  margin-bottom: 2.5rem;
}
.hero-cta {
  display: inline-block;
  padding: 0.85rem 2.5rem;
  border: 1px solid var(--gold);
  color: var(--gold);
  text-decoration: none;
  font-size: 0.8rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  transition: all 0.3s;
  background: var(--beige);
}
.hero-cta:hover {
  background: var(--gold);
  color: var(--white);
}

/* ── Sections communes ─────────────────────────────── */
section { padding: 5rem 0; }
section:nth-child(even) { background: var(--white); }
.section-label {
  font-size: 0.72rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--gold);
  display: block;
  margin-bottom: 0.5rem;
}
.section-title {
  font-family: var(--ff-head);
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  font-weight: 400;
  color: var(--brown);
  line-height: 1.2;
  margin-bottom: 1.5rem;
}
.section-title em { font-style: italic; color: var(--gold); }

/* ── À propos ──────────────────────────────────────── */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
}
.about-photo-wrap {
  position: relative;
}
.about-photo {
  width: 100%;
  height: auto;
  border-radius: 18px;
  display: block;
}
/* placeholder photo */
.photo-placeholder {
  width: 100%;
  aspect-ratio: 3/4;
  background: linear-gradient(135deg, var(--beige), var(--sand));
  border-radius: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
  font-family: var(--ff-head);
  font-size: 1rem;
  font-style: italic;
}
.about-photo-deco {
  position: absolute;
  top: -16px;
  left: -16px;
  right: 16px;
  bottom: 16px;
  border: 1px solid var(--sand);
  border-radius: 18px;
  z-index: -1;
  pointer-events: none;
}
.about-text p { margin-bottom: 1rem; color: var(--text-lt); }
.about-text p:first-of-type { font-size: 1.05rem; }
.about-name {
  margin-top: 2rem;
  font-family: var(--ff-head);
  font-size: 1.1rem;
  font-style: italic;
  color: var(--gold);
}
.about-credentials {
  font-size: 0.8rem;
  color: var(--text-lt);
  letter-spacing: 0.05em;
}

/* ── Hêtre Soie symbolique ─────────────────────────── */
.symbolic { text-align: center; }
.symbolic-quote {
  font-family: var(--ff-head);
  font-size: clamp(1.1rem, 2.5vw, 1.5rem);
  font-style: italic;
  color: var(--brown);
  max-width: 700px;
  margin: 0 auto 3rem;
  line-height: 1.6;
}
.symbolic-duo {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2px;
  max-width: 700px;
  margin: 0 auto;
}
.symbolic-conclusion {
  font-family: var(--ff-head);
  font-size: clamp(1.1rem, 2.5vw, 1.4rem);
  font-style: italic;
  color: var(--brown);
  max-width: 700px;
  margin: 2.5rem auto 0;
  line-height: 1.6;
  text-align: center;
}
.symbolic-card {
  background: var(--beige);
  padding: 2.5rem 2rem;
  text-align: center;
}
.symbolic-card:first-child { border-radius: 2px 0 0 2px; }
.symbolic-card:last-child { border-radius: 0 2px 2px 0; }
.symbolic-card-icon { font-size: 2rem; margin-bottom: 1rem; }
.symbolic-card h3 {
  font-family: var(--ff-head);
  font-size: 1.5rem;
  font-weight: 400;
  color: var(--brown);
  margin-bottom: 0.5rem;
}
.symbolic-card p { font-size: 0.9rem; color: var(--text-lt); }

/* ── Prestations ───────────────────────────────────── */
.prestations-intro { text-align: center; max-width: 650px; margin: 0 auto 4rem; }
.prestations-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}
.presta-card {
  background: var(--cream);
  border: 1px solid var(--sand);
  border-top: 3px solid var(--gold);
  padding: 2.5rem 2rem;
  position: relative;
  transition: transform 0.3s, box-shadow 0.3s;
}
.presta-card:nth-child(1) { border-top-color: var(--gold); }
.presta-card:nth-child(2) { border-top-color: var(--ardoise); }
.presta-card:nth-child(3) { border-top-color: var(--vert); }
.presta-card:nth-child(2) .presta-tag,
.presta-card:nth-child(2) .presta-category { color: var(--ardoise); }
.presta-card:nth-child(3) .presta-tag,
.presta-card:nth-child(3) .presta-category { color: var(--vert); }
.presta-card:nth-child(2) ul li::before { color: var(--ardoise); }
.presta-card:nth-child(3) ul li::before { color: var(--vert); }
.presta-leaf {
  width: 28px;
  height: 28px;
  vertical-align: middle;
  margin-right: 4px;
}
.presta-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 32px rgba(107,79,46,0.1);
}
.presta-tag {
  font-size: 0.78rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.5rem;
}
.presta-card h3 {
  font-family: var(--ff-head);
  font-size: 1.5rem;
  font-weight: 400;
  color: var(--brown);
  margin-bottom: 0.25rem;
  line-height: 1.25;
}
.presta-subtitle {
  font-size: 0.8rem;
  color: var(--text-lt);
  margin-bottom: 1rem;
  font-style: italic;
}
.presta-category {
  font-family: var(--ff-head);
  font-size: 1.3rem;
  font-weight: 600;
  color: var(--gold);
  margin-bottom: 0.25rem;
  letter-spacing: 0.02em;
}
.presta-card ul {
  list-style: none;
  font-size: 0.88rem;
  color: var(--text-lt);
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
}
.presta-card ul li::before { content: '—  '; color: var(--gold); }
.presta-lieu {
  margin-top: 1.25rem;
  font-size: 0.78rem;
  color: var(--text);
  letter-spacing: 0.05em;
}
.presta-link {
  display: inline-block;
  margin-top: 1.5rem;
  font-size: 0.75rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gold);
  text-decoration: none;
  border-bottom: 1px solid transparent;
  transition: border-color 0.3s;
}
.presta-link:hover { border-color: var(--gold); }
.presta-card:nth-child(2) .presta-link { color: var(--ardoise); }
.presta-card:nth-child(2) .presta-link:hover { border-color: var(--ardoise); }
.presta-card:nth-child(3) .presta-link { color: var(--vert); }
.presta-card:nth-child(3) .presta-link:hover { border-color: var(--vert); }

/* ── Détails prestations ───────────────────────────── */
.detail-section { padding: 5rem 0; }
.detail-header {
  display: flex;
  align-items: flex-start;
  gap: 1.5rem;
  margin-bottom: 3rem;
}
.detail-num {
  font-family: var(--ff-head);
  font-size: 4rem;
  color: var(--sand);
  line-height: 1;
  flex-shrink: 0;
}
.detail-leaf {
  width: 56px;
  height: 56px;
  flex-shrink: 0;
}
.detail-intro { font-style: italic; color: var(--text-lt); margin-bottom: 2rem; max-width: 680px; }
.detail-body {
  display: grid;
  grid-template-columns: 3fr 2fr;
  gap: 4rem;
  align-items: start;
}
.detail-body p { color: var(--text-lt); margin-bottom: 1rem; }
.detail-box {
  background: var(--beige);
  padding: 2rem;
  border-left: 3px solid var(--gold);
}
.detail-box h4 {
  font-family: var(--ff-head);
  font-size: 1.1rem;
  color: var(--brown);
  margin-bottom: 1rem;
}
.detail-box ul { list-style: none; font-size: 0.88rem; color: var(--text-lt); display: flex; flex-direction: column; gap: 0.4rem; }
.detail-box ul li::before { content: '✦  '; color: var(--gold); font-size: 0.7em; }

/* Couleurs par prestation – détail */
.detail-or .section-label { color: var(--gold); }
.detail-or .detail-box { border-left-color: var(--gold); }
.detail-or .detail-box ul li::before { color: var(--gold); }
.detail-or blockquote { color: var(--gold); border-left-color: var(--gold); }

.detail-ardoise .section-label { color: var(--ardoise); }
.detail-ardoise .detail-box { border-left-color: var(--ardoise); }
.detail-ardoise .detail-box ul li::before { color: var(--ardoise); }
.detail-ardoise blockquote { color: var(--ardoise); border-left-color: var(--ardoise); }
.detail-ardoise .section-title em { color: var(--ardoise); }

.detail-vert .section-label { color: var(--vert); }
.detail-vert .detail-box { border-left-color: var(--vert); }
.detail-vert .detail-box ul li::before { color: var(--vert); }
.detail-vert blockquote { color: var(--vert); border-left-color: var(--vert); }
.detail-vert .section-title em { color: var(--vert); }
blockquote {
  font-family: var(--ff-head);
  font-style: italic;
  font-size: 1.1rem;
  color: var(--gold);
  border-left: 2px solid var(--gold);
  padding-left: 1.5rem;
  margin: 2rem 0;
}
blockquote cite {
  display: block;
  font-size: 0.8rem;
  color: var(--text-lt);
  font-style: normal;
  margin-top: 0.5rem;
}

/* ── Tarifs ────────────────────────────────────────── */
.tarifs-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}
.tarif-block h3 {
  font-family: var(--ff-head);
  font-size: 1.4rem;
  color: var(--brown);
  margin-bottom: 1.25rem;
  padding-bottom: 0.75rem;
  border-bottom: 1px solid var(--sand);
}
.tarif-leaf {
  width: 22px;
  height: auto;
  vertical-align: middle;
  margin-right: 4px;
}
.tarif-block-subtitle {
  font-size: 0.85rem;
  color: var(--gold);
  font-style: italic;
  margin-top: -0.75rem;
  margin-bottom: 1rem;
}
.tarif-or h3 { border-bottom-color: var(--gold); }
.tarif-or .tarif-block-subtitle { color: var(--gold); }
.tarif-ardoise h3 { border-bottom-color: var(--ardoise); }
.tarif-ardoise .tarif-block-subtitle { color: var(--ardoise); }
.tarif-ardoise .tarif-price { color: var(--ardoise); }
.tarif-vert h3 { border-bottom-color: var(--vert); }
.tarif-vert .tarif-block-subtitle { color: var(--vert); }
.tarif-vert .tarif-price { color: var(--vert); }
.tarif-item {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  padding: 0.5rem 0;
  border-bottom: 1px solid rgba(212,196,170,0.4);
  gap: 1rem;
}
.tarif-item:last-child { border-bottom: none; }
.tarif-name { font-size: 0.88rem; color: var(--text-lt); flex: 1; }
.tarif-name small { display: block; font-size: 0.75rem; color: var(--sand); }
.tarif-price {
  font-family: var(--ff-head);
  font-size: 1.2rem;
  color: var(--gold);
  white-space: nowrap;
  flex-shrink: 0;
}
.tarif-note {
  margin-top: 1rem;
  font-size: 0.78rem;
  color: var(--text-lt);
  font-style: italic;
}
.tarif-solidarity {
  margin-top: 0.5rem;
  font-size: 0.78rem;
  color: var(--gold);
}

/* ── Formations ────────────────────────────────────── */
.formations-timeline {
  max-width: 700px;
  margin: 0 auto;
  position: relative;
}
.formations-timeline::before {
  content: '';
  position: absolute;
  left: 80px;
  top: 0;
  bottom: 0;
  width: 1px;
  background: linear-gradient(180deg, transparent, var(--sand), transparent);
}
.formation-item {
  display: flex;
  gap: 2rem;
  padding: 1.5rem 0;
}
.formation-year {
  font-family: var(--ff-head);
  font-size: 1.2rem;
  color: var(--gold);
  width: 60px;
  flex-shrink: 0;
  text-align: right;
  padding-top: 0.2rem;
}
.formation-dot {
  width: 10px;
  height: 10px;
  background: var(--gold);
  border-radius: 50%;
  flex-shrink: 0;
  margin-top: 0.5rem;
  position: relative;
  z-index: 1;
}
.formation-content h4 {
  font-size: 0.95rem;
  color: var(--brown);
  font-weight: 500;
  margin-bottom: 0.2rem;
}
.formation-content p { font-size: 0.83rem; color: var(--text-lt); }
.formation-qualiopi {
  display: inline-block;
  font-size: 0.7rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gold);
  border: 1px solid var(--gold);
  padding: 0.15rem 0.5rem;
  margin-top: 0.3rem;
}

/* ── Contact ───────────────────────────────────────── */
.contact-wrap {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: start;
}
.contact-info h3 {
  font-family: var(--ff-head);
  font-size: 1.8rem;
  color: var(--brown);
  margin-bottom: 1.5rem;
}
.contact-line {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  margin-bottom: 1.25rem;
}
.contact-icon { color: var(--gold); font-size: 1.2rem; width: 24px; flex-shrink: 0; }
.contact-line a { color: var(--text-lt); text-decoration: none; transition: color 0.3s; }
.contact-line a:hover { color: var(--gold); }
.contact-form { display: flex; flex-direction: column; gap: 1rem; }
.form-group label { display: block; font-size: 0.78rem; letter-spacing: 0.1em; text-transform: uppercase; color: var(--text-lt); margin-bottom: 0.4rem; }
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  background: var(--white);
  border: 1px solid var(--sand);
  padding: 0.75rem 1rem;
  font-family: var(--ff-body);
  font-size: 0.9rem;
  color: var(--text);
  outline: none;
  transition: border-color 0.3s;
  appearance: none;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus { border-color: var(--gold); }
.form-group textarea { resize: vertical; min-height: 120px; }
.form-submit {
  padding: 0.9rem 2.5rem;
  background: var(--gold);
  color: var(--white);
  border: none;
  font-family: var(--ff-body);
  font-size: 0.8rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  cursor: pointer;
  transition: background 0.3s;
  align-self: flex-start;
}
.form-submit:hover { background: var(--brown); }

.form-feedback {
  padding: 1rem 1.5rem;
  border-radius: 4px;
  margin-bottom: 1.5rem;
  font-size: 0.9rem;
  line-height: 1.5;
}
.form-feedback--success {
  background: #e8f5e9;
  color: #2e7d32;
  border: 1px solid #a5d6a7;
}
.form-feedback--error {
  background: #fbe9e7;
  color: #c62828;
  border: 1px solid #ef9a9a;
}

.cf-turnstile {
  margin-bottom: 1rem;
}

/* ── Footer ────────────────────────────────────────── */
/* ── Fil de soie décoratif ─────────────────────────── */
.fil-de-soie {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
  pointer-events: none;
  overflow: hidden;
}
.fil-de-soie svg {
  width: 100%;
  height: 100%;
}
@media (max-width: 768px) {
  .fil-de-soie { display: none; }
}

footer {
  background: var(--brown);
  color: rgba(255,255,255,0.6);
  padding: 3rem 0;
  text-align: center;
}
.footer-logo {
  font-family: var(--ff-head);
  font-size: 1.8rem;
  color: var(--gold-lt);
  letter-spacing: 0.15em;
  margin-bottom: 0.5rem;
}
.footer-tagline {
  font-style: italic;
  font-family: var(--ff-head);
  color: rgba(255,255,255,0.5);
  margin-bottom: 1.5rem;
}
.footer-links { display: flex; gap: 2rem; justify-content: center; margin-bottom: 2rem; flex-wrap: wrap; }
.footer-links a { color: var(--text); text-decoration: none; font-size: 0.78rem; letter-spacing: 0.1em; text-transform: uppercase; transition: color 0.3s; }
.footer-links a:hover { color: var(--gold-lt); }
.footer-copy { font-size: 0.75rem; color: rgba(255,255,255,0.3); }

/* ── Animations ────────────────────────────────────── */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(20px); }
  to   { opacity: 1; transform: translateY(0); }
}
.hero-content > * {
  animation: fadeUp 0.8s ease both;
}
.hero-content > *:nth-child(1) { animation-delay: 0.1s; }
.hero-content > *:nth-child(2) { animation-delay: 0.2s; }
.hero-content > *:nth-child(3) { animation-delay: 0.3s; }
.hero-content > *:nth-child(4) { animation-delay: 0.4s; }
.hero-content > *:nth-child(5) { animation-delay: 0.5s; }

/* ── Responsive ────────────────────────────────────── */
@media (max-width: 1200px) {
  .nav-links { gap: 0.6rem; }
  .nav-links a { font-size: 0.68rem; letter-spacing: 0.04em; }
}
@media (max-width: 1024px) {
  .nav-links { display: none; }
  .burger { display: flex; }
}
@media (max-width: 900px) {
  .about-grid,
  .detail-body,
  .contact-wrap { grid-template-columns: 1fr; gap: 2.5rem; }
  .about-photo-wrap { max-width: 420px; margin: 0 auto; }
  .prestations-grid,
  .tarifs-grid { grid-template-columns: 1fr; }
  .symbolic-duo { grid-template-columns: 1fr; gap: 2px; }
  .symbolic-card:first-child { border-radius: 2px 2px 0 0; }
  .symbolic-card:last-child  { border-radius: 0 0 2px 2px; }
  .formations-timeline::before { left: 72px; }
}
@media (max-width: 600px) {
  .hero h1 { font-size: 2.5rem; }
  .hero-ornament { width: 300px; height: 300px; }
  .detail-body { grid-template-columns: 1fr; }
}
/* ══ GALERIE ════════════════════════════════════════════ */
.galerie-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
  gap: 1rem;
}
.galerie-item {
  position: relative;
  display: block;
  overflow: hidden;
  aspect-ratio: 1 / 1;
  border-radius: 4px;
  background: var(--cream);
  box-shadow: 0 2px 8px rgba(107, 79, 46, 0.08);
  cursor: zoom-in;
}
.galerie-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.5s ease, filter 0.5s ease;
}
.galerie-item::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 60%, rgba(107, 79, 46, 0.25));
  opacity: 0;
  transition: opacity 0.3s ease;
}
.galerie-item:hover img { transform: scale(1.06); }
.galerie-item:hover::after { opacity: 1; }
@media (max-width: 600px) {
  .galerie-grid { grid-template-columns: repeat(2, 1fr); gap: 0.5rem; }
}

/* ── Avis Google ─────────────────────────────────────── */
.reviews-global {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  margin-top: 0.75rem;
  flex-wrap: wrap;
}
.reviews-stars { color: var(--gold); font-size: 1.2rem; letter-spacing: 2px; }
.reviews-score { font-weight: 700; font-size: 1.1rem; color: var(--brown); }
.reviews-count { color: var(--text-lt); font-size: 0.9rem; }

.reviews-slider-wrap {
  width: 100%;
  overflow: hidden;
}
.reviews-slider {
  --gutter: max(2rem, calc((100vw - 1100px) / 2 + 2rem));
  display: flex;
  gap: 1.25rem;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
  padding: 0.5rem var(--gutter) 1.5rem;
}
.reviews-slider::-webkit-scrollbar { display: none; }
.reviews-nav {
  display: flex;
  justify-content: center;
  gap: 0.75rem;
  margin-top: 0.5rem;
}
.reviews-nav-btn {
  background: none;
  border: 1.5px solid var(--gold);
  color: var(--gold);
  width: 2.4rem;
  height: 2.4rem;
  border-radius: 50%;
  font-size: 1.1rem;
  cursor: pointer;
  transition: background 0.2s, color 0.2s;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0;
  line-height: 1;
}
.reviews-nav-btn:hover { background: var(--gold); color: #fff; }
.reviews-nav-btn:disabled { opacity: 0.3; cursor: default; }
.review-card {
  background: var(--cream);
  border-radius: 12px;
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  flex: 0 0 clamp(280px, 85vw, 360px);
  scroll-snap-align: start;
}
.review-header {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}
.review-avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  object-fit: cover;
  flex-shrink: 0;
}
.review-avatar--placeholder {
  background: var(--green);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 1rem;
}
.review-author { font-weight: 600; font-size: 0.9rem; color: var(--brown); }
.review-date   { font-size: 0.78rem; color: var(--text-lt); }
.review-rating-badge {
  margin-left: auto;
  background: var(--gold);
  color: #fff;
  font-size: 0.8rem;
  font-weight: 700;
  padding: 0.2rem 0.5rem;
  border-radius: 20px;
  white-space: nowrap;
}
.review-text {
  font-size: 0.88rem;
  color: var(--text);
  line-height: 1.6;
  flex: 1;
}
.btn-outline-sm {
  display: inline-block;
  padding: 0.5rem 1.4rem;
  border: 1.5px solid var(--gold);
  border-radius: 30px;
  color: var(--gold);
  font-size: 0.85rem;
  text-decoration: none;
  transition: background 0.2s, color 0.2s;
}
.btn-outline-sm:hover { background: var(--gold); color: #fff; }


