:root {
  --lin: #F8F0E9;
  --nude: #E9D3C5;
  --ivoire: #DABCB2;
  --beige: #BFA89C;
  --cafe: #9A8375;
  --encre: #494240;
  --encre-light: #6b6361;
}
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  font-family: 'Lato', sans-serif;
  background: var(--lin);
  color: var(--encre);
  font-size: 16px;
  line-height: 1.7;
  font-weight: 300;
}

/* ===== NAV ===== */
nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 200;
  background: rgba(248,240,233,0.97);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--nude);
  height: 68px;
  display: flex; align-items: center; justify-content: flex-end;
  padding: 0 5%;
}
.nav-logo-wrap { display: flex; flex-direction: column; line-height: 1; cursor: pointer; }
.nav-logo-name { font-family: 'Great Vibes', cursive; font-size: 1.9rem; color: var(--encre); }
.nav-logo-tag { font-size: 0.58rem; letter-spacing: 0.25em; text-transform: uppercase; color: var(--cafe); margin-top: -4px; }
.nav-links { display: flex; align-items: center; gap: 2.5rem; list-style: none; }
.nav-links a {
  font-size: 0.72rem; font-weight: 400; letter-spacing: 0.16em; text-transform: uppercase;
  color: var(--encre-light); text-decoration: none; transition: color 0.2s; cursor: pointer;
}
.nav-links a:hover { color: var(--encre); }
.nav-links a.active { color: var(--encre); border-bottom: 1px solid var(--cafe); padding-bottom: 2px; }
.nav-cta-btn { background: var(--encre) !important; color: var(--lin) !important; padding: 9px 20px; border-bottom: none !important; transition: background 0.25s !important; }
.nav-cta-btn:hover { background: var(--cafe) !important; color: var(--lin) !important; }
.nav-cta-btn.active { border-bottom: none !important; }

.burger { display: none; flex-direction: column; gap: 5px; cursor: pointer; padding: 4px; background: none; border: none; }

/* ===== NAV DROPDOWN ===== */
.nav-dropdown { position: relative; }
.nav-dropdown-toggle {
  cursor: pointer;
  display: inline-flex; align-items: center; gap: 5px;
  /* Reset button styles */
  background: none; border: none; padding: 0; margin: 0;
  /* Même style que .nav-links a */
  font-family: inherit; font-size: 0.72rem; font-weight: 400;
  letter-spacing: 0.16em; text-transform: uppercase;
  color: var(--encre-light); text-decoration: none;
  transition: color 0.2s; line-height: inherit;
  outline: none;
}
.nav-dropdown-toggle:hover { color: var(--encre); }
.nav-dropdown-toggle.active { color: var(--encre); }
.nav-dropdown-toggle::after {
  content: '›';
  font-size: 0.75rem;
  transform: rotate(90deg);
  display: inline-block;
  transition: transform 0.2s;
  line-height: 1;
  vertical-align: middle;
  margin-top: -1px;
}
.nav-dropdown:hover .nav-dropdown-toggle::after { transform: rotate(-90deg); }
.nav-dropdown-menu {
  display: none;
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%);
  background: rgba(248,240,233,0.98);
  backdrop-filter: blur(12px);
  border: 1px solid var(--nude);
  list-style: none;
  min-width: 260px;
  max-height: 80vh;
  overflow-y: auto;
  padding: 0.4rem 0 0.5rem;
  z-index: 300;
  box-shadow: 0 8px 30px rgba(73,66,64,0.10);
  margin-top: 0;
}
/* pont invisible entre le lien et le menu */
.nav-dropdown::after {
  content: '';
  position: absolute;
  top: 100%;
  left: 0; right: 0;
  height: 18px;
}
.nav-dropdown:hover .nav-dropdown-menu { display: block; }
.nav-dropdown-menu li a {
  display: block;
  padding: 0.65rem 1.4rem;
  font-size: 0.7rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--encre-light);
  text-decoration: none;
  transition: color 0.2s, background 0.2s;
  white-space: nowrap;
  cursor: pointer;
}
.nav-dropdown-menu li a:hover { color: var(--encre); background: var(--nude); }
.nav-dropdown-menu li a.active { color: var(--encre); background: none; border-left: 2px solid var(--cafe); padding-left: calc(1.4rem - 2px); }

/* ===== MOBILE MENU SOUS-ITEMS ===== */
.mobile-menu-section {
  font-size: 0.72rem; letter-spacing: 0.18em; text-transform: uppercase;
  color: var(--encre) !important; font-weight: 700; cursor: pointer !important;
  padding: 1rem 0 !important; border-bottom: 1px solid var(--nude) !important;
  display: flex !important; justify-content: space-between; align-items: center;
}
.mobile-menu-section::after { content: '+'; font-size: 1.1rem; font-weight: 300; color: var(--cafe); }
.mobile-menu-section.open::after { content: '−'; }
.mobile-menu a.mobile-menu-sub {
  display: none;
  font-size: 0.72rem; padding: 0.6rem 0 0.6rem 1rem;
  border-bottom: none; color: var(--encre-light);
}
.mobile-menu a.mobile-menu-sub.visible { display: block; }
.mobile-menu a.mobile-menu-sub--last { border-bottom: 1px solid var(--nude) !important; padding-bottom: 1rem !important; }
.mobile-menu-sub.active { color: var(--encre) !important; font-weight: 700 !important; }

