:root {
  --volcan: #1d3a32;          
  --volcan-deep: #122620;
  --volcan-light: #2f5b4e;
  --gold: #b08d4c;            
  --gold-soft: #cdae74;
  --ink: #1a1c1b;
  --charcoal: #14110d;
  --muted: #6e726c;
  --line: rgba(26,28,27,0.13);
  --cream: #faf7f1;
  --sand: #f0ece2;
  --paper: #ffffff;
  --shadow-sm: 0 10px 30px -16px rgba(18,22,20,0.35);
  --shadow: 0 30px 70px -34px rgba(18,22,20,0.5);
  --r: 4px;
  --r-lg: 8px;
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  font-family: 'Outfit', sans-serif;
  background: var(--cream);
  color: var(--ink);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
a { text-decoration: none; color: inherit; }
img { display: block; max-width: 100%; }
::selection { background: var(--volcan); color: var(--cream); }

.wrap { max-width: 1280px; margin: 0 auto; padding: 0 36px; }

h1, h2, h3, h4 { font-family: 'Fraunces', serif; font-weight: 400; line-height: 1.12; letter-spacing: -.012em; }
em { font-style: italic; }

.btn {
  display: inline-flex; align-items: center; gap: 10px;
  font-family: 'Outfit', sans-serif; font-weight: 500; font-size: .9rem;
  letter-spacing: .02em; padding: 15px 30px; border-radius: 100px;
  cursor: pointer; border: 1px solid transparent;
  transition: transform .3s cubic-bezier(.2,.7,.3,1), box-shadow .3s, background .3s, color .3s;
}
.btn svg { transition: transform .3s; }
.btn:hover svg { transform: translateX(3px); }
.btn-primary { background: var(--volcan); color: var(--cream); border-color: var(--volcan); }
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 16px 30px -14px rgba(29,58,50,.7); }
.btn-light { background: var(--cream); color: var(--volcan-deep); border-color: var(--cream); }
.btn-light:hover { transform: translateY(-2px); box-shadow: var(--shadow-sm); }
.btn-ghost { background: transparent; color: var(--ink); border-color: var(--line); }
.btn-ghost:hover { background: var(--ink); color: var(--cream); border-color: var(--ink); }
.btn-ghost-light { background: transparent; color: var(--cream); border-color: rgba(255,255,255,.32); }
.btn-ghost-light:hover { background: rgba(255,255,255,.1); }

.site-header {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  padding: 24px 0; transition: background .45s ease, box-shadow .45s, padding .45s;
}
.site-header.scrolled {
  background: rgba(250,247,241,0.94); backdrop-filter: blur(16px);
  box-shadow: 0 1px 0 var(--line); padding: 14px 0;
}
.site-header.solid {
  background: var(--cream); box-shadow: 0 1px 0 var(--line); position: sticky;
}
.nav { display: flex; align-items: center; justify-content: space-between; }
.logo {
  font-family: 'Fraunces', serif; font-size: 1.42rem; font-weight: 500;
  display: flex; align-items: center; gap: 11px; color: var(--cream);
  transition: color .45s;
}
.logo .mark {
  width: 30px; height: 30px; border-radius: 50%;
  border: 1.5px solid currentColor; display: grid; place-items: center;
  font-size: .8rem; flex-shrink: 0;
}
.site-header.scrolled .logo,
.site-header.solid .logo { color: var(--volcan); }
.nav-links { display: flex; gap: 36px; list-style: none; align-items: center; }
.nav-links a {
  font-size: .92rem; font-weight: 400; color: rgba(255,255,255,0.85);
  position: relative; padding: 6px 0; transition: color .3s;
}
.nav-links a::after {
  content: ''; position: absolute; bottom: 0; left: 0; width: 0; height: 1px;
  background: var(--gold); transition: width .35s ease;
}
.nav-links a:hover::after,
.nav-links a.active::after { width: 100%; }
.site-header.scrolled .nav-links a,
.site-header.solid .nav-links a { color: var(--ink); }
.nav-links a.active { color: var(--gold-soft); }
.site-header.scrolled .nav-links a.active,
.site-header.solid .nav-links a.active { color: var(--volcan); }
.nav-actions { display: flex; gap: 12px; align-items: center; }
.site-header.scrolled .btn-ghost-light,
.site-header.solid .btn-ghost-light { color: var(--ink); border-color: var(--line); }
.site-header.scrolled .btn-ghost-light:hover,
.site-header.solid .btn-ghost-light:hover { background: var(--ink); color: var(--cream); }

.burger {
  display: none; flex-direction: column; justify-content: center; gap: 5px;
  width: 46px; height: 46px; border: none; cursor: pointer; padding: 0 11px;
  background: rgba(255,255,255,0.12); border-radius: 10px; transition: background .3s;
}
.site-header.scrolled .burger,
.site-header.solid .burger { background: rgba(26,28,27,0.06); }
.burger span {
  display: block; height: 2px; width: 100%; border-radius: 2px;
  background: var(--cream); transition: transform .3s, opacity .25s, background .35s;
}
.site-header.scrolled .burger span,
.site-header.solid .burger span { background: var(--volcan); }
body.menu-open .burger span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
body.menu-open .burger span:nth-child(2) { opacity: 0; }
body.menu-open .burger span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.mobile-menu {
  position: fixed; inset: 0; z-index: 95; background: var(--volcan-deep);
  display: flex; align-items: center; justify-content: center;
  opacity: 0; visibility: hidden; transition: opacity .4s, visibility .4s;
}
body.menu-open { overflow: hidden; }
body.menu-open .mobile-menu { opacity: 1; visibility: visible; }
.mobile-menu nav { display: flex; flex-direction: column; gap: 6px; width: 86%; max-width: 400px; text-align: center; }
.mobile-menu nav a:not(.btn) {
  font-family: 'Fraunces', serif; font-size: 1.85rem; color: var(--cream);
  padding: 13px 0; opacity: 0; transform: translateY(16px);
}
body.menu-open .mobile-menu nav a:not(.btn) { animation: rise .55s ease forwards; }
body.menu-open .mobile-menu nav a:nth-child(1) { animation-delay: .06s; }
body.menu-open .mobile-menu nav a:nth-child(2) { animation-delay: .12s; }
body.menu-open .mobile-menu nav a:nth-child(3) { animation-delay: .18s; }
body.menu-open .mobile-menu nav a:nth-child(4) { animation-delay: .24s; }
.mobile-menu .btn { justify-content: center; margin-top: 8px; padding: 17px; font-size: 1rem; }

.page-hero {
  position: relative; padding: 150px 0 76px; overflow: hidden;
  background: var(--volcan-deep); color: var(--cream);
}
.page-hero .ph-img {
  position: absolute; inset: 0; object-fit: cover; width: 100%; height: 100%;
  opacity: .34;
}
.page-hero::after {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(18,38,32,.55), rgba(18,38,32,.88));
}
.page-hero .wrap { position: relative; z-index: 2; }
.page-hero .crumb {
  font-size: .78rem; letter-spacing: .18em; text-transform: uppercase;
  color: var(--gold-soft); margin-bottom: 18px;
}
.page-hero h1 { font-size: clamp(2.2rem, 4vw, 3.4rem); max-width: 18ch; }
.page-hero p { margin-top: 18px; max-width: 56ch; color: rgba(255,255,255,.8); font-weight: 300; font-size: 1.08rem; }

section { padding: 110px 0; }
.eyebrow {
  display: inline-flex; align-items: center; gap: 11px;
  font-size: .76rem; font-weight: 600; letter-spacing: .2em; text-transform: uppercase;
  color: var(--volcan-light); margin-bottom: 18px;
}
.eyebrow::before { content: ''; width: 30px; height: 1px; background: var(--gold); }
.eyebrow.light { color: var(--gold-soft); }
.sec-head { max-width: 640px; margin-bottom: 60px; }
.sec-head.center { margin: 0 auto 60px; text-align: center; }
.sec-head.center .eyebrow { justify-content: center; }
.sec-head h2 { font-size: clamp(2rem, 3.8vw, 3.1rem); color: var(--volcan-deep); }
.sec-head p { margin-top: 16px; color: var(--muted); font-size: 1.06rem; }

.site-footer { background: var(--charcoal); color: rgba(255,255,255,0.62); padding: 90px 0 32px; }
.foot-top { display: grid; grid-template-columns: 1.7fr 1fr 1fr 1.3fr; gap: 54px; padding-bottom: 56px; border-bottom: 1px solid rgba(255,255,255,0.1); }
.foot-logo { font-family: 'Fraunces', serif; font-size: 1.5rem; color: var(--cream); display: flex; align-items: center; gap: 11px; margin-bottom: 18px; }
.foot-logo .mark { width: 30px; height: 30px; border: 1.5px solid var(--gold); border-radius: 50%; display: grid; place-items: center; color: var(--gold); font-size: .8rem; }
.foot-top p { font-size: .93rem; max-width: 34ch; }
.foot-col h4 { font-family: 'Outfit', sans-serif; font-size: .78rem; font-weight: 700; letter-spacing: .14em; text-transform: uppercase; color: var(--gold-soft); margin-bottom: 20px; }
.foot-col ul { list-style: none; display: flex; flex-direction: column; gap: 12px; }
.foot-col a { font-size: .93rem; transition: color .25s; }
.foot-col a:hover { color: var(--cream); }
.foot-bottom { padding-top: 28px; display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 16px; font-size: .84rem; color: rgba(255,255,255,0.45); }
.foot-legal { display: flex; gap: 20px; flex-wrap: wrap; }
.socials { display: flex; gap: 12px; }
.socials a { width: 40px; height: 40px; border-radius: 50%; border: 1px solid rgba(255,255,255,0.18); display: grid; place-items: center; transition: background .25s, border-color .25s; }
.socials a:hover { background: var(--volcan); border-color: var(--volcan); }