/* ===== PAGES DÉTAIL PRESTATION ===== */
.prestation-detail { padding: clamp(3rem, 6vw, 6rem) 5%; }
.prestation-detail-inner { max-width: 1100px; margin: 0 auto; }
.prestation-detail-block {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(3rem, 5vw, 6rem);
  align-items: center;
  margin-bottom: clamp(4rem, 7vw, 7rem);
}
.prestation-detail-img {
  aspect-ratio: 4/5;
  overflow: hidden;
}
.prestation-detail-img img {
  width: 100%; height: 100%;
  object-fit: cover; object-position: center 30%;
  display: block; transition: transform 0.6s;
}
.prestation-detail-img:hover img { transform: scale(1.03); }
.prestation-detail-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.5rem, 3vw, 2.2rem);
  font-weight: 400; color: var(--encre); margin-bottom: 1.25rem;
}
.prestation-detail-title em { font-style: italic; color: var(--cafe); }
.prestation-detail-desc {
  font-size: 0.97rem; color: var(--encre); font-weight: 400;
  line-height: 1.85; margin-bottom: 2rem;
}
.prestation-cards-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-bottom: clamp(3rem, 5vw, 5rem);
}
.prestation-card-detail {
  background: var(--nude);
  padding: 1.75rem 1.5rem;
  display: flex; flex-direction: column;
}
.prestation-card-detail h3 {
  font-family: 'Playfair Display', serif;
  font-size: 1rem; font-weight: 400; color: var(--encre);
  margin-bottom: 0.75rem;
}
.prestation-card-detail p {
  font-size: 0.88rem; color: var(--encre-light); line-height: 1.75;
  flex: 1; margin-bottom: 1rem;
}
.prestation-card-price {
  font-size: 0.8rem; letter-spacing: 0.15em;
  color: var(--cafe); font-weight: 700; text-transform: uppercase;
}
.prestation-info-box {
  background: var(--encre); color: var(--lin);
  padding: 2rem 2.5rem; margin-bottom: clamp(3rem, 5vw, 5rem);
  display: flex; align-items: flex-start; gap: 1.25rem;
}
.prestation-info-icon { font-size: 1.2rem; color: var(--ivoire); flex-shrink: 0; margin-top: 2px; }
.prestation-info-box p { font-size: 0.9rem; line-height: 1.75; color: var(--ivoire); margin: 0; }
.prestation-info-box strong { color: var(--lin); }
.prestation-cta { text-align: center; padding: clamp(2rem, 4vw, 4rem) 0; border-top: 1px solid var(--nude); }
.prestation-cta > p { font-family: 'Playfair Display', serif; font-size: clamp(1.1rem, 2vw, 1.5rem); color: var(--encre); margin-bottom: 1.75rem; font-style: italic; }
.burger span { display: block; width: 24px; height: 1.5px; background: var(--encre); transition: all 0.3s; }
.burger.open span:nth-child(1) { transform: rotate(45deg) translate(4.5px, 4.5px); }
.burger.open span:nth-child(2) { opacity: 0; }
.burger.open span:nth-child(3) { transform: rotate(-45deg) translate(4.5px, -4.5px); }

.mobile-menu {
  display: none; position: fixed; top: 68px; left: 0; right: 0; z-index: 9998;
  background: var(--lin); border-bottom: 1px solid var(--nude);
  flex-direction: column; padding: 1.5rem 5%; gap: 0;
  will-change: transform;
  max-height: calc(100dvh - 68px);
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
  padding-bottom: max(1.5rem, env(safe-area-inset-bottom, 1.5rem));
}
.mobile-menu.open { display: flex; }
.mobile-menu a {
  font-size: 0.78rem; letter-spacing: 0.18em; text-transform: uppercase;
  color: var(--encre-light); text-decoration: none; cursor: pointer;
  padding: 1rem 0; border-bottom: 1px solid var(--nude); display: block;
}
.mobile-menu a:last-child { border-bottom: none; color: var(--encre); font-weight: 700; }

/* ===== PAGES ===== */
.page { display: none; padding-top: 68px; min-height: 100vh; }
.page.active { display: block; }

/* ===== HERO ===== */
.hero {
  position: relative;
  min-height: calc(100vh - 68px);
  display: grid;
  grid-template-columns: 1fr 1fr;
  overflow: hidden;
  background: linear-gradient(135deg, var(--lin) 0%, var(--nude) 55%, var(--ivoire) 100%);
}
.hero-content {
  padding: 2rem 5% 3rem 5%;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.hero-visual {
  position: relative;
  overflow: hidden;
}
.hero-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  mix-blend-mode: multiply;
  -webkit-mask-image: linear-gradient(to right, transparent 0%, black 18%);
  mask-image: linear-gradient(to right, transparent 0%, black 18%);
  display: block;
}
.hero-logo {
  width: clamp(280px, 80%, 460px);
  height: auto;
  mix-blend-mode: multiply;
  margin-top: -3rem;
  margin-bottom: -2rem;
  opacity: 0;
  animation: fadeUp 0.6s 0.1s ease forwards;
}
.hero-text { font-size: clamp(0.9rem, 1.5vw, 1rem); color: var(--encre); font-weight: 400; max-width: 460px; margin-bottom: 1rem; line-height: 1.85; opacity: 0; animation: fadeUp 0.6s 0.6s ease forwards; }
.hero-text em { font-style: italic; color: var(--cafe); font-family: 'Playfair Display', serif; font-weight: 400; }
.hero-btns { display: flex; gap: 1rem; flex-wrap: wrap; opacity: 0; animation: fadeUp 0.6s 0.75s ease forwards; }
@keyframes fadeUp { from { opacity: 0; transform: translateY(18px); } to { opacity: 1; transform: translateY(0); } }

/* ===== SCROLL REVEAL ===== */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.reveal.reveal--left {
  transform: translateX(-30px);
}
.reveal.reveal--right {
  transform: translateX(30px);
}
.reveal.visible {
  opacity: 1;
  transform: translate(0, 0);
}

.btn-primary { font-size: 0.7rem; letter-spacing: 0.2em; text-transform: uppercase; background: var(--encre); color: var(--lin); padding: 14px 28px; border: none; cursor: pointer; transition: background 0.25s; font-family: 'Lato', sans-serif; font-weight: 400; }
.btn-primary:hover { background: var(--cafe); }
.btn-outline { font-size: 0.7rem; letter-spacing: 0.2em; text-transform: uppercase; background: transparent; color: var(--encre); padding: 13px 28px; border: 1px solid var(--beige); cursor: pointer; transition: all 0.25s; font-family: 'Lato', sans-serif; font-weight: 400; }
.btn-outline:hover { border-color: var(--encre); }