.reveal { opacity: 1; transform: none; }
.js-anim .reveal { opacity: 0; transform: translateY(36px); transition: opacity .9s ease, transform .9s cubic-bezier(.2,.7,.3,1); }
.js-anim .reveal.in { opacity: 1; transform: translateY(0); }
@keyframes rise { from { opacity: 0; transform: translateY(26px); } to { opacity: 1; transform: translateY(0); } }

@media (max-width: 1080px) {
  .foot-top { grid-template-columns: 1fr 1fr; gap: 44px; }
}
@media (max-width: 920px) {
  .nav-links, .nav-actions { display: none; }
  .burger { display: flex; }
  .site-header { padding: 16px 0; }
}
@media (max-width: 680px) {
  .wrap { padding: 0 20px; }
  section { padding: 70px 0; }
  .logo { font-size: 1.16rem; }
  .page-hero { padding: 140px 0 70px; }
  .sec-head { margin-bottom: 40px; }
  .sec-head[data-flex] { display: block; }
  .foot-top { grid-template-columns: 1fr; gap: 34px; }
  .foot-bottom { flex-direction: column; align-items: flex-start; }
}
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: .01ms !important; transition-duration: .01ms !important; }
}

.venue-head { padding: 124px 0 0; }
.venue-head .crumb { font-size: .74rem; letter-spacing: .13em; text-transform: uppercase; color: var(--volcan-light); margin-bottom: 30px; }
.venue-head .crumb a { color: var(--volcan-light); }
.venue-head .crumb a:hover { color: var(--gold); }
.venue-hero-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 50px; align-items: center; }
.venue-eyebrow { display: inline-block; font-size: .72rem; font-weight: 700; letter-spacing: .14em; text-transform: uppercase; color: var(--gold); margin-bottom: 16px; }
.venue-head h1 { font-size: clamp(1.8rem, 2.7vw, 2.6rem); line-height: 1.18; color: var(--volcan-deep); }
.venue-tags { margin-top: 24px; display: flex; gap: 8px; flex-wrap: wrap; }
.venue-tags span { font-size: .78rem; font-weight: 500; color: var(--volcan); background: var(--sand); border: 1px solid var(--line); padding: 7px 14px; border-radius: 100px; }
.venue-cover { border-radius: var(--r-lg); overflow: hidden; aspect-ratio: 4 / 3; box-shadow: var(--shadow-sm); }
.venue-cover img { width: 100%; height: 100%; object-fit: cover; display: block; }

.venue-layout { display: grid; grid-template-columns: 1fr 348px; gap: 64px; align-items: start; padding-top: 60px; }
.venue-main > *:first-child { margin-top: 0; }
.venue-main h2 { font-size: 1.5rem; color: var(--volcan-deep); margin: 42px 0 14px; }
.venue-main p { color: var(--ink); margin-bottom: 15px; line-height: 1.75; }
.venue-main ul { list-style: none; margin: 18px 0 22px; padding: 0; }
.venue-main li { position: relative; padding-left: 24px; margin-bottom: 10px; color: var(--ink); line-height: 1.65; }
.venue-main li::before { content: ''; position: absolute; left: 0; top: .58em; width: 6px; height: 6px; border-radius: 50%; background: var(--gold); }
.venue-intro { font-family: 'Fraunces', serif; font-size: 1.22rem; line-height: 1.62; color: var(--volcan-deep); font-weight: 400; margin-bottom: 28px; }

.expert-note { background: var(--volcan); color: var(--cream); border-radius: var(--r-lg); padding: 26px 28px; margin: 30px 0; }
.expert-note .en-label { display: flex; align-items: center; gap: 9px; font-size: .73rem; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; color: var(--gold-soft); margin-bottom: 10px; }
.expert-note p { color: rgba(255,255,255,.9); margin: 0; line-height: 1.7; }
.expert-note strong { color: var(--cream); }

.venue-section-label { display: flex; align-items: center; gap: 14px; margin: 44px 0 18px; }
.venue-section-label span { font-family: 'Fraunces', serif; font-size: 1.5rem; color: var(--volcan-deep); white-space: nowrap; }
.venue-section-label::after { content: ''; flex: 1; height: 1px; background: var(--line); }

.spec-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1px; background: var(--line); border: 1px solid var(--line); border-radius: var(--r-lg); overflow: hidden; }
.spec-cell { background: var(--paper); padding: 20px 22px; }
.spec-cell dt { font-size: .72rem; font-weight: 700; letter-spacing: .08em; text-transform: uppercase; color: var(--volcan-light); margin-bottom: 6px; }
.spec-cell dd { margin: 0; font-size: .96rem; color: var(--ink); line-height: 1.5; }

.venue-aside { position: sticky; top: 96px; display: flex; flex-direction: column; gap: 18px; }
.contact-box { background: var(--paper); border: 1px solid var(--line); border-radius: var(--r-lg); padding: 28px; }
.contact-box h3 { font-size: 1.15rem; color: var(--volcan-deep); margin-bottom: 16px; }
.contact-box .c-row { display: flex; gap: 13px; padding: 12px 0; font-size: .92rem; color: var(--ink); align-items: flex-start; }
.contact-box .c-row + .c-row { border-top: 1px solid var(--line); }
.contact-box .c-row svg { color: var(--gold); flex-shrink: 0; margin-top: 2px; }
.contact-box .c-row a { color: var(--volcan); word-break: break-word; }
.contact-box .btn { width: 100%; justify-content: center; margin-top: 18px; }
.aside-map { border: 1px solid var(--line); border-radius: var(--r-lg); overflow: hidden; }
.aside-map #venue-map { height: 220px; width: 100%; }
.aside-cta { background: var(--volcan); color: var(--cream); border-radius: var(--r-lg); padding: 28px; }
.aside-cta h3 { color: var(--cream); font-size: 1.15rem; margin-bottom: 8px; }
.aside-cta p { font-size: .91rem; color: rgba(255,255,255,.8); margin-bottom: 18px; line-height: 1.6; }
.aside-cta .btn { width: 100%; justify-content: center; }

.more-venues { display: grid; grid-template-columns: repeat(3,1fr); gap: 22px; }
.more-venues .venue {
  display: flex; flex-direction: column; background: var(--paper);
  border: 1px solid var(--line); border-radius: var(--r-lg); overflow: hidden;
  transition: transform .35s ease, box-shadow .35s ease, border-color .35s ease;
}
.more-venues .venue:hover {
  transform: translateY(-4px); box-shadow: var(--shadow);
  border-color: var(--volcan-light);
}
.more-venues .venue-top {
  position: relative; padding: 26px 24px 22px;
  background: linear-gradient(150deg, var(--volcan) 0%, var(--volcan-deep) 100%);
  display: flex; align-items: center; justify-content: space-between;
}
.more-venues .venue-icon {
  width: 46px; height: 46px; border-radius: 12px;
  background: rgba(255,255,255,.1); border: 1px solid rgba(255,255,255,.16);
  display: flex; align-items: center; justify-content: center;
  color: var(--gold-soft); flex-shrink: 0;
}
.more-venues .venue-badge {
  font-size: .72rem; font-weight: 600; color: var(--cream);
  background: rgba(255,255,255,.12); border: 1px solid rgba(255,255,255,.18);
  padding: 6px 13px; border-radius: 100px;
}
.more-venues .venue-body {
  padding: 20px 24px 22px; display: flex; flex-direction: column; flex: 1;
}
.more-venues .venue-cat {
  font-size: .7rem; font-weight: 700; letter-spacing: .1em;
  text-transform: uppercase; color: var(--gold); margin-bottom: 8px;
}
.more-venues .venue-body h3 {
  font-size: 1.18rem; color: var(--volcan-deep); line-height: 1.3;
  margin-bottom: 14px;
}
.more-venues .venue-loc {
  display: flex; align-items: center; gap: 6px;
  font-size: .85rem; color: var(--muted);
  padding-top: 14px; border-top: 1px solid var(--line); margin-top: auto;
}
.more-venues .venue-loc svg { color: var(--gold); flex-shrink: 0; }
.more-venues .venue-arrow {
  display: flex; align-items: center; gap: 7px; margin-top: 14px;
  font-size: .84rem; font-weight: 600; color: var(--volcan);
}
.more-venues .venue:hover .venue-arrow { color: var(--gold); }
.more-venues .venue-arrow svg { transition: transform .3s ease; }
.more-venues .venue:hover .venue-arrow svg { transform: translateX(4px); }