/* ===== ABOUT ===== */
.about { padding: clamp(4rem, 7vw, 7rem) 5%; display: grid; grid-template-columns: 1fr 1fr; gap: clamp(2.5rem, 5vw, 5rem); align-items: center; }
.about-img-wrap { position: relative; }
.about-img-placeholder { width: 100%; aspect-ratio: 3/4; background: linear-gradient(160deg, var(--nude) 0%, var(--ivoire) 100%); display: flex; align-items: center; justify-content: center; }
.about-img-accent { position: absolute; bottom: -1.2rem; right: -1.2rem; width: 55%; height: 55%; border: 1px solid var(--nude); z-index: -1; }
.script-big { font-family: 'Great Vibes', cursive; font-size: clamp(5rem, 10vw, 8rem); color: rgba(154,131,117,0.2); }
.about-label { font-size: 0.66rem; letter-spacing: 0.28em; text-transform: uppercase; color: var(--cafe); margin-bottom: 1.25rem; }
.about-heading { font-family: 'Playfair Display', serif; font-size: clamp(1.6rem, 3vw, 2.6rem); font-weight: 400; line-height: 1.25; color: var(--encre); margin-bottom: 1.5rem; }
.about-heading em { font-style: italic; color: var(--cafe); }
.about-p { font-size: 0.93rem; color: var(--encre-light); line-height: 1.9; margin-bottom: 1rem; }
.about-badges { display: flex; gap: 0.6rem; flex-wrap: wrap; margin-top: 2rem; }
.badge { font-size: 0.64rem; letter-spacing: 0.14em; text-transform: uppercase; border: 1px solid var(--beige); padding: 6px 14px; color: var(--encre-light); }

/* ===== SERVICES PREVIEW ===== */
.services-preview { background: var(--nude); padding: clamp(4rem, 6vw, 6rem) 5%; }
.section-header { text-align: center; margin-bottom: clamp(2.5rem, 5vw, 4rem); }
.section-label { font-size: 0.66rem; letter-spacing: 0.3em; text-transform: uppercase; color: var(--cafe); margin-bottom: 1rem; }
.section-title { font-family: 'Playfair Display', serif; font-size: clamp(1.8rem, 3.5vw, 3rem); font-weight: 400; color: var(--encre); margin-bottom: 1rem; }
.section-title em { font-style: italic; color: var(--cafe); }
.section-line { width: 38px; height: 1px; background: var(--beige); margin: 0 auto; }
.services-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2px; }
.service-card { background: var(--lin); padding: clamp(2rem, 3vw, 3rem) clamp(1.5rem, 2.5vw, 2.5rem); cursor: pointer; transition: background 0.3s; }
.service-card:hover { background: #fff; }
.service-num { font-family: 'Playfair Display', serif; font-size: clamp(2rem, 4vw, 3.2rem); color: rgba(191,168,156,0.4); line-height: 1; margin-bottom: 1.25rem; }
.service-name { font-family: 'Playfair Display', serif; font-size: clamp(1rem, 1.5vw, 1.2rem); font-weight: 500; color: var(--encre); margin-bottom: 1.2rem; line-height: 1.35; }
.service-list { list-style: none; font-size: 0.87rem; color: var(--encre-light); line-height: 2.1; }
.service-list li::before { content: '—  '; color: var(--beige); }
.service-link { display: inline-block; margin-top: 1.75rem; font-size: 0.65rem; letter-spacing: 0.2em; text-transform: uppercase; color: var(--cafe); border-bottom: 1px solid var(--beige); padding-bottom: 2px; cursor: pointer; transition: all 0.2s; }
.service-link:hover { color: var(--encre); border-color: var(--encre); }

/* ===== QUOTE BAND ===== */
/* ===== POLES ===== */
.poles { padding: clamp(4rem, 7vw, 7rem) 5%; }
.poles-header { text-align: center; margin-bottom: clamp(3rem, 5vw, 5rem); }
.poles-title { font-family: 'Playfair Display', serif; font-size: clamp(1.8rem, 4vw, 3rem); font-weight: 400; color: var(--encre); margin-bottom: 1.25rem; }
.poles-title em { font-style: italic; color: var(--cafe); }

.pole-item {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(2.5rem, 5vw, 5rem);
  align-items: center;
  margin-bottom: clamp(4rem, 7vw, 7rem);
}
.pole-item:last-child { margin-bottom: 0; }
.pole-item--reverse { direction: rtl; }
.pole-item--reverse > * { direction: ltr; }

.pole-img-wrap {
  overflow: hidden;
  aspect-ratio: 4 / 5;
}
.pole-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  display: block;
  transition: transform 0.6s ease;
}
.pole-img-wrap:hover .pole-img { transform: scale(1.03); }

.pole-name {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.3rem, 2.5vw, 1.9rem);
  font-weight: 400;
  color: var(--encre);
  margin-bottom: 1.25rem;
}
.pole-desc {
  font-size: clamp(0.87rem, 1.4vw, 0.97rem);
  color: var(--encre);
  font-weight: 400;
  line-height: 1.85;
  margin-bottom: 2rem;
  max-width: 460px;
}

.pole-btns { display: flex; gap: 1rem; flex-wrap: wrap; }

.quote-band { background: var(--encre); padding: clamp(3.5rem, 6vw, 5.5rem) 5%; text-align: center; }
.quote-script { font-family: 'Great Vibes', cursive; font-size: clamp(2rem, 5vw, 4.5rem); color: var(--ivoire); margin-bottom: 1rem; line-height: 1.2; }
.quote-sub { font-size: 0.7rem; letter-spacing: 0.28em; text-transform: uppercase; color: var(--beige); }