@media (max-width: 920px) {
  .venue-hero-grid { grid-template-columns: 1fr; gap: 28px; }
  .venue-hero-text { order: 2; }
  .venue-cover { order: 1; aspect-ratio: 16 / 9; }
  .venue-layout { grid-template-columns: 1fr; gap: 40px; padding-top: 40px; }
  .venue-aside { position: static; }
  .more-venues { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 680px) {
  .venue-head { padding-top: 104px; }
  .venue-cover { aspect-ratio: 3 / 2; }
  .spec-grid { grid-template-columns: 1fr; }
  .more-venues { grid-template-columns: 1fr; }
}

.google-rating { display: flex; align-items: center; gap: 16px; background: var(--paper); border: 1px solid var(--line); border-radius: var(--r-lg); padding: 20px 24px; margin: 22px 0; }
.google-rating .g-logo { width: 40px; height: 40px; flex-shrink: 0; }
.google-rating .g-score { display: flex; flex-direction: column; }
.google-rating .g-num { font-family: 'Fraunces', serif; font-size: 1.9rem; line-height: 1; color: var(--volcan-deep); }
.google-rating .g-stars { color: var(--gold); font-size: 1rem; letter-spacing: 1px; margin-top: 3px; }
.google-rating .g-meta { font-size: .85rem; color: var(--muted); }
.google-rating .g-meta strong { color: var(--volcan-deep); font-weight: 600; }
.google-rating .g-link { margin-left: auto; font-size: .86rem; font-weight: 500; color: var(--volcan); display: flex; align-items: center; gap: 6px; }
@media (max-width: 680px) {
  .google-rating { flex-wrap: wrap; }
  .google-rating .g-link { margin-left: 0; width: 100%; padding-top: 12px; border-top: 1px solid var(--line); }
}

.google-rating-empty .g-stars-empty { color: var(--line); font-size: 1.15rem; letter-spacing: 2px; }
.google-rating-empty .g-meta { color: var(--muted); }
.google-rating-empty .g-score { justify-content: center; }

/* =========================================================================
   COMPLÉMENTS THÈME SEMINAIRE.RE
   -------------------------------------------------------------------------
   Ajouts au design d'origine pour l'intégration WordPress :
   menus dynamiques, citations du descriptif, galerie, tarifs.
   ========================================================================= */

/* --- Logo personnalisé (Personnaliser → Identité du site) --------------- */
.site-header .custom-logo-link { display: block; line-height: 0; }
.site-header .custom-logo { max-height: 46px; width: auto; }

/* --- Menu : élément actif (classes générées par WordPress) -------------- */
.nav-links .current-menu-item > a,
.nav-links .current-menu-ancestor > a { color: var(--gold-soft); }
.nav-links .current-menu-item > a::after,
.nav-links .current-menu-ancestor > a::after { width: 100%; }
.site-header.scrolled .nav-links .current-menu-item > a,
.site-header.solid .nav-links .current-menu-item > a,
.site-header.scrolled .nav-links .current-menu-ancestor > a,
.site-header.solid .nav-links .current-menu-ancestor > a { color: var(--volcan); }

/* --- Citation dans le descriptif (« conseil de l'équipe ») -------------- */
.venue-main blockquote {
	background: var(--volcan); color: var(--cream);
	border-radius: var(--r-lg); padding: 26px 30px; margin: 30px 0;
	font-style: normal;
}
.venue-main blockquote::before {
	content: '\201C'; display: block; font-family: 'Fraunces', serif;
	font-size: 2.6rem; line-height: .1; color: var(--gold-soft); margin-bottom: 18px;
}
.venue-main blockquote p { color: rgba(255,255,255,.92); margin: 0; }
.venue-main blockquote p + p { margin-top: 12px; }
.venue-main blockquote cite {
	display: block; margin-top: 14px; font-style: normal;
	font-size: .76rem; font-weight: 700; letter-spacing: .1em;
	text-transform: uppercase; color: var(--gold-soft);
}

/* --- Éléments additionnels du descriptif -------------------------------- */
.venue-main h3 { font-family: 'Fraunces', serif; font-size: 1.2rem; color: var(--volcan-deep); margin: 28px 0 10px; }
.venue-main img { border-radius: var(--r); margin: 18px 0; }
.venue-main a { color: var(--volcan); text-decoration: underline; text-underline-offset: 3px; }
.venue-main strong { color: var(--volcan-deep); }

/* --- Couverture de fiche sans image ------------------------------------- */
.venue-cover--vide {
	background: linear-gradient(150deg, var(--volcan), var(--volcan-deep));
	display: grid; place-items: center;
}
.venue-cover--vide svg { color: rgba(255,255,255,.28); }

/* --- Galerie d'images --------------------------------------------------- */
.venue-gallery { display: grid; grid-template-columns: repeat(3, 1fr); gap: 10px; margin: 18px 0; }
.venue-gallery a { display: block; border-radius: var(--r); overflow: hidden; aspect-ratio: 4 / 3; }
.venue-gallery img { width: 100%; height: 100%; object-fit: cover; transition: transform .45s ease; }
.venue-gallery a:hover img { transform: scale(1.05); }
@media (max-width: 680px) { .venue-gallery { grid-template-columns: 1fr 1fr; } }

/* --- Tarifs / forfaits -------------------------------------------------- */
.venue-price-avg { font-family: 'Fraunces', serif; font-size: 1.1rem; color: var(--volcan-deep); margin: 6px 0 16px; }
.venue-price-avg strong { font-size: 1.7rem; }
.forfait-list { display: flex; flex-direction: column; gap: 10px; }
.forfait {
	display: flex; justify-content: space-between; align-items: baseline; gap: 18px;
	background: var(--paper); border: 1px solid var(--line);
	border-radius: var(--r-lg); padding: 16px 22px;
}
.forfait dt { font-family: 'Fraunces', serif; font-size: 1.05rem; color: var(--volcan-deep); }
.forfait dd { margin: 5px 0 0; color: var(--muted); font-size: .9rem; }
.forfait-price { font-family: 'Fraunces', serif; font-size: 1.3rem; color: var(--gold); white-space: nowrap; text-align: right; }
.forfait-price small {
	display: block; font-family: 'Outfit', sans-serif; font-size: .68rem;
	color: var(--muted); text-transform: uppercase; letter-spacing: .06em; font-weight: 500;
}

/* --- Étoiles de note (note renseignée) ---------------------------------- */
.google-rating .g-stars { letter-spacing: 2px; }

/* --- Menu mobile : liste générée par WordPress -------------------------- */
.mobile-menu ul { list-style: none; display: flex; flex-direction: column; gap: 4px; width: 100%; }

/* --- Fiche : l'en-tête « solid » étant dans le flux, la couverture n'a
       pas à compenser un en-tête fixe (on remplace le padding de 124px). - */
.venue-head { padding-top: 44px; }

/* --- Vidéo de présentation --------------------------------------------- */
.venue-video { margin: 18px 0; }
.venue-video iframe,
.venue-video video {
	width: 100%; aspect-ratio: 16 / 9; height: auto;
	border: 0; border-radius: var(--r-lg);
}

/* =========================================================================
   PAGE LISTE DES LIEUX (archive-prestataire.php)
   -------------------------------------------------------------------------
   Styles repris de la maquette « lieux.html ». Les décalages « top » des
   éléments collants tiennent compte de l'en-tête « solid » (~78px).
   ========================================================================= */
.results-intro { padding: 44px 0 30px; }
.results-intro .crumb { font-size: .76rem; letter-spacing: .13em; text-transform: uppercase; color: var(--volcan-light); margin-bottom: 14px; }
.results-intro .crumb a { color: var(--volcan-light); }
.results-intro h1 { font-size: clamp(1.9rem, 3.4vw, 2.8rem); color: var(--volcan-deep); }
.results-intro p { margin-top: 12px; max-width: 60ch; color: var(--muted); font-size: 1.02rem; }

.results-bar { background: var(--cream); border-bottom: 1px solid var(--line); position: sticky; top: 78px; z-index: 40; }
.results-search { display: flex; gap: 8px; align-items: stretch; flex-wrap: wrap; padding: 18px 0; }
.rs-field { flex: 1; min-width: 150px; display: flex; flex-direction: column; padding: 9px 16px; border-radius: var(--r); border: 1px solid var(--line); background: var(--paper); }
.rs-field label { font-size: .64rem; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; color: var(--volcan-light); margin-bottom: 2px; }
.rs-field input, .rs-field select { border: none; background: transparent; font-family: 'Outfit',sans-serif; font-size: .95rem; color: var(--ink); outline: none; width: 100%; cursor: pointer; }
.rs-btn { background: var(--volcan); color: var(--cream); border: none; border-radius: var(--r); padding: 0 30px; cursor: pointer; font-family: 'Outfit',sans-serif; font-weight: 500; font-size: .95rem; display: flex; align-items: center; gap: 9px; transition: background .25s; }
.rs-btn:hover { background: var(--volcan-light); }

.results-layout { display: grid; grid-template-columns: 1fr 50%; gap: 0; min-height: calc(100vh - 200px); }
.results-list { padding: 32px 36px; }
.results-count { font-size: .92rem; color: var(--muted); margin-bottom: 22px; }
.results-count strong { color: var(--volcan-deep); font-weight: 600; }

.result-card { display: flex; gap: 18px; padding: 18px; border: 1px solid var(--line); border-radius: var(--r-lg); background: var(--paper); margin-bottom: 16px; cursor: pointer; transition: transform .3s, box-shadow .3s, border-color .3s; }
.result-card:hover, .result-card.active { transform: translateY(-3px); box-shadow: var(--shadow-sm); border-color: var(--volcan-light); }
.result-thumb { width: 130px; height: 130px; flex-shrink: 0; border-radius: var(--r); overflow: hidden; }
.result-thumb img { width: 100%; height: 100%; object-fit: cover; }
.result-thumb--vide { background: linear-gradient(150deg, var(--volcan), var(--volcan-deep)); }
.result-info { flex: 1; display: flex; flex-direction: column; }
.result-cat { font-size: .7rem; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; color: var(--volcan-light); }
.result-info h3 { font-size: 1.18rem; color: var(--volcan-deep); margin: 5px 0 4px; }
.result-loc { font-size: .86rem; color: var(--muted); display: flex; align-items: center; gap: 6px; }
.result-rate { margin-top: auto; display: flex; align-items: center; gap: 7px; font-size: .86rem; }
.result-rate .stars { color: var(--gold); letter-spacing: 1px; }
.result-rate .g { font-weight: 600; color: var(--volcan-deep); }
.result-link { font-size: .85rem; font-weight: 500; color: var(--volcan); display: flex; align-items: center; gap: 6px; margin-top: 8px; }

.results-map { position: sticky; top: 158px; height: calc(100vh - 158px); }
#map { width: 100%; height: 100%; }
.leaflet-popup-content-wrapper { border-radius: var(--r-lg); }
.map-popup { font-family: 'Outfit', sans-serif; min-width: 200px; }
.map-popup img { width: 100%; height: 110px; object-fit: cover; border-radius: var(--r); margin-bottom: 8px; }
.map-popup .mp-cat { font-size: .66rem; font-weight: 700; letter-spacing: .08em; text-transform: uppercase; color: var(--volcan-light); }
.map-popup h4 { font-family: 'Fraunces', serif; font-size: 1.05rem; color: var(--volcan-deep); margin: 3px 0 5px; }
.map-popup .mp-rate { font-size: .82rem; color: var(--gold); margin-bottom: 8px; }
.map-popup a { display: inline-flex; align-items: center; gap: 6px; font-size: .85rem; font-weight: 600; color: var(--volcan); }

.no-result { text-align: center; padding: 60px 20px; color: var(--muted); }
.no-result h3 { font-family: 'Fraunces', serif; font-size: 1.4rem; color: var(--volcan-deep); margin-bottom: 8px; }

@media (max-width: 980px) {
	.results-layout { grid-template-columns: 1fr; }
	.results-map { position: relative; top: 0; height: 380px; order: -1; }
	.results-list { padding: 26px 20px; }
	.results-bar { top: 62px; }
}
@media (max-width: 680px) {
	.results-search { flex-direction: column; }
	.rs-btn { padding: 14px; justify-content: center; }
	.result-card { flex-direction: column; }
	.result-thumb { width: 100%; height: 170px; }
}

/* =========================================================================
   ARTICLE DE BLOG (single.php)
   ========================================================================= */
.article-hero { padding: 44px 0 0; }
.article-hero .crumb { font-size: .74rem; letter-spacing: .13em; text-transform: uppercase; color: var(--volcan-light); margin-bottom: 22px; }
.article-hero .crumb a { color: var(--volcan-light); }
.article-hero .crumb a:hover { color: var(--gold); }
.article-cat { display: inline-block; font-size: .72rem; font-weight: 700; letter-spacing: .14em; text-transform: uppercase; color: var(--gold); margin-bottom: 14px; }
.article-hero h1 { font-size: clamp(2rem, 3.6vw, 3rem); color: var(--volcan-deep); max-width: 24ch; }
.article-meta { margin-top: 16px; display: flex; gap: 18px; flex-wrap: wrap; font-size: .9rem; color: var(--muted); }

.article-cover { max-width: 1000px; margin: 36px auto 0; border-radius: var(--r-lg); overflow: hidden; aspect-ratio: 16 / 9; }
.article-cover img { width: 100%; height: 100%; object-fit: cover; }

.article-wrap { max-width: 760px; }
.article-body { font-size: 1.05rem; color: var(--ink); }
.article-body > *:first-child { margin-top: 0; }
.article-body h2 { font-family: 'Fraunces', serif; font-size: 1.7rem; color: var(--volcan-deep); margin: 38px 0 14px; }
.article-body h3 { font-family: 'Fraunces', serif; font-size: 1.3rem; color: var(--volcan-deep); margin: 28px 0 10px; }
.article-body p { margin-bottom: 16px; line-height: 1.8; }
.article-body ul, .article-body ol { margin: 16px 0 22px; padding-left: 22px; }
.article-body li { margin-bottom: 8px; line-height: 1.7; }
.article-body img { border-radius: var(--r); margin: 22px 0; height: auto; }
.article-body a { color: var(--volcan); text-decoration: underline; text-underline-offset: 3px; }
.article-body strong { color: var(--volcan-deep); }
.article-body blockquote { background: var(--volcan); color: var(--cream); border-radius: var(--r-lg); padding: 26px 30px; margin: 28px 0; }
.article-body blockquote p { color: rgba(255,255,255,.92); margin: 0; }
.article-body blockquote p + p { margin-top: 10px; }

/* Navigation Précédent / Suivant */
.article-nav { display: flex; justify-content: space-between; gap: 20px; margin-top: 48px; padding-top: 30px; border-top: 1px solid var(--line); }
.article-nav a { display: flex; flex-direction: column; gap: 5px; max-width: 47%; }
.article-nav .an-dir { display: flex; align-items: center; gap: 6px; font-size: .73rem; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; color: var(--volcan-light); }
.article-nav .an-title { font-family: 'Fraunces', serif; font-size: 1.06rem; color: var(--volcan-deep); transition: color .25s; }
.article-nav a:hover .an-title { color: var(--gold); }
.article-nav .an-next { margin-left: auto; text-align: right; align-items: flex-end; }

/* Articles similaires */
.article-related { display: grid; grid-template-columns: repeat(3,1fr); gap: 26px; }
.article-card { display: block; color: inherit; }
.article-card .ac-img { height: 210px; border-radius: var(--r-lg); overflow: hidden; margin-bottom: 16px; background: var(--sand); }
.article-card .ac-img img { width: 100%; height: 100%; object-fit: cover; transition: transform .6s ease; }
.article-card:hover .ac-img img { transform: scale(1.05); }
.article-card .ac-cat { font-size: .72rem; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; color: var(--gold); }
.article-card h3 { font-family: 'Fraunces', serif; font-size: 1.2rem; color: var(--volcan-deep); margin: 8px 0 6px; transition: color .25s; }
.article-card:hover h3 { color: var(--volcan); }
.article-card .ac-meta { font-size: .84rem; color: var(--muted); }

@media (max-width: 780px) {
	.article-related { grid-template-columns: 1fr; }
	.article-nav { flex-direction: column; }
	.article-nav a, .article-nav .an-next { max-width: 100%; text-align: left; align-items: flex-start; margin-left: 0; }
}

/* =========================================================================
   RECHERCHE, FORMULAIRE DE RECHERCHE, PAGE 404
   ========================================================================= */

/* --- Résultats de recherche -------------------------------------------- */
.search-list { max-width: 760px; }
.search-result { padding: 26px 0; border-bottom: 1px solid var(--line); }
.search-result:first-child { padding-top: 0; }
.search-result .type { display: inline-block; font-size: .7rem; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; color: var(--gold); margin-bottom: 8px; }
.search-result h2 { font-family: 'Fraunces', serif; font-size: 1.35rem; color: var(--volcan-deep); margin-bottom: 8px; }
.search-result h2 a { color: inherit; transition: color .25s; }
.search-result h2 a:hover { color: var(--volcan); }
.search-result p { color: var(--muted); font-size: .95rem; }
.search-result .meta { font-size: .82rem; color: var(--muted); margin-top: 8px; }

/* --- Formulaire de recherche ------------------------------------------- */
.search-form { display: flex; gap: 8px; max-width: 440px; margin-top: 24px; }
.search-form input[type="search"] {
	flex: 1; border: 1px solid var(--line); border-radius: 100px;
	padding: 13px 22px; font-family: 'Outfit', sans-serif; font-size: .95rem;
	outline: none; background: var(--paper); color: var(--ink);
}
.search-form input[type="search"]:focus { border-color: var(--volcan); }
.search-form button {
	display: flex; align-items: center; gap: 8px;
	background: var(--volcan); color: var(--cream); border: none;
	border-radius: 100px; padding: 0 24px; cursor: pointer;
	font-family: 'Outfit', sans-serif; font-weight: 500; font-size: .92rem;
	transition: background .25s;
}
.search-form button:hover { background: var(--volcan-light); }

/* --- Page 404 ----------------------------------------------------------- */
.erreur404 { text-align: center; padding: 60px 20px 90px; }
.erreur404 .code { font-family: 'Fraunces', serif; font-size: clamp(5rem, 14vw, 10rem); line-height: 1; color: var(--sand); }
.erreur404 h1 { font-size: clamp(1.8rem, 3vw, 2.6rem); color: var(--volcan-deep); margin-top: -8px; }
.erreur404 p { max-width: 46ch; margin: 16px auto 28px; color: var(--muted); }
.erreur404 .actions { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }
.erreur404 .search-form { margin: 32px auto 0; }