/* ===== À PROPOS ===== */
.apropos {
  padding: clamp(4rem, 7vw, 7rem) 5%;
  background: var(--lin);
}
.apropos-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 2fr 3fr;
  gap: clamp(3rem, 5vw, 5rem);
  align-items: center;
}
.apropos-info {
  display: flex;
  flex-direction: column;
}
.apropos-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.8rem, 3vw, 2.6rem);
  font-weight: 400;
  color: var(--encre);
  margin-bottom: 2rem;
}
.apropos-title em { font-style: italic; color: var(--cafe); }
.apropos-block { margin-bottom: 1.6rem; padding-bottom: 1.6rem; border-bottom: 1px solid var(--nude); }
.apropos-block:last-child { border-bottom: none; margin-bottom: 0; padding-bottom: 0; }
.apropos-label {
  font-size: 0.64rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--cafe);
  margin-bottom: 0.5rem;
  font-weight: 700;
}
.apropos-val {
  font-size: 1rem;
  color: var(--encre);
  font-weight: 400;
  line-height: 1.75;
}
.horaires-table { border-collapse: collapse; font-size: 0.92rem; color: var(--encre); width: 100%; }
.horaires-table td { padding: 5px 20px 5px 0; }
.horaires-table td:first-child { color: var(--encre); font-weight: 400; min-width: 100px; }
.horaires-table td:last-child { color: var(--encre); font-weight: 300; }
.horaires-table tr.ferme td { color: var(--cafe); }

.apropos-map {
  border-radius: 2px;
  overflow: hidden;
  height: 520px;
  box-shadow: 0 8px 40px rgba(73,66,64,0.12);
}
.apropos-map iframe { width: 100%; height: 100%; display: block; border: 0; }

/* ===== PAGE HERO ===== */
.page-hero { background: var(--nude); padding: clamp(3rem, 6vw, 5rem) 5% clamp(2.5rem, 5vw, 4rem); text-align: center; }
.page-hero-label { font-size: 0.66rem; letter-spacing: 0.3em; text-transform: uppercase; color: var(--cafe); margin-bottom: 1rem; }
.page-hero-title { font-family: 'Playfair Display', serif; font-size: clamp(2rem, 5vw, 3.8rem); font-weight: 400; color: var(--encre); margin-bottom: 1rem; }
.page-hero-title em { font-style: italic; color: var(--cafe); }
.page-hero-sub { font-size: 0.9rem; color: var(--encre-light); max-width: 520px; margin: 0 auto; line-height: 1.8; }

/* ===== TARIFS BANNER ===== */
.tarif-info-banner { margin: clamp(2rem, 4vw, 4rem) 5%; background: var(--nude); padding: clamp(1.5rem, 3vw, 2.5rem) clamp(1.5rem, 3vw, 3rem); display: grid; grid-template-columns: repeat(3, 1fr); gap: 2rem; text-align: center; }
.tarif-info-title { font-family: 'Playfair Display', serif; font-size: 0.98rem; color: var(--encre); margin-bottom: 0.5rem; }
.tarif-info-text { font-size: 0.82rem; color: var(--encre-light); line-height: 1.65; }

/* ===== PRESTATION SECTIONS ===== */
.prestation-section { padding: clamp(3rem, 5vw, 5rem) 5%; border-bottom: 1px solid var(--nude); }
.prestation-section:nth-child(even) { background: var(--lin); }
.prestation-section:nth-child(odd) { background: #fdf8f4; }
.prestation-header { display: flex; align-items: flex-end; gap: 1.25rem; margin-bottom: 2.5rem; padding-bottom: 1.75rem; border-bottom: 1px solid var(--nude); }
.prestation-num-big { font-family: 'Playfair Display', serif; font-size: clamp(2.5rem, 6vw, 5rem); color: var(--ivoire); line-height: 1; font-weight: 400; flex-shrink: 0; }
.prestation-title { font-family: 'Playfair Display', serif; font-size: clamp(1.3rem, 2.5vw, 2.1rem); font-weight: 500; color: var(--encre); margin-bottom: 0.35rem; }
.prestation-subtitle { font-size: 0.7rem; letter-spacing: 0.2em; text-transform: uppercase; color: var(--encre-light); }
.sub-category { font-family: 'Playfair Display', serif; font-style: italic; font-size: clamp(1rem, 1.8vw, 1.3rem); color: var(--encre); margin: 2rem 0 0.75rem; padding-bottom: 0.5rem; border-bottom: 1px solid var(--nude); font-weight: 400; }

.tarifs-table { width: 100%; border-collapse: collapse; }
.tarifs-table tr { border-bottom: 1px solid rgba(233,211,197,0.5); transition: background 0.2s; }
.tarifs-table tr:hover { background: rgba(233,211,197,0.25); }
.tarifs-table td { padding: 0.9rem 0.5rem; font-size: 0.9rem; color: var(--encre-light); vertical-align: middle; }
.tarif-name { font-size: 0.95rem !important; color: var(--encre) !important; width: 55%; padding-left: 0 !important; font-weight: 400; }
.tarif-note { font-size: 0.84rem !important; font-style: italic; color: var(--encre-light) !important; width: 25%; }
.tarif-price { text-align: right; font-family: 'Playfair Display', serif; font-size: 1rem !important; color: var(--encre) !important; white-space: nowrap; width: 20%; padding-right: 0 !important; font-weight: 500; }
.indent-row td { padding-left: 1.2rem !important; }
.indent-row .tarif-name { font-size: 0.88rem !important; color: var(--encre) !important; }
.cat-label td { padding-top: 1.5rem !important; padding-bottom: 0.4rem !important; }
.cat-label .tarif-name { font-family: 'Playfair Display', serif !important; font-style: italic; color: var(--encre) !important; font-size: 0.95rem !important; }
.price-note { margin-top: 1.5rem; font-size: 0.82rem; color: var(--encre-light); font-style: italic; border-left: 2px solid var(--ivoire); padding-left: 1rem; line-height: 1.75; }

/* ===== CONTACT PAGE ===== */
.contact-section { padding: clamp(3rem, 6vw, 6rem) 5%; }
.contact-inner {
  max-width: 1200px; margin: 0 auto;
  display: grid; grid-template-columns: 2fr 3fr;
  gap: clamp(3rem, 5vw, 5rem); align-items: start;
}
.contact-block { margin-bottom: 1.6rem; padding-bottom: 1.6rem; border-bottom: 1px solid var(--nude); }
.contact-block:last-of-type { border-bottom: none; }
.contact-link { color: var(--encre); text-decoration: none; transition: color 0.2s; }
.contact-link:hover { color: var(--cafe); }
.contact-rdv { margin-top: 2.5rem; padding-top: 2rem; border-top: 1px solid var(--nude); }
.contact-rdv > p { font-family: 'Playfair Display', serif; font-style: italic; font-size: 1.1rem; color: var(--encre); margin-bottom: 1.25rem; }
.contact-map { border-radius: 2px; overflow: hidden; height: 520px; box-shadow: 0 8px 40px rgba(73,66,64,0.12); }
.contact-map iframe { width: 100%; height: 100%; display: block; border: 0; }

/* ===== QUI SOMMES-NOUS PAGE ===== */
.qsn-section { padding: clamp(3rem, 6vw, 6rem) 5%; }
.qsn-inner { max-width: 1100px; margin: 0 auto; }
.qsn-block {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: clamp(3rem, 5vw, 6rem); align-items: center;
  margin-bottom: clamp(4rem, 7vw, 7rem);
}
.qsn-img { aspect-ratio: 4/5; overflow: hidden; }
.qsn-img img { width: 100%; height: 100%; object-fit: cover; object-position: center top; display: block; }
.qsn-title { font-family: 'Playfair Display', serif; font-size: clamp(1.6rem, 3vw, 2.4rem); font-weight: 400; color: var(--encre); margin-bottom: 1.25rem; }
.qsn-title em { font-style: italic; color: var(--cafe); }
.qsn-desc { font-size: 0.97rem; color: var(--encre); font-weight: 400; line-height: 1.85; margin-bottom: 1rem; }
.qsn-values { margin-bottom: clamp(4rem, 7vw, 7rem); text-align: center; }
.qsn-values-title { font-family: 'Playfair Display', serif; font-size: clamp(1.6rem, 3vw, 2.4rem); font-weight: 400; color: var(--encre); margin-bottom: 2.5rem; }
.qsn-values-title em { font-style: italic; color: var(--cafe); }
.qsn-values-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2rem; }
.qsn-value-item { padding: 2rem 1.5rem; background: var(--nude); }
.qsn-value-icon { font-size: 1rem; color: var(--cafe); margin-bottom: 0.75rem; }
.qsn-value-item h3 { font-family: 'Playfair Display', serif; font-size: 1.1rem; font-weight: 400; color: var(--encre); margin-bottom: 0.75rem; }
.qsn-value-item p { font-size: 0.88rem; color: var(--encre-light); line-height: 1.75; margin: 0; }
.qsn-lieu { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(3rem, 5vw, 6rem); align-items: center; margin-bottom: clamp(3rem, 5vw, 5rem); }
.qsn-lieu-img { aspect-ratio: 4/5; overflow: hidden; }
.qsn-lieu-img img { width: 100%; height: 100%; object-fit: cover; object-position: center 30%; display: block; }

/* ===== RDV PAGE ===== */
.rdv-container { padding: clamp(3rem, 5vw, 5rem) 5%; display: grid; grid-template-columns: 1fr 1.5fr; gap: clamp(3rem, 6vw, 6rem); max-width: 1200px; margin: 0 auto; }
.rdv-info-title { font-family: 'Playfair Display', serif; font-size: clamp(1.5rem, 3vw, 2.4rem); font-weight: 400; line-height: 1.25; color: var(--encre); margin-bottom: 1.5rem; }
.rdv-info-title em { font-style: italic; color: var(--cafe); }
.rdv-info-text { font-size: 0.9rem; color: var(--encre-light); line-height: 1.85; margin-bottom: 2.5rem; }
.rdv-detail { display: flex; gap: 1rem; margin-bottom: 1.1rem; font-size: 0.87rem; color: var(--encre-light); align-items: flex-start; }
.rdv-detail-label { font-family: 'Playfair Display', serif; font-size: 0.92rem; color: var(--encre); min-width: 105px; flex-shrink: 0; }
.rdv-social { margin-top: 2.5rem; padding-top: 2rem; border-top: 1px solid var(--nude); font-size: 0.75rem; letter-spacing: 0.14em; text-transform: uppercase; color: var(--cafe); line-height: 2; }
.rdv-social a { color: var(--encre); text-decoration: none; }
.form-section-title { font-family: 'Playfair Display', serif; font-size: 1.4rem; font-weight: 400; color: var(--encre); margin-bottom: 2rem; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1.25rem; margin-bottom: 1.25rem; }
.form-group { display: flex; flex-direction: column; gap: 0.4rem; margin-bottom: 1.25rem; }
label { font-size: 0.66rem; letter-spacing: 0.2em; text-transform: uppercase; color: var(--cafe); }
input, select, textarea { font-family: 'Lato', sans-serif; font-size: 0.9rem; font-weight: 300; color: var(--encre); background: transparent; border: none; border-bottom: 1px solid var(--beige); padding: 10px 0; outline: none; transition: border-color 0.25s; width: 100%; -webkit-appearance: none; appearance: none; }
input:focus, select:focus, textarea:focus { border-bottom-color: var(--encre); }
input::placeholder, textarea::placeholder { color: var(--beige); }
textarea { resize: vertical; min-height: 90px; }
.form-submit { margin-top: 2rem; width: 100%; padding: 16px; background: var(--encre); color: var(--lin); border: none; font-family: 'Lato', sans-serif; font-size: 0.7rem; font-weight: 400; letter-spacing: 0.25em; text-transform: uppercase; cursor: pointer; transition: background 0.25s; }
.form-submit:hover { background: var(--cafe); }
.form-note { margin-top: 1rem; font-size: 0.77rem; color: var(--cafe); font-style: italic; text-align: center; }
.form-success { display: none; text-align: center; padding: 3rem 2rem; background: var(--nude); }
.form-success-script { font-family: 'Great Vibes', cursive; font-size: 3rem; color: var(--cafe); margin-bottom: 1rem; }
.form-success-text { font-size: 0.9rem; color: var(--encre-light); line-height: 1.8; }

/* ===== FOOTER ===== */
footer { background: var(--encre); padding: clamp(3rem, 5vw, 4rem) 5%; display: grid; grid-template-columns: 1.2fr 1fr 1fr; gap: clamp(2rem, 4vw, 3rem); }
.footer-logo-name { font-family: 'Great Vibes', cursive; font-size: 2rem; color: var(--lin); margin-bottom: 0.2rem; }
.footer-logo-tagline { font-size: 0.6rem; letter-spacing: 0.24em; text-transform: uppercase; color: var(--cafe); margin-bottom: 1.25rem; }
.footer-text { font-size: 0.82rem; color: var(--beige); line-height: 1.75; }
.footer-col-title { font-family: 'Playfair Display', serif; font-size: 0.85rem; color: var(--lin); margin-bottom: 1.25rem; font-weight: 400; }
.footer-links { list-style: none; display: flex; flex-direction: column; gap: 0.6rem; }
.footer-links a { font-size: 0.82rem; color: var(--beige); text-decoration: none; cursor: pointer; transition: color 0.2s; }
.footer-links a:hover { color: var(--lin); }
.footer-bottom { background: var(--encre); border-top: 1px solid rgba(191,168,156,0.2); padding: 1.25rem 5%; font-size: 0.7rem; color: var(--cafe); display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 0.5rem; letter-spacing: 0.08em; }
.cta-section { text-align: center; padding: clamp(3rem, 5vw, 5rem) 5%; }
.cta-section p { font-family: 'Playfair Display', serif; font-size: clamp(1.1rem, 2vw, 1.4rem); color: var(--encre); margin-bottom: 1.5rem; font-weight: 400; }

/* ===== RESPONSIVE ===== */
@media (max-width: 768px) {
  html, body { height: 100%; }
  body { display: flex; flex-direction: column; overflow: hidden; }
  .nav-links { display: none; }
  .burger { display: flex; }
  nav:not(.breadcrumb) { position: relative; flex-shrink: 0; background: transparent; border-bottom: none; backdrop-filter: none; box-shadow: none; z-index: 9999; }
  .breadcrumb { position: static; z-index: auto; }
  .mobile-menu { position: absolute; top: 68px; left: 0; right: 0; z-index: 10000; }
  .page { flex: 1; overflow-y: auto; overflow-x: hidden; padding-top: 0; min-height: 0; }
  .hero { min-height: 100vh; grid-template-columns: 1fr; grid-template-rows: auto auto; }
  .hero-visual {
    display: block; order: -1;
    height: 60vw;
    position: relative;
  }
  .hero-img {
    -webkit-mask-image: linear-gradient(to bottom, black 60%, transparent 100%);
    mask-image: linear-gradient(to bottom, black 60%, transparent 100%);
  }
  .hero-logo { display: none; }
  .hero-content { padding: 0 5% 4rem; }
  .page-hero { padding-top: 2.5rem; }
  .about { grid-template-columns: 1fr; gap: 2.5rem; }
  .pole-item { grid-template-columns: 1fr; gap: 1.5rem; direction: ltr; }
  .prestation-detail-block { grid-template-columns: 1fr; gap: 2rem; }
  .prestation-detail-img { aspect-ratio: 4/3; }
  .prestation-cards-grid { grid-template-columns: 1fr; }
  .apropos-inner { grid-template-columns: 1fr; gap: 2.5rem; }
  .apropos-map { height: 260px; }
  .pole-item--reverse { direction: ltr; }
  .pole-img-wrap { aspect-ratio: 4 / 3; }
  .pole-img { object-position: center 30%; }
  .pole-item:first-of-type .pole-img { object-position: center 40%; }
  .pole-desc { max-width: 100%; }
  .about-img-placeholder { aspect-ratio: 4/3; }
  .about-img-accent { display: none; }
  .services-grid { grid-template-columns: 1fr; }
  .tarif-info-banner { grid-template-columns: 1fr; gap: 1.5rem; }
  .prestation-header { align-items: flex-start; flex-wrap: wrap; }
  .tarif-note { display: none; }
  .tarif-name { width: 70%; }
  .tarif-price { width: 30%; }
  .rdv-container { grid-template-columns: 1fr; gap: 2.5rem; }
  .form-row { grid-template-columns: 1fr; gap: 0; }
  footer { grid-template-columns: 1fr; gap: 2rem; }
  .footer-bottom { flex-direction: column; text-align: center; }
  /* Contact page */
  .contact-inner { grid-template-columns: 1fr; }
  .contact-map { height: 320px; }
  /* Qui sommes-nous page */
  .qsn-block { grid-template-columns: 1fr; gap: 2rem; }
  .qsn-values-grid { grid-template-columns: 1fr; gap: 1rem; }
  .qsn-lieu { grid-template-columns: 1fr; gap: 2rem; }
  .qsn-lieu-img { order: -1; aspect-ratio: 16/9; }
}

@media (max-width: 480px) {
  .hero-btns { flex-direction: column; }
  .btn-primary, .btn-outline { width: 100%; text-align: center; display: block; }
}

@media (min-width: 769px) and (max-width: 1024px) {
  .services-grid { grid-template-columns: 1fr 1fr; }
  .services-grid .service-card:last-child { grid-column: 1 / -1; max-width: 50%; }
  .rdv-container { grid-template-columns: 1fr; gap: 2.5rem; }
  footer { grid-template-columns: 1fr 1fr; }
}

/* ===== TRANSITIONS DE PAGE ===== */
body {
  opacity: 0;
}
body.page-visible {
  opacity: 1;
  transition: opacity 0.35s ease;
}
body.page-leaving {
  opacity: 0;
  transition: opacity 0.25s ease;
}

/* ===== FIL D'ARIANE (BREADCRUMB) ===== */
.breadcrumb {
  background: var(--nude);
  padding: 0.6rem 5%;
  font-size: 0.7rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  font-family: 'Lato', sans-serif;
  color: var(--encre-light);
}
.breadcrumb ol {
  list-style: none;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.4rem;
  margin: 0;
  padding: 0;
  max-width: 1200px;
}
.breadcrumb li {
  display: flex;
  align-items: center;
  gap: 0.4rem;
}
.breadcrumb li + li::before {
  content: '›';
  color: var(--cafe);
  font-size: 0.9rem;
  line-height: 1;
}
.breadcrumb a {
  color: var(--encre-light);
  text-decoration: none;
  transition: color 0.2s;
}
.breadcrumb a:hover { color: var(--cafe); }
.breadcrumb li:last-child { color: var(--cafe); font-weight: 600; }

/* ===== LIGHTBOX ===== */
.lightbox-trigger {
  cursor: zoom-in;
  transition: opacity 0.2s;
}
.lightbox-trigger:hover { opacity: 0.88; }

body.lightbox-active { overflow: hidden; }

#lightbox {
  position: fixed;
  inset: 0;
  z-index: 99999;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.28s ease;
}
#lightbox.open {
  opacity: 1;
  pointer-events: all;
}

.lightbox-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(42, 35, 32, 0.92);
  cursor: zoom-out;
}

.lightbox-content {
  position: relative;
  z-index: 1;
  max-width: 92vw;
  max-height: 92vh;
  display: flex;
  align-items: center;
  justify-content: center;
  transform: scale(0.94);
  transition: transform 0.28s ease;
}
#lightbox.open .lightbox-content { transform: scale(1); }

.lightbox-img {
  display: block;
  max-width: 92vw;
  max-height: 88vh;
  object-fit: contain;
  border-radius: 2px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
  cursor: default;
}

.lightbox-close {
  position: absolute;
  top: 1.2rem;
  right: 1.4rem;
  z-index: 2;
  background: rgba(248, 240, 233, 0.12);
  border: 1px solid rgba(248, 240, 233, 0.3);
  color: var(--lin, #faf5f0);
  font-size: 1.5rem;
  line-height: 1;
  width: 2.4rem;
  height: 2.4rem;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s;
}
.lightbox-close:hover { background: rgba(248, 240, 233, 0.25); }

/* ===== MENTIONS LÉGALES ===== */
.mentions-section {
  padding: 4rem 0 6rem;
  background: var(--lin, #faf5f0);
}
.mentions-inner {
  max-width: 700px;
  margin: 0 auto;
  padding: 0 2rem;
}
.mentions-block {
  padding: 3rem 0;
  border-bottom: 1px solid var(--nude, #e8ddd5);
  text-align: center;
}
.mentions-block:last-child { border-bottom: none; }
.mentions-block .article-num { margin-bottom: 0.3rem; }
.mentions-block .article-title { margin-bottom: 1.5rem; }
.mentions-text {
  font-family: 'Lato', sans-serif;
  font-size: 0.92rem;
  line-height: 1.85;
  color: var(--encre-light, #5a4f4c);
  margin-bottom: 0.8rem;
  text-align: center;
}
.mentions-text:last-child { margin-bottom: 0; }
.mentions-text a { color: var(--cafe, #8b6f5e); text-decoration: underline; }
.mentions-grid {
  display: flex;
  flex-direction: column;
  gap: 0;
  text-align: left;
  max-width: 480px;
  margin: 0 auto;
  width: 100%;
}
.mentions-row {
  display: flex;
  flex-direction: column;
  padding: 0.9rem 0;
  border-bottom: 1px solid rgba(139,111,94,0.15);
}
.mentions-row:last-child { border-bottom: none; }
.mentions-key {
  font-family: 'Lato', sans-serif;
  font-weight: 700;
  color: var(--cafe, #8b6f5e);
  font-size: 0.68rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  margin-bottom: 0.25rem;
}
.mentions-val {
  font-family: 'Lato', sans-serif;
  font-size: 0.9rem;
  line-height: 1.65;
  color: var(--encre-light, #5a4f4c);
}
.mentions-val a { color: var(--cafe, #8b6f5e); text-decoration: underline; }

/* ===== PAGE LOADER SPLASH ===== */
#page-loader {
  position: fixed;
  inset: 0;
  z-index: 99998;
  background: var(--lin, #faf5f0);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: opacity 0.45s ease;
  pointer-events: all;
}
#page-loader.loader-out {
  opacity: 0;
  pointer-events: none;
}
.loader-inner {
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.6rem;
}
.loader-name {
  font-family: 'Playfair Display', serif;
  font-size: 2rem;
  font-weight: 400;
  color: var(--encre, #2a2320);
  letter-spacing: 0.05em;
}
.loader-line {
  width: 0;
  height: 1px;
  background: var(--cafe, #8b6f5e);
  animation: loaderLine 0.55s 0.05s ease forwards;
}
@keyframes loaderLine {
  to { width: 44px; }
}
.loader-tagline {
  font-family: 'Lato', sans-serif;
  font-size: 0.58rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--cafe, #8b6f5e);
  font-weight: 400;
}

/* ===== SMOOTH SCROLL GLOBAL ===== */
html { scroll-behavior: smooth; }

/* ===== SOMMAIRE ANCRÉ ===== */
.sommaire {
  background: var(--nude, #e8ddd5);
  padding: 1.1rem 5%;
  border-bottom: 1px solid rgba(139,111,94,0.2);
}
.sommaire-inner {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  max-width: 1100px;
  margin: 0 auto;
  flex-wrap: wrap;
}
.sommaire-label {
  font-family: 'Lato', sans-serif;
  font-size: 0.65rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--cafe, #8b6f5e);
  white-space: nowrap;
  font-weight: 700;
}
.sommaire-links { display: flex; gap: 0.5rem; flex-wrap: wrap; }
.sommaire-link {
  font-family: 'Lato', sans-serif;
  font-size: 0.68rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--encre-light, #5a4f4c);
  text-decoration: none;
  padding: 0.35rem 1rem;
  border: 1px solid rgba(139,111,94,0.3);
  background: var(--lin, #faf5f0);
  transition: background 0.2s, color 0.2s, border-color 0.2s;
}
.sommaire-link:hover {
  background: var(--encre, #2a2320);
  color: var(--lin, #faf5f0);
  border-color: var(--encre, #2a2320);
}

/* ===== ARTICLES PRESTATION ===== */
.article-section {
  padding: 5rem 0;
  border-bottom: 1px solid var(--nude, #e8ddd5);
}
.article-section:last-of-type { border-bottom: none; }
.article-section[id] { scroll-margin-top: 84px; }
.article-block {
  display: flex;
  gap: 4rem;
  align-items: center;
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 2rem;
}
.article-block--reverse { flex-direction: row-reverse; }
.article-img-wrap {
  flex: 0 0 420px;
  border-radius: 2px;
  overflow: hidden;
}
.article-img-wrap img {
  width: 100%;
  height: 320px;
  object-fit: cover;
  display: block;
}
.article-text { flex: 1; }
.article-num {
  font-family: 'Great Vibes', cursive;
  font-size: 2rem;
  color: var(--cafe, #8b6f5e);
  line-height: 1;
  margin-bottom: 0.4rem;
}
.article-title {
  font-family: 'Playfair Display', serif;
  font-size: 1.6rem;
  font-weight: 500;
  color: var(--encre, #2a2320);
  margin: 0 0 1rem;
  line-height: 1.3;
}
.article-title em { font-style: italic; color: var(--cafe, #8b6f5e); }
.article-body {
  font-family: 'Lato', sans-serif;
  font-size: 0.95rem;
  color: var(--encre-light, #5a4f4c);
  line-height: 1.8;
  margin-bottom: 1rem;
}
.article-body p { margin-bottom: 0.8rem; }

/* Callouts */
.article-callout {
  display: flex;
  gap: 0.75rem;
  align-items: flex-start;
  padding: 0.85rem 1.1rem;
  margin: 0.7rem 0;
  font-family: 'Lato', sans-serif;
  font-size: 0.87rem;
  line-height: 1.6;
}
.article-callout p { margin: 0; color: inherit; }
.callout-icon { flex-shrink: 0; margin-top: 0.1rem; }
.article-callout--conseil {
  background: rgba(248,240,233,0.9);
  border-left: 2px solid var(--cafe, #8b6f5e);
  color: var(--encre-light, #5a4f4c);
}
.article-callout--resultat {
  background: rgba(42,35,32,0.04);
  border-left: 2px solid var(--encre, #2a2320);
  color: var(--encre, #2a2320);
}

/* Tags */
.article-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-top: 1.2rem;
}
.article-tag {
  display: inline-block;
  padding: 0.3rem 0.9rem;
  background: var(--nude, #f0e8e0);
  border-radius: 20px;
  font-size: 0.7rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--cafe, #8b6f5e);
}

/* ===== SECTION POUR QUI ===== */
.section-info {
  padding: 5rem 0;
  background: var(--nude, #e8ddd5);
  border-bottom: 1px solid rgba(139,111,94,0.2);
}
.section-info[id] { scroll-margin-top: 84px; }
.section-info-inner {
  display: flex;
  gap: 4rem;
  align-items: center;
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 2rem;
}
.section-info-text { flex: 1; }
.section-info-img {
  flex: 0 0 380px;
  border-radius: 2px;
  overflow: hidden;
}
.section-info-img img {
  width: 100%;
  height: 280px;
  object-fit: cover;
  display: block;
}

/* ===== SECTION CONSEILS ===== */
.section-conseils {
  padding: 5rem 0;
  border-bottom: 1px solid var(--nude, #e8ddd5);
}
.section-conseils[id] { scroll-margin-top: 84px; }
.section-conseils-inner {
  max-width: 820px;
  margin: 0 auto;
  padding: 0 2rem;
  text-align: center;
}
.conseils-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
  margin-top: 2rem;
  text-align: left;
}
.conseil-card {
  padding: 1.8rem;
  background: var(--lin, #faf5f0);
  border: 1px solid rgba(139,111,94,0.2);
}
.conseil-card-label {
  font-family: 'Lato', sans-serif;
  font-size: 0.65rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--cafe, #8b6f5e);
  font-weight: 700;
  margin-bottom: 0.8rem;
  display: block;
}
.conseil-card-title {
  font-family: 'Playfair Display', serif;
  font-size: 1.05rem;
  color: var(--encre, #2a2320);
  margin: 0 0 0.8rem;
}
.conseil-card p {
  font-family: 'Lato', sans-serif;
  font-size: 0.9rem;
  line-height: 1.75;
  color: var(--encre-light, #5a4f4c);
  margin: 0;
}

/* ===== FAQ ===== */
.section-faq {
  padding: 5rem 0;
  border-bottom: 1px solid var(--nude, #e8ddd5);
}
.section-faq[id] { scroll-margin-top: 84px; }
.section-faq-inner {
  max-width: 820px;
  margin: 0 auto;
  padding: 0 2rem;
}
.section-faq-inner .section-label,
.section-faq-inner .prestation-detail-title {
  text-align: center;
}
.faq-list { margin-top: 2.5rem; }
details.faq-item {
  border-bottom: 1px solid var(--nude, #e8ddd5);
}
details.faq-item:first-child { border-top: 1px solid var(--nude, #e8ddd5); }
details.faq-item summary {
  list-style: none;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1.25rem 0;
  font-family: 'Lato', sans-serif;
  font-size: 0.92rem;
  font-weight: 700;
  letter-spacing: 0.03em;
  color: var(--encre, #2a2320);
  user-select: none;
  gap: 1rem;
}
details.faq-item summary::-webkit-details-marker { display: none; }
.faq-icon {
  font-size: 1.4rem;
  color: var(--cafe, #8b6f5e);
  font-weight: 300;
  flex-shrink: 0;
  transition: transform 0.25s;
}
details.faq-item[open] .faq-icon { transform: rotate(45deg); }
.faq-answer {
  font-family: 'Lato', sans-serif;
  font-size: 0.9rem;
  line-height: 1.8;
  color: var(--encre-light, #5a4f4c);
  padding: 0 0 1.4rem;
  margin: 0;
}

/* ===== RESPONSIVE ARTICLES ===== */
@media (max-width: 900px) {
  .article-block, .article-block--reverse { flex-direction: column; gap: 2rem; }
  .article-img-wrap { flex: 0 0 auto; width: 100%; }
  .section-info-inner { flex-direction: column; gap: 2rem; }
  .section-info-img { flex: 0 0 auto; width: 100%; }
  .conseils-grid { grid-template-columns: 1fr; }
  .sommaire-inner { gap: 0.8rem; }
}
