:root {
  --stone: #0d1410;
  --earth: #111a14;
  --clay: #162019;
  --terracotta: #c8a84b;
  --rust: #d4b85a;
  --ochre: #d4a843;
  --cream: #f0ece0;
  --sand: #1a2419;
  --mist: #8aab90;
  --sage: #6a9275;
  --moss: #4a7558;
  --river: #3a6048;
  --text: #f0ece0;
  --text-muted: #8aab90;
  --hero-fallback: #21346e;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body { font-family: 'Josefin Sans', sans-serif; background: #0d1410; color: #f0ece0; overflow-x: hidden; }

body::before {
  content: '';
  position: fixed;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='300' height='300'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.75' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='300' height='300' filter='url(%23n)' opacity='0.02'/%3E%3C/svg%3E");
  pointer-events: none;
  z-index: 0;
  opacity: 0.3;
}

/* ─── ÉCO-BANNER (inspiré Ardèche Guide) ─── */
.eco-banner {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 200;
  background: #162019;
  border-bottom: 1px solid rgba(212,168,67,0.2);
  padding: 0.35rem 5%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 0.62rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: #8aab90;
  gap: 1rem;
}
.eco-banner span { color: #d4a843; font-weight: 600; }
.eco-banner a { color: #6a9275; text-decoration: none; transition: color .2s; }
.eco-banner a:hover { color: #d4a843; }
.eco-close { background: none; border: none; color: #6a9275; cursor: pointer; font-size: 0.9rem; line-height: 1; padding: 0 0.3rem; }

/* ─── NAV ─── */
nav {
  position: fixed;
  top: 32px; left: 0; right: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.1rem 5%;
  background: rgba(33,52,110,0.0);
  backdrop-filter: blur(0px);
  border-bottom: 1px solid transparent;
  transition: background 0.3s, top 0.3s, border-color 0.3s, backdrop-filter 0.3s;
}
nav.eco-hidden { top: 0; }
nav.nav-scrolled {
  background: rgba(13,20,16,0.97);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(212,168,67,0.15);
  box-shadow: 0 1px 20px rgba(0,0,0,0.5);
}

.nav-logo {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.05rem;
  font-style: italic;
  color: #d4a843;
  letter-spacing: 0.05em;
  text-decoration: none;
  line-height: 1.2;
}
.nav-logo span { display: block; font-style: normal; font-size: 0.6rem; letter-spacing: 0.3em; text-transform: uppercase; color: #8aab90; font-family: 'Josefin Sans', sans-serif; }

/* ─── LOGO SVG ─── */
.nav-logo-img { display: flex; align-items: center; padding: 0; flex-shrink: 0; text-decoration: none; }
.nav-logo-img svg { transition: opacity 0.3s; opacity: 0.92; }
.nav-logo-img:hover svg { opacity: 1; }
.footer-logo-img { display: flex; align-items: center; text-decoration: none; }
.footer-logo-img svg { opacity: 0.65; transition: opacity 0.3s; }
.footer-logo-img:hover svg { opacity: 0.85; }

/* ─── NAV LINKS compactes ─── */
.nav-links { display: flex; gap: 1.1rem; list-style: none; flex-wrap: nowrap; align-items: center; }
.nav-links a { color: #f0ece0; text-decoration: none; font-size: 0.6rem; letter-spacing: 0.12em; text-transform: uppercase; transition: color 0.2s; white-space: nowrap; font-family: 'Rubik', sans-serif; font-weight: 500; }
.nav-links a:hover { color: #d4a843; }
nav.nav-scrolled .nav-links a { color: #8aab90; }
nav.nav-scrolled .nav-links a:hover { color: #d4a843; }

.nav-right { display: flex; align-items: center; gap: 0.8rem; }

/* Favoris badge */
.nav-favorites {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.65rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: #f0ece0;
  text-decoration: none;
  padding: 0.4rem 0.8rem;
  border: 1px solid rgba(240,236,224,0.25);
  transition: all 0.2s;
  position: relative;
  font-family: 'Rubik', sans-serif;
  font-weight: 500;
}
.nav-favorites:hover { color: #d4a843; border-color: rgba(212,168,67,0.5); }
nav.nav-scrolled .nav-favorites { color: #8aab90; border-color: rgba(212,168,67,0.2); }
nav.nav-scrolled .nav-favorites:hover { color: #d4a843; border-color: rgba(212,168,67,0.5); }
.fav-count { background: #d4a843; color: #0d1410; font-size: 0.55rem; font-weight: 700; padding: 0 4px; border-radius: 2px; min-width: 16px; text-align: center; }

.nav-cta {
  display: flex; align-items: center; gap: 0.5rem;
  background: #d4a843; color: #0d1410; text-decoration: none;
  padding: 0.6rem 1.3rem; font-size: 0.68rem; letter-spacing: 0.2em;
  text-transform: uppercase; border: none; transition: all 0.25s;
  font-weight: 700; font-family: 'Rubik', sans-serif;
  clip-path: polygon(10% 0%, 100% 0%, 90% 100%, 0% 100%);
}
.nav-cta:hover { background: #d4b85a; transform: translateY(-1px); }

/* ─── HERO ─── */
.hero {
  position: relative;
  min-height: 100vh;
  background: var(--hero-fallback);
  display: flex;
  align-items: flex-start;
  overflow: hidden;
  margin-top: 0;
}
.hero-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
}
.hero-bg-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 30%;
}
@keyframes heroZoom { from { transform: scale(1.04); } to { transform: scale(1.0); } }
.hero-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(15,30,30,0.55) 0%, rgba(13,20,16,0.45) 45%, rgba(13,20,16,0.85) 100%);
}
.hero-side-line { position: absolute; left: 5%; top: 50%; transform: translateY(-50%); width: 1px; height: 120px; background: linear-gradient(to bottom, transparent, #d4a843, transparent); opacity: 0.5; }

.hero-content {
  position: relative;
  z-index: 2;
  width: 100%;
  padding: clamp(8rem, 14vw, 11rem) 5% 6rem;
  display: flex;
  flex-direction: column;
  gap: 2.5rem;
}
.hero-eyebrow {
  font-family: 'Rubik', sans-serif;
  font-size: 0.7rem;
  letter-spacing: 0.35em;
  text-transform: uppercase;
  color: #d4a843;
  margin-bottom: 0.5rem;
  display: flex;
  align-items: center;
  gap: 1rem;
  font-weight: 500;
}
.hero-eyebrow::before { content: ''; display: inline-block; width: 30px; height: 1px; background: #d4a843; }

.hero-title {
  font-family: 'Rubik', sans-serif;
  font-weight: 900;
  text-transform: uppercase;
  color: #f0ece0;
  line-height: 0.98;
  letter-spacing: -0.01em;
  font-size: clamp(3.2rem, 11vw, 8.5rem);
}
.hero-title .accent { color: #d4a843; }
.hero-title .line { display: block; }

.hero-bottom-row {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 2.5rem;
  align-items: end;
  margin-top: 1rem;
}
.hero-sub {
  font-family: 'Josefin Sans', sans-serif;
  font-size: 1.05rem;
  color: #d6e3da;
  line-height: 1.75;
  max-width: 460px;
}
.hero-sub em { color: #d4a843; font-style: italic; }

.hero-tags { display: flex; gap: 1rem; flex-wrap: wrap; margin-top: 1.5rem; }
.hero-tag {
  font-family: 'Rubik', sans-serif;
  font-size: 0.65rem; letter-spacing: 0.2em; text-transform: uppercase;
  color: #f0ece0; padding: 0.4rem 0.8rem; border: 1px solid rgba(240,236,224,0.25);
  font-weight: 500;
}

/* ─── CUSTOM CTA BUTTON (SVG shape background) ─── */
.hero-cta {
  position: relative;
  width: 184px;
  height: 65px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  flex-shrink: 0;
  transition: transform 0.3s cubic-bezier(.2,.8,.2,1);
}
.hero-cta:hover { transform: scale(1.06); }
.hero-cta svg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  transition: filter 0.3s;
}
.hero-cta:hover svg { filter: brightness(1.12); }
.hero-cta-label {
  position: relative;
  z-index: 2;
  font-family: 'Rubik', sans-serif;
  font-weight: 700;
  font-size: 0.72rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: #0d1410;
  padding-left: 6px;
}
.hero-cta-secondary {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  background: transparent;
  color: #f0ece0;
  text-decoration: none;
  padding: 0.9rem 1.6rem;
  font-size: 0.7rem;
  font-family: 'Rubik', sans-serif;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  border: 1px solid rgba(240,236,224,0.3);
  transition: all 0.25s;
  font-weight: 500;
  margin-left: 1rem;
}
.hero-cta-secondary:hover { border-color: #d4a843; color: #d4a843; }
.hero-cta-group { display: flex; align-items: center; }

.btn-primary { display: inline-flex; align-items: center; gap: 0.6rem; background: #d4a843; color: #0d1410; text-decoration: none; padding: 0.9rem 2rem; font-size: 0.72rem; letter-spacing: 0.2em; text-transform: uppercase; border: 1px solid #d4b85a; transition: all 0.25s; cursor: pointer; font-family: 'Josefin Sans', sans-serif; font-weight: 600; }
.btn-primary:hover { background: #d4b85a; transform: translateY(-2px); box-shadow: 0 8px 24px rgba(212,168,67,0.35); }
.btn-outline { display: inline-flex; align-items: center; gap: 0.6rem; background: transparent; color: #f0ece0; text-decoration: none; padding: 0.9rem 2rem; font-size: 0.72rem; letter-spacing: 0.2em; text-transform: uppercase; border: 1px solid rgba(242,234,216,0.25); transition: all 0.25s; }
.btn-outline:hover { border-color: #d4a843; color: #d4a843; }

/* ─── SECTION BASE ─── */
.section { padding: 7rem 5%; position: relative; z-index: 1; }
.section-label { font-size: 0.65rem; letter-spacing: 0.35em; text-transform: uppercase; color: #d4a843; display: flex; align-items: center; gap: 1rem; margin-bottom: 1rem; }
.section-label::after { content: ''; flex: 0 0 40px; height: 1px; background: #d4a843; opacity: 0.5; }
.section-title { font-family: 'Cormorant Garamond', serif; font-size: clamp(2rem, 3.5vw, 3rem); font-weight: 300; line-height: 1.15; color: #f0ece0; margin-bottom: 1.5rem; }
.section-title em { font-style: italic; color: #d4a843; }

/* ─── AMBIANCES (inspiré Ardèche Guide) ─── */
#ambiances { background: #080f0a; }
.ambiances-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: 1px; background: rgba(212,168,67,0.06); border: 1px solid rgba(212,168,67,0.06); margin-top: 3rem; }
.ambiance-card { position: relative; height: 280px; overflow: hidden; cursor: pointer; background: #111a14; }
.ambiance-card img { width: 100%; height: 100%; object-fit: cover; filter: sepia(30%) brightness(0.55) contrast(1.1); transition: filter 0.5s, transform 0.6s; }
.ambiance-card:hover img { filter: sepia(10%) brightness(0.75) contrast(1.1); transform: scale(1.05); }
.ambiance-card-overlay { position: absolute; inset: 0; background: linear-gradient(to top, rgba(15,26,18,0.9) 0%, transparent 60%); }
.ambiance-card-info { position: absolute; bottom: 0; left: 0; right: 0; padding: 1.5rem; }
.ambiance-card-tag { font-size: 0.58rem; letter-spacing: 0.22em; text-transform: uppercase; color: #d4a843; margin-bottom: 0.35rem; }
.ambiance-card-name { font-family: 'Cormorant Garamond', serif; font-size: 1.2rem; color: #f0ece0; line-height: 1.2; }
.ambiance-card-sub { font-size: 0.72rem; color: #8aab90; margin-top: 0.3rem; line-height: 1.5; }
.ambiance-fav-btn { position: absolute; top: 1rem; right: 1rem; background: rgba(13,20,16,0.7); border: 1px solid rgba(212,168,67,0.3); color: #d4a843; width: 32px; height: 32px; display: flex; align-items: center; justify-content: center; cursor: pointer; font-size: 0.9rem; transition: all 0.2s; }
.ambiance-fav-btn:hover, .ambiance-fav-btn.saved { background: rgba(212,168,67,0.2); }

/* ─── ABOUT ─── */
#about { background: #111a14; display: grid; grid-template-columns: 1fr 1fr; gap: 6rem; align-items: center; }
.about-image-wrapper { position: relative; }
.about-image-frame { position: relative; aspect-ratio: 4/5; overflow: hidden; }
.about-image-frame img { width: 100%; height: 100%; object-fit: cover; filter: sepia(20%) contrast(1.05); }
.about-image-frame::after { content: ''; position: absolute; inset: 0; background: linear-gradient(to bottom, transparent 60%, rgba(22,32,25,0.6)); }
.about-corner { position: absolute; width: 60px; height: 60px; border-color: #d4a843; border-style: solid; opacity: 0.5; }
.about-corner.tl { top: -12px; left: -12px; border-width: 2px 0 0 2px; }
.about-corner.br { bottom: -12px; right: -12px; border-width: 0 2px 2px 0; }
.about-badge { position: absolute; bottom: 2rem; right: -2rem; background: #d4a843; padding: 1.2rem 1.5rem; text-align: center; z-index: 2; }
.about-badge-num { font-family: 'Cormorant Garamond', serif; font-size: 2.5rem; font-weight: 300; color: #0d1410; line-height: 1; }
.about-badge-txt { font-size: 0.6rem; letter-spacing: 0.2em; text-transform: uppercase; color: rgba(13,20,16,0.75); margin-top: 0.3rem; }
.about-text p { color: #8aab90; line-height: 1.85; font-size: 0.95rem; margin-bottom: 1.2rem; }
.about-text em { color: #d4a843; font-style: italic; }
.about-signature { font-family: 'Cormorant Garamond', serif; font-size: 2rem; font-style: italic; color: #d4a843; margin-top: 2rem; opacity: 0.8; }

/* ─── SOCIAL PROOF (inspiré Ardèche Guide) ─── */
#avis { background: #0d1410; padding: 5rem 5%; }
.avis-header { text-align: center; margin-bottom: 3rem; }
.avis-score { font-family: 'Cormorant Garamond', serif; font-size: 4rem; font-weight: 300; color: #d4a843; line-height: 1; }
.avis-stars { color: #d4a843; font-size: 1.2rem; letter-spacing: 0.1em; margin: 0.3rem 0; }
.avis-count { font-size: 0.72rem; letter-spacing: 0.2em; text-transform: uppercase; color: #6a9275; }
.avis-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 1px; background: rgba(212,168,67,0.06); }
.avis-card { background: #111a14; padding: 2rem; }
.avis-card-stars { color: #d4a843; font-size: 0.85rem; margin-bottom: 0.8rem; }
.avis-card-text { font-family: 'Cormorant Garamond', serif; font-size: 1rem; color: #f0ece0; line-height: 1.7; font-style: italic; margin-bottom: 1rem; }
.avis-card-author { font-size: 0.65rem; letter-spacing: 0.2em; text-transform: uppercase; color: #6a9275; }
.avis-card-date { font-size: 0.62rem; color: rgba(138,171,144,0.5); margin-top: 0.2rem; }

/* ─── LIEUX INSOLITES ─── */
#places { background: #0d1410; }
.places-intro { max-width: 600px; margin-bottom: 4rem; }
.places-intro p { color: #8aab90; line-height: 1.8; font-size: 0.95rem; }
.places-grid { display: grid; grid-template-columns: repeat(12, 1fr); gap: 1.5rem; }
.place-card { position: relative; overflow: hidden; cursor: pointer; }
.place-card:nth-child(1) { grid-column: span 7; grid-row: span 2; height: 520px; }
.place-card:nth-child(2) { grid-column: span 5; height: 250px; }
.place-card:nth-child(3) { grid-column: span 5; height: 250px; }
.place-card:nth-child(4) { grid-column: span 4; height: 280px; }
.place-card:nth-child(5) { grid-column: span 4; height: 280px; }
.place-card:nth-child(6) { grid-column: span 4; height: 280px; }
.place-card img { width: 100%; height: 100%; object-fit: cover; filter: sepia(15%) contrast(1.05) brightness(0.9); transition: transform 0.7s cubic-bezier(0.25,0.46,0.45,0.94), filter 0.5s; }
.place-card:hover img { transform: scale(1.06); filter: sepia(5%) contrast(1.1) brightness(1.0); }
.place-card-overlay { position: absolute; inset: 0; background: linear-gradient(to top, rgba(15,42,26,0.88) 0%, rgba(15,42,26,0.25) 50%, transparent 100%); transition: background 0.4s; }
.place-card:hover .place-card-overlay { background: linear-gradient(to top, rgba(15,42,26,0.92) 0%, rgba(15,42,26,0.35) 60%, transparent 100%); }
.place-card-info { position: absolute; bottom: 0; left: 0; right: 0; padding: 1.5rem; }
.place-card-tag { font-size: 0.6rem; letter-spacing: 0.25em; text-transform: uppercase; color: #d4a843; margin-bottom: 0.4rem; }
.place-card-name { font-family: 'Cormorant Garamond', serif; font-size: 1.3rem; font-weight: 400; color: #f0ece0; line-height: 1.2; }
.place-card:nth-child(1) .place-card-name { font-size: 1.8rem; }
.place-card-desc { font-size: 0.78rem; color: #8aab90; margin-top: 0.4rem; line-height: 1.6; max-height: 0; overflow: hidden; transition: max-height 0.4s ease; }
.place-card:hover .place-card-desc { max-height: 80px; }
/* Bouton favoris sur les cards */
.place-fav-btn { position: absolute; top: 1rem; right: 1rem; background: rgba(13,20,16,0.7); border: 1px solid rgba(212,168,67,0.3); color: #d4a843; width: 32px; height: 32px; display: flex; align-items: center; justify-content: center; cursor: pointer; font-size: 0.85rem; transition: all 0.2s; z-index: 2; }
.place-fav-btn:hover, .place-fav-btn.saved { background: rgba(212,168,67,0.25); }

/* ─── SERVICES ─── */
#services { background: #111a14; }
.services-header { display: flex; justify-content: space-between; align-items: flex-end; margin-bottom: 4rem; flex-wrap: wrap; gap: 2rem; }
.services-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 1px; background: rgba(212,168,67,0.06); border: 1px solid rgba(212,168,67,0.06); }
.service-item { background: #111a14; padding: 2.5rem 2rem; transition: background 0.3s; position: relative; overflow: hidden; }
.service-item::before { content: ''; position: absolute; top: 0; left: 0; width: 3px; height: 0; background: #d4a843; transition: height 0.4s ease; }
.service-item:hover { background: #162019; }
.service-item:hover::before { height: 100%; }
.service-num { font-family: 'Cormorant Garamond', serif; font-size: 3rem; font-weight: 300; color: rgba(212,168,67,0.1); line-height: 1; margin-bottom: 1rem; }
.service-icon { font-size: 1.8rem; margin-bottom: 1rem; }
.service-name { font-family: 'Cormorant Garamond', serif; font-size: 1.3rem; font-weight: 400; color: #f0ece0; margin-bottom: 0.75rem; }
.service-desc { font-size: 0.82rem; color: #8aab90; line-height: 1.75; }

/* ─── CIRCUITS ─── */
#circuits { background: #0d1410; }
.circuits-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 2px; margin-top: 3rem; background: rgba(212,168,67,0.05); border: 1px solid rgba(212,168,67,0.05); }
.circuit-card { background: #0d1410; display: flex; flex-direction: column; transition: background 0.3s; position: relative; overflow: hidden; }
.circuit-card:hover { background: #111a14; }
.circuit-img { height: 200px; overflow: hidden; position: relative; }
.circuit-img img { width: 100%; height: 100%; object-fit: cover; filter: sepia(20%) contrast(1.05) brightness(0.85); transition: transform 0.6s ease, filter 0.4s; }
.circuit-card:hover .circuit-img img { transform: scale(1.05); filter: sepia(10%) contrast(1.05) brightness(0.95); }
.circuit-badge { position: absolute; bottom: 0.8rem; left: 0.8rem; background: rgba(13,20,16,0.9); color: #d4a843; padding: 0.25rem 0.7rem; font-size: 0.65rem; letter-spacing: 0.15em; text-transform: uppercase; border: 1px solid rgba(212,168,67,0.3); }
.circuit-body { padding: 1.75rem; flex-grow: 1; display: flex; flex-direction: column; }
.circuit-name { font-family: 'Cormorant Garamond', serif; font-size: 1.2rem; color: #f0ece0; margin-bottom: 0.75rem; line-height: 1.25; }
.circuit-desc { font-size: 0.82rem; color: #8aab90; line-height: 1.7; margin-bottom: 1.25rem; flex-grow: 1; }
.circuit-tip { border-left: 2px solid #d4a843; padding-left: 0.9rem; font-size: 0.78rem; color: #8aab90; line-height: 1.6; }
.circuit-tip strong { color: #d4a843; display: block; margin-bottom: 0.3rem; font-size: 0.72rem; letter-spacing: 0.1em; text-transform: uppercase; }
.circuit-fav { position: absolute; top: 0.8rem; right: 0.8rem; background: rgba(13,20,16,0.7); border: 1px solid rgba(212,168,67,0.3); color: #d4a843; width: 30px; height: 30px; display: flex; align-items: center; justify-content: center; cursor: pointer; font-size: 0.8rem; transition: all .2s; }
.circuit-fav:hover, .circuit-fav.saved { background: rgba(212,168,67,0.2); }

/* ─── AGENDA (inspiré Ardèche Guide) ─── */
#agenda { background: #111a14; }
.agenda-tabs { display: flex; gap: 0; margin-bottom: 2rem; border: 1px solid rgba(212,168,67,0.15); }
.agenda-tab { flex: 1; padding: 0.7rem; font-size: 0.65rem; letter-spacing: 0.2em; text-transform: uppercase; color: #8aab90; background: transparent; border: none; cursor: pointer; transition: all 0.2s; text-align: center; }
.agenda-tab.active, .agenda-tab:hover { background: rgba(212,168,67,0.1); color: #d4a843; }
.agenda-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); gap: 1px; background: rgba(212,168,67,0.06); }
.agenda-item { background: #111a14; padding: 1.5rem; transition: background .2s; }
.agenda-item:hover { background: #162019; }
.agenda-date { font-size: 0.62rem; letter-spacing: 0.2em; text-transform: uppercase; color: #d4a843; margin-bottom: 0.5rem; }
.agenda-title { font-family: 'Cormorant Garamond', serif; font-size: 1.05rem; color: #f0ece0; line-height: 1.3; margin-bottom: 0.4rem; }
.agenda-lieu { font-size: 0.72rem; color: #6a9275; }
.agenda-tag { display: inline-block; font-size: 0.58rem; letter-spacing: 0.15em; text-transform: uppercase; padding: 0.2rem 0.5rem; border: 1px solid rgba(212,168,67,0.2); color: #8aab90; margin-top: 0.6rem; }

/* ─── PASS PIERRE-FRANÇOIS (inspiré Pass'Ardèche) ─── */
#pass { background: #080f0a; padding: 5rem 5%; }
.pass-inner { display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; align-items: center; }
.pass-card { background: linear-gradient(135deg, #1a2a1c, #162019); border: 1px solid rgba(212,168,67,0.3); padding: 2.5rem; position: relative; overflow: hidden; }
.pass-card::before { content: ''; position: absolute; top: -60px; right: -60px; width: 200px; height: 200px; border-radius: 50%; background: radial-gradient(circle, rgba(212,168,67,0.08) 0%, transparent 70%); }
.pass-label { font-size: 0.62rem; letter-spacing: 0.3em; text-transform: uppercase; color: #d4a843; margin-bottom: 0.5rem; }
.pass-name { font-family: 'Cormorant Garamond', serif; font-size: 2rem; color: #f0ece0; margin-bottom: 0.5rem; }
.pass-desc { font-size: 0.82rem; color: #8aab90; line-height: 1.7; margin-bottom: 1.5rem; }
.pass-features { list-style: none; display: flex; flex-direction: column; gap: 0.6rem; margin-bottom: 1.5rem; }
.pass-features li { font-size: 0.8rem; color: #8aab90; display: flex; gap: 0.6rem; }
.pass-features li::before { content: '—'; color: #d4a843; flex-shrink: 0; }
.pass-price { font-family: 'Cormorant Garamond', serif; font-size: 3rem; font-weight: 300; color: #d4a843; line-height: 1; margin-bottom: 0.25rem; }
.pass-price span { font-size: 0.9rem; color: #8aab90; font-family: 'Josefin Sans', sans-serif; }

/* ─── PRICING ─── */
#pricing { background: linear-gradient(135deg, #111a14 0%, #162019 100%); position: relative; overflow: hidden; }
#pricing::before { content: ''; position: absolute; top: -100px; right: -100px; width: 400px; height: 400px; border-radius: 50%; background: radial-gradient(circle, rgba(212,168,67,0.06) 0%, transparent 70%); pointer-events: none; }
.launch-banner { background: linear-gradient(135deg, #b8943a, #d4a843); color: #0d1410; text-align: center; padding: .55rem 1rem; font-size: .68rem; letter-spacing: .2em; text-transform: uppercase; font-weight: 600; margin-bottom: 3rem; position: relative; }
.launch-banner::before, .launch-banner::after { content: '✦'; margin: 0 .75rem; opacity: .7; }
.pricing-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); gap: 1.5rem; margin-top: 3rem; }
.pricing-card { background: rgba(22,32,25,0.8); border: 1px solid rgba(212,168,67,0.12); padding: 2.5rem 2rem; position: relative; transition: border-color 0.3s, transform 0.3s; }
.pricing-card:hover { border-color: rgba(212,168,67,0.5); transform: translateY(-4px); }
.pricing-card.featured { background: #1e2e20; border-color: rgba(212,168,67,0.4); }
.price-block { margin-bottom: .25rem; }
.price-original { font-family: 'Cormorant Garamond', serif; font-size: 1.4rem; color: #6a9275; text-decoration: line-through; opacity: .6; line-height: 1; display: block; }
.price-promo { font-family: 'Cormorant Garamond', serif; font-size: 3rem; font-weight: 300; color: #f0ece0; line-height: 1; }
.pricing-card.featured .price-promo { color: #d4a843; }
.price-unit { font-family: 'Josefin Sans', sans-serif; font-size: .78rem; color: #8aab90; letter-spacing: .05em; }
.price-save { display: inline-block; background: #d4a843; color: #0d1410; font-size: .6rem; letter-spacing: .15em; text-transform: uppercase; padding: .2rem .6rem; margin-top: .5rem; font-weight: 600; }
.pricing-label { font-size: 0.65rem; letter-spacing: 0.25em; text-transform: uppercase; color: #d4a843; margin-bottom: 1rem; }
.pricing-name { font-family: 'Cormorant Garamond', serif; font-size: 1.5rem; color: #f0ece0; margin-bottom: 0.5rem; }
.pricing-divider { height: 1px; background: rgba(212,168,67,0.15); margin: 1.5rem 0; }
.pricing-features { list-style: none; display: flex; flex-direction: column; gap: 0.7rem; }
.pricing-features li { font-size: 0.82rem; color: #8aab90; display: flex; align-items: flex-start; gap: 0.6rem; line-height: 1.5; }
.pricing-features li::before { content: '—'; color: #d4a843; flex-shrink: 0; font-size: 0.9rem; line-height: 1.3; }
.pricing-card.featured .pricing-features li { color: rgba(240,236,224,0.85); }
.pricing-note { margin-top: 1.5rem; font-size: 0.72rem; color: #6a9275; font-style: italic; }

/* ─── CARTE INTERACTIVE ─── */
#map-section { background: #080f0a; padding: 7rem 5%; position: relative; z-index: 1; }
.map-header { margin-bottom: 3rem; }
.map-wrapper { position: relative; border: 1px solid rgba(212,168,67,0.2); overflow: hidden; }
#trail-map { width: 100%; height: 520px; background: #111a14; }
.map-legend { display: flex; flex-wrap: wrap; gap: 1.5rem; margin-top: 1.5rem; }
.map-legend-item { display: flex; align-items: center; gap: 0.6rem; font-size: 0.72rem; letter-spacing: 0.1em; text-transform: uppercase; color: #8aab90; }
.map-legend-dot { width: 10px; height: 10px; border-radius: 50%; flex-shrink: 0; }
.leaflet-popup-content-wrapper { background: #111a14 !important; border: 1px solid rgba(212,168,67,0.3) !important; border-radius: 0 !important; color: #f0ece0 !important; box-shadow: 0 8px 32px rgba(0,0,0,0.6) !important; }
.leaflet-popup-tip { background: #111a14 !important; }
.leaflet-popup-content { margin: 1rem 1.2rem !important; }
.map-popup-tag { font-size: 0.58rem; letter-spacing: 0.2em; text-transform: uppercase; color: #d4a843; margin-bottom: 0.3rem; }
.map-popup-title { font-family: 'Cormorant Garamond', serif; font-size: 1.1rem; color: #f0ece0; line-height: 1.3; margin-bottom: 0.4rem; }
.map-popup-desc { font-size: 0.78rem; color: #8aab90; line-height: 1.6; }
.map-popup-meta { margin-top: 0.6rem; font-size: 0.68rem; color: #d4a843; letter-spacing: 0.05em; }
.leaflet-tile { }
.leaflet-control-zoom a { background: #111a14 !important; color: #d4a843 !important; border-color: rgba(212,168,67,0.2) !important; }
.leaflet-control-zoom a:hover { background: #162019 !important; }
.leaflet-control-attribution { background: rgba(13,20,16,0.8) !important; color: #4a7558 !important; }
.leaflet-control-attribution a { color: #6a9275 !important; }

/* ─── INSOLITE STRIP ─── */
.insolite-strip { background: #080f0a; padding: 5rem 5%; overflow: hidden; }
.insolite-strip-title { font-family: 'Cormorant Garamond', serif; font-size: clamp(1.5rem, 3vw, 2.5rem); font-weight: 300; color: #f0ece0; margin-bottom: 2.5rem; text-align: center; }
.insolite-strip-title em { color: #d4a843; font-style: italic; }
.insolite-scroll { display: flex; gap: 1.5rem; overflow-x: auto; padding-bottom: 1rem; scrollbar-width: thin; scrollbar-color: #d4a843 #111a14; -webkit-overflow-scrolling: touch; }
.insolite-scroll::-webkit-scrollbar { height: 3px; }
.insolite-scroll::-webkit-scrollbar-track { background: #111a14; }
.insolite-scroll::-webkit-scrollbar-thumb { background: #d4a843; }
.insolite-item { flex-shrink: 0; width: 280px; position: relative; overflow: hidden; }
.insolite-item img { width: 280px; height: 360px; object-fit: cover; display: block; filter: sepia(20%) contrast(1.05) brightness(0.85); transition: filter 0.4s, transform 0.5s; }
.insolite-item:hover img { filter: sepia(5%) contrast(1.1) brightness(1); transform: scale(1.03); }
.insolite-item-label { position: absolute; bottom: 0; left: 0; right: 0; background: linear-gradient(to top, rgba(15,26,18,0.92), transparent); padding: 2rem 1rem 1rem; font-family: 'Cormorant Garamond', serif; font-size: 1rem; color: #f0ece0; line-height: 1.3; }
.insolite-item-tag { font-family: 'Josefin Sans', sans-serif; font-size: 0.58rem; letter-spacing: 0.2em; text-transform: uppercase; color: #d4a843; margin-bottom: 0.3rem; }

/* ─── CALENDRIER DES DISPONIBILITÉS ─── */
#calendrier {
  background: #080f0a;
  padding: 7rem 5%;
  position: relative;
  z-index: 1;
}
.cal-header { margin-bottom: 3rem; }
.cal-intro {
  font-size: .92rem;
  color: #8aab90;
  line-height: 1.8;
  max-width: 560px;
  margin-top: .75rem;
}
.cal-wrapper {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: start;
}
@media (max-width: 768px) {
  .cal-wrapper { grid-template-columns: 1fr; gap: 2rem; }
}
.cal-embed-box {
  border: 1px solid rgba(212,168,67,0.2);
  overflow: hidden;
  background: #111a14;
  position: relative;
}
.cal-embed-box iframe {
  display: block;
  width: 100%;
  height: 480px;
  border: none;
  filter: invert(1) hue-rotate(155deg) brightness(0.85) saturate(0.7);
}
.cal-embed-label {
  font-size: .58rem;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: #6a9275;
  padding: .5rem 1rem;
  border-top: 1px solid rgba(212,168,67,0.1);
  text-align: center;
}
.cal-booking-panel {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}
.cal-booking-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.6rem;
  font-weight: 300;
  color: #f0ece0;
  line-height: 1.3;
}
.cal-booking-title em { color: #d4a843; font-style: italic; }
.cal-step {
  display: flex;
  gap: 1.2rem;
  align-items: flex-start;
  padding: 1.2rem;
  background: rgba(22,32,25,0.6);
  border: 1px solid rgba(212,168,67,0.1);
  transition: border-color .25s;
}
.cal-step:hover { border-color: rgba(212,168,67,0.3); }
.cal-step-num {
  width: 32px;
  height: 32px;
  background: #d4a843;
  color: #0d1410;
  font-family: 'Rubik', sans-serif;
  font-weight: 700;
  font-size: .8rem;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.cal-step-text strong {
  display: block;
  font-size: .7rem;
  letter-spacing: .15em;
  text-transform: uppercase;
  color: #f0ece0;
  margin-bottom: .3rem;
}
.cal-step-text span {
  font-size: .82rem;
  color: #8aab90;
  line-height: 1.6;
}
.cal-date-picker-row {
  display: flex;
  flex-direction: column;
  gap: .6rem;
}
.cal-date-label {
  font-size: .65rem;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: #d4a843;
}
.cal-date-input {
  background: rgba(13,20,16,0.8);
  border: 1px solid rgba(212,168,67,0.2);
  color: #f0ece0;
  padding: .75rem 1rem;
  font-family: 'Josefin Sans', sans-serif;
  font-size: .9rem;
  outline: none;
  width: 100%;
  -webkit-appearance: none;
  transition: border-color .25s;
  color-scheme: dark;
}
.cal-date-input:focus { border-color: rgba(212,168,67,0.5); }
.cal-gcal-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: .6rem;
  background: rgba(212,168,67,0.1);
  border: 1px solid rgba(212,168,67,0.35);
  color: #d4a843;
  padding: .85rem 1.4rem;
  font-family: 'Rubik', sans-serif;
  font-size: .68rem;
  letter-spacing: .18em;
  text-transform: uppercase;
  font-weight: 600;
  cursor: pointer;
  text-decoration: none;
  transition: all .25s;
  width: 100%;
  text-align: center;
}
.cal-gcal-btn:hover {
  background: rgba(212,168,67,0.2);
  border-color: rgba(212,168,67,0.6);
  transform: translateY(-1px);
}
.cal-gcal-btn svg { width: 18px; height: 18px; flex-shrink: 0; }
.cal-or-divider {
  display: flex;
  align-items: center;
  gap: 1rem;
  font-size: .62rem;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: #4a7558;
}
.cal-or-divider::before,
.cal-or-divider::after {
  content: '';
  flex: 1;
  height: 1px;
  background: rgba(212,168,67,0.1);
}
.cal-formspree-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: .6rem;
  background: #d4a843;
  border: 1px solid #d4b85a;
  color: #0d1410;
  padding: .9rem 1.4rem;
  font-family: 'Rubik', sans-serif;
  font-size: .68rem;
  letter-spacing: .18em;
  text-transform: uppercase;
  font-weight: 700;
  cursor: pointer;
  transition: all .25s;
  width: 100%;
  text-decoration: none;
  text-align: center;
}
.cal-formspree-btn:hover { background: #d4b85a; transform: translateY(-1px); }
.cal-note {
  font-size: .72rem;
  color: #4a7558;
  font-style: italic;
  line-height: 1.6;
  text-align: center;
}

#contact { background: #111a14; display: grid; grid-template-columns: 1fr 1fr; gap: 6rem; align-items: start; }
.contact-left { padding-top: 1rem; }
.contact-info-item { display: flex; align-items: flex-start; gap: 1.5rem; margin-bottom: 2rem; padding-bottom: 2rem; border-bottom: 1px solid rgba(212,168,67,0.1); }
.contact-info-item:last-child { border-bottom: none; }
.contact-info-icon { font-size: 1.5rem; padding-top: 0.1rem; }
.contact-info-label { font-size: 0.65rem; letter-spacing: 0.2em; text-transform: uppercase; color: #d4a843; margin-bottom: 0.4rem; }
.contact-info-value { font-family: 'Cormorant Garamond', serif; font-size: 1.1rem; color: #f0ece0; }
.contact-info-value a { color: inherit; text-decoration: none; transition: color 0.2s; }
.contact-info-value a:hover { color: #d4a843; }
.contact-cta-call { display: flex; align-items: center; gap: 1rem; background: #d4a843; padding: 1.2rem 1.8rem; text-decoration: none; margin-top: 2rem; border: 1px solid #d4b85a; transition: all 0.25s; width: fit-content; }
.contact-cta-call:hover { background: #d4b85a; transform: translateY(-2px); box-shadow: 0 8px 24px rgba(0,0,0,0.4); }
.contact-cta-call-icon { font-size: 1.4rem; }
.contact-cta-call-text strong { display: block; font-size: 0.75rem; letter-spacing: 0.15em; text-transform: uppercase; margin-bottom: 0.2rem; color: #0d1410; }
.contact-cta-call-text span { font-family: 'Cormorant Garamond', serif; font-size: 1.4rem; letter-spacing: 0.05em; color: #0d1410; }
/* Réseaux sociaux */
.contact-social { margin-top: 2.5rem; padding-top: 1.5rem; border-top: 1px solid rgba(212,168,67,0.1); }
.contact-social-label { font-size: 0.62rem; letter-spacing: 0.25em; text-transform: uppercase; color: #6a9275; margin-bottom: 1rem; }
.social-links { display: flex; gap: 0.8rem; flex-wrap: wrap; }
.social-link { display: flex; align-items: center; gap: 0.5rem; padding: 0.5rem 0.9rem; border: 1px solid rgba(212,168,67,0.2); font-size: 0.65rem; letter-spacing: 0.15em; text-transform: uppercase; color: #8aab90; text-decoration: none; transition: all 0.2s; }
.social-link:hover { border-color: rgba(212,168,67,0.5); color: #d4a843; }

/* ─── FORM ─── */
.contact-form-title { font-family: 'Cormorant Garamond', serif; font-size: 1.6rem; font-weight: 300; color: #f0ece0; margin-bottom: 2rem; }
.contact-form-title em { font-style: italic; color: #d4a843; }
.form-group { margin-bottom: 1.4rem; }
.form-label { display: block; font-size: 0.65rem; letter-spacing: 0.25em; text-transform: uppercase; color: #d4a843; margin-bottom: 0.5rem; }
.form-input, .form-textarea { width: 100%; background: rgba(13,20,16,0.8); border: 1px solid rgba(212,168,67,0.15); color: #f0ece0; padding: 0.85rem 1rem; font-family: 'Josefin Sans', sans-serif; font-size: 0.88rem; transition: border-color 0.25s; outline: none; -webkit-appearance: none; }
.form-input:focus, .form-textarea:focus { border-color: rgba(212,168,67,0.5); background: rgba(22,32,25,0.6); }
.form-input::placeholder, .form-textarea::placeholder { color: rgba(138,171,144,0.4); }
.form-textarea { resize: vertical; min-height: 130px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.form-submit { width: 100%; padding: 1rem; background: #d4a843; border: 1px solid #d4b85a; color: #0d1410; font-family: 'Josefin Sans', sans-serif; font-size: 0.75rem; letter-spacing: 0.25em; text-transform: uppercase; cursor: pointer; transition: all 0.25s; margin-top: 0.5rem; font-weight: 600; }
.form-submit:hover { background: #d4b85a; transform: translateY(-1px); }

/* ─── NEWSLETTER BANNER (inspiré Ardèche Guide) ─── */
.newsletter-bar { background: #1a2a1c; border-top: 1px solid rgba(212,168,67,0.15); border-bottom: 1px solid rgba(212,168,67,0.15); padding: 2rem 5%; display: flex; align-items: center; justify-content: space-between; gap: 2rem; flex-wrap: wrap; }
.newsletter-label { font-family: 'Cormorant Garamond', serif; font-size: 1.2rem; color: #f0ece0; }
.newsletter-label span { color: #d4a843; font-style: italic; }
.newsletter-form { display: flex; gap: 0; flex: 1; max-width: 420px; }
.newsletter-input { flex: 1; background: rgba(13,20,16,0.8); border: 1px solid rgba(212,168,67,0.2); border-right: none; color: #f0ece0; padding: 0.7rem 1rem; font-family: 'Josefin Sans', sans-serif; font-size: 0.82rem; outline: none; }
.newsletter-input::placeholder { color: rgba(138,171,144,0.4); }
.newsletter-input:focus { border-color: rgba(212,168,67,0.5); }
.newsletter-btn { background: #d4a843; color: #0d1410; border: 1px solid #d4b85a; padding: 0.7rem 1.4rem; font-size: 0.65rem; letter-spacing: 0.2em; text-transform: uppercase; cursor: pointer; font-weight: 600; transition: background .2s; font-family: 'Josefin Sans', sans-serif; }
.newsletter-btn:hover { background: #d4b85a; }

/* ─── MENTIONS ─── */
#mentions { background: #111a14; border-top: 1px solid rgba(212,168,67,0.1); padding: 5rem 5%; }
.mentions-title { font-family: 'Cormorant Garamond', serif; font-size: 1.5rem; font-weight: 300; color: #f0ece0; margin-bottom: 1.5rem; }
.mentions-text { font-size: 0.82rem; color: #8aab90; line-height: 1.9; max-width: 800px; }
.mentions-text strong { color: #f0ece0; }

/* ─── FOOTER ─── */
footer { background: #080f0a; border-top: 1px solid rgba(212,168,67,0.15); padding: 3rem 5%; }
.footer-top { display: flex; justify-content: space-between; align-items: flex-start; flex-wrap: wrap; gap: 2rem; margin-bottom: 2rem; padding-bottom: 2rem; border-bottom: 1px solid rgba(212,168,67,0.08); }
.footer-logo { font-family: 'Cormorant Garamond', serif; font-style: italic; font-size: 1.1rem; color: #d4a843; display: block; margin-bottom: 0.4rem; }
.footer-logo-sub { font-size: 0.62rem; letter-spacing: 0.2em; text-transform: uppercase; color: #6a9275; }
.footer-links { display: flex; gap: 2rem; list-style: none; }
.footer-links a { font-size: 0.7rem; letter-spacing: 0.15em; text-transform: uppercase; color: rgba(240,236,224,0.4); text-decoration: none; transition: color 0.2s; }
.footer-links a:hover { color: #d4a843; }
.footer-bottom { display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 1rem; }
.footer-copy { font-size: 0.7rem; color: rgba(240,236,224,0.35); letter-spacing: 0.1em; }
.footer-eco { font-size: 0.62rem; letter-spacing: 0.15em; text-transform: uppercase; color: #6a9275; display: flex; align-items: center; gap: 0.4rem; }

/* ─── FAVORIS PANEL (inspiré carnet de voyage Ardèche Guide) ─── */
.fav-panel { position: fixed; right: -340px; top: 0; bottom: 0; width: 320px; background: #111a14; border-left: 1px solid rgba(212,168,67,0.2); z-index: 300; transition: right 0.35s ease; padding: 5rem 1.5rem 2rem; overflow-y: auto; }
.fav-panel.open { right: 0; }
.fav-panel-title { font-family: 'Cormorant Garamond', serif; font-size: 1.4rem; color: #f0ece0; margin-bottom: 0.3rem; }
.fav-panel-sub { font-size: 0.65rem; letter-spacing: 0.2em; text-transform: uppercase; color: #6a9275; margin-bottom: 1.5rem; }
.fav-close-btn { position: absolute; top: 1.5rem; right: 1.5rem; background: none; border: 1px solid rgba(212,168,67,0.2); color: #d4a843; width: 32px; height: 32px; cursor: pointer; font-size: 1rem; }
.fav-empty { color: #6a9275; font-size: 0.82rem; line-height: 1.7; font-style: italic; }
.fav-list { display: flex; flex-direction: column; gap: 0.8rem; }
.fav-list-item { background: #162019; border: 1px solid rgba(212,168,67,0.1); padding: 0.9rem 1rem; display: flex; justify-content: space-between; align-items: center; }
.fav-list-item-name { font-size: 0.82rem; color: #f0ece0; }
.fav-list-item-rm { background: none; border: none; color: #6a9275; cursor: pointer; font-size: 0.9rem; }
.fav-list-item-rm:hover { color: #d4a843; }
.fav-panel-cta { margin-top: 2rem; width: 100%; padding: 0.9rem; background: #d4a843; border: none; color: #0d1410; font-family: 'Josefin Sans', sans-serif; font-size: 0.7rem; letter-spacing: 0.2em; text-transform: uppercase; cursor: pointer; font-weight: 600; transition: background .2s; }
.fav-panel-cta:hover { background: #d4b85a; }

/* ─── REVEAL ANIMATION ─── */
[data-reveal] { opacity: 0; transform: translateY(24px); transition: opacity 0.7s ease, transform 0.7s ease; }
[data-reveal].visible { opacity: 1; transform: translateY(0); }

/* ─── MOTEUR DE RÉSERVATION ─── */
.formule-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: rgba(212,168,67,0.08);
  border: 1px solid rgba(212,168,67,0.08);
  margin-top: 2rem;
  margin-bottom: 2.5rem;
}
.formule-card {
  background: #0d1410;
  padding: 1.75rem 1.25rem;
  text-align: center;
  cursor: pointer;
  transition: background 0.25s, border-color 0.25s;
  position: relative;
  border: 2px solid transparent;
}
.formule-card:hover { background: #162019; }
.formule-card.active {
  background: #162019;
  border-color: #d4a843;
}
.formule-badge-best {
  position: absolute;
  top: -10px;
  left: 50%;
  transform: translateX(-50%);
  background: #d4a843;
  color: #0d1410;
  font-size: 0.55rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  padding: 0.2rem 0.6rem;
  white-space: nowrap;
}
.formule-icon { font-size: 2rem; margin-bottom: 0.6rem; }
.formule-name {
  font-size: 0.68rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: #8aab90;
  margin-bottom: 0.5rem;
}
.formule-card.active .formule-name { color: #d4a843; }
.formule-prix {
  font-family: 'Cormorant Garamond', serif;
  font-size: 2.2rem;
  font-weight: 300;
  color: #f0ece0;
  line-height: 1;
}
.formule-prix span { font-size: 0.85rem; color: #8aab90; font-family: 'Josefin Sans', sans-serif; }
.formule-prix-old {
  font-size: 0.75rem;
  color: #4a7558;
  text-decoration: line-through;
  margin-top: 0.2rem;
}

/* Formulaire réservation */
.resa-form {
  background: rgba(22,32,25,0.6);
  border: 1px solid rgba(212,168,67,0.12);
  padding: 2rem;
  max-width: 860px;
}
.resa-fields {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 1rem;
}
.resa-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.resa-field-group { display: flex; flex-direction: column; gap: 0.4rem; }
.resa-label {
  font-size: 0.62rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: #d4a843;
}
.resa-input {
  background: rgba(13,20,16,0.8);
  border: 1px solid rgba(212,168,67,0.15);
  color: #f0ece0;
  padding: 0.8rem 1rem;
  font-family: 'Josefin Sans', sans-serif;
  font-size: 0.88rem;
  outline: none;
  width: 100%;
  transition: border-color 0.2s;
  -webkit-appearance: none;
  appearance: none;
}
.resa-input:focus { border-color: rgba(212,168,67,0.5); background: rgba(22,32,25,0.6); }
.resa-input::placeholder { color: rgba(138,171,144,0.4); }
select.resa-input { cursor: pointer; }
.resa-textarea { resize: vertical; min-height: 90px; }
.resa-formule-recap {
  margin-top: 1.25rem;
  font-size: 0.78rem;
  color: #8aab90;
  padding: 0.75rem 1rem;
  border-left: 3px solid #d4a843;
  background: rgba(212,168,67,0.05);
}
.resa-formule-recap strong { color: #d4a843; }
.resa-submit {
  width: 100%;
  margin-top: 1.25rem;
  padding: 1.1rem;
  background: #d4a843;
  border: 1px solid #d4b85a;
  color: #0d1410;
  font-family: 'Josefin Sans', sans-serif;
  font-size: 0.78rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  cursor: pointer;
  font-weight: 700;
  transition: all 0.2s;
}
.resa-submit:hover { background: #d4b85a; transform: translateY(-1px); }
.resa-submit:disabled { opacity: 0.6; cursor: not-allowed; transform: none; }
.resa-note {
  margin-top: 0.75rem;
  font-size: 0.7rem;
  color: #6a9275;
  text-align: center;
  line-height: 1.6;
}
.resa-success {
  display: none;
  margin-top: 1rem;
  padding: 1rem;
  background: rgba(74,117,88,0.2);
  border: 1px solid rgba(74,117,88,0.4);
  color: #8aab90;
  font-size: 0.82rem;
  text-align: center;
}

/* Responsive moteur de résa */
@media (max-width: 768px) {
  .formule-grid { grid-template-columns: 1fr 1fr; gap: 1px; }
  .formule-card { padding: 1.25rem 0.75rem; }
  .formule-prix { font-size: 1.7rem; }
  .resa-form { padding: 1.25rem; }
  .resa-fields { grid-template-columns: 1fr; }
  .resa-row { grid-template-columns: 1fr; }
}

/* ─── HAMBURGER MENU ─── */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  background: none;
  border: none;
  padding: 4px;
  z-index: 110;
}
.hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: #d4a843;
  transition: all 0.3s;
  transform-origin: center;
}
.hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Menu mobile overlay */
.mobile-menu {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(13,20,16,0.98);
  z-index: 105;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0;
  padding-top: 4rem;
}
.mobile-menu.open { display: flex; }
.mobile-menu a {
  font-family: 'Rubik', sans-serif;
  font-size: 1.6rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: #f0ece0;
  text-decoration: none;
  padding: 0.9rem 2rem;
  width: 100%;
  text-align: center;
  border-bottom: 1px solid rgba(212,168,67,0.08);
  transition: color 0.2s;
}
.mobile-menu a:first-child { border-top: 1px solid rgba(212,168,67,0.08); }
.mobile-menu a:hover, .mobile-menu a:active { color: #d4a843; }
.mobile-menu-cta {
  margin-top: 1.5rem;
  background: #d4a843 !important;
  color: #0d1410 !important;
  font-family: 'Rubik', sans-serif !important;
  font-size: 0.85rem !important;
  font-weight: 700 !important;
  letter-spacing: 0.2em !important;
  text-transform: uppercase;
  border-bottom: none !important;
  padding: 1rem 2rem !important;
  width: auto !important;
}

/* ─── RESPONSIVE MOBILE ─── */
@media (max-width: 768px) {
  /* Éco banner */
  .eco-banner { padding: 0.4rem 4%; gap: 0.5rem; }
  .eco-banner span:nth-child(2) { display: none; }

  /* Nav */
  nav { padding: 0.85rem 4%; top: 28px; }
  nav.eco-hidden { top: 0; }
  .nav-links { display: none; }
  .nav-favorites { display: none; }
  .nav-cta { display: none; }
  .hamburger { display: flex; }

  /* Hero */
  .hero { min-height: 92vh; }
  .hero-content { padding: 7rem 4% 4rem; gap: 1.5rem; }
  .hero-title { font-size: clamp(2.6rem, 15vw, 4.5rem); }
  .hero-bottom-row { grid-template-columns: 1fr; gap: 1.5rem; }
  .hero-sub { font-size: 0.95rem; max-width: 100%; }
  .hero-cta-group { flex-direction: column; align-items: stretch; gap: 1rem; }
  .hero-cta { width: 100%; height: 60px; }
  .hero-cta-secondary { margin-left: 0; justify-content: center; width: 100%; }
  .hero-tags { display: none; }
  .hero-side-line { display: none; }
  .hero-eyebrow { font-size: 0.62rem; }

  /* Sections */
  .section { padding: 4rem 4%; }

  /* About */
  #about { grid-template-columns: 1fr; gap: 2.5rem; padding: 4rem 4%; }
  .about-image-frame { aspect-ratio: 3/2; }
  .about-badge { right: 0.5rem; bottom: 1rem; }

  /* Avis */
  #avis { padding: 4rem 4%; }
  .avis-grid { grid-template-columns: 1fr; }

  /* Ambiances */
  #ambiances { padding: 4rem 4%; }
  .ambiances-grid { grid-template-columns: 1fr; gap: 1px; }
  .ambiance-card { height: 220px; }

  /* Places */
  #places { padding: 4rem 4%; }
  .places-grid { display: flex; flex-direction: column; gap: 1rem; }
  .place-card { height: 240px !important; }
  .place-card:nth-child(1) .place-card-name { font-size: 1.3rem; }

  /* Services */
  #services { padding: 4rem 4%; }
  .services-header { flex-direction: column; align-items: flex-start; margin-bottom: 2rem; }
  .services-grid { grid-template-columns: 1fr; }
  .service-item { padding: 1.75rem 1.25rem; }

  /* Circuits */
  #circuits { padding: 4rem 4%; }
  .circuits-grid { grid-template-columns: 1fr; }
  .circuit-img { height: 180px; }

  /* Agenda */
  #agenda { padding: 4rem 4%; }
  .agenda-tabs { overflow-x: auto; flex-wrap: nowrap; }
  .agenda-tab { flex-shrink: 0; font-size: 0.58rem; padding: 0.6rem 0.8rem; }
  .agenda-grid { grid-template-columns: 1fr; }

  /* Map */
  #map-section { padding: 4rem 4%; }
  #trail-map { height: 360px; }
  .map-legend { gap: 0.8rem; }
  .map-legend-item { font-size: 0.62rem; }

  /* Insolite strip */
  .insolite-strip { padding: 3rem 4%; }
  .insolite-item { width: 220px; }
  .insolite-item img { width: 220px; height: 280px; }

  /* Pass */
  #pass { padding: 4rem 4%; }
  .pass-inner { grid-template-columns: 1fr; gap: 2rem; }
  .pass-card { padding: 1.75rem; }

  /* Pricing */
  #pricing { padding: 4rem 4%; }
  .pricing-grid { grid-template-columns: 1fr; }
  .launch-banner { font-size: 0.6rem; letter-spacing: 0.1em; }

  /* Newsletter */
  .newsletter-bar { flex-direction: column; align-items: flex-start; padding: 1.5rem 4%; gap: 1rem; }
  .newsletter-form { width: 100%; max-width: 100%; }

  /* Contact */
  #contact { grid-template-columns: 1fr; gap: 2.5rem; padding: 4rem 4%; }
  .contact-cta-call { width: 100%; }
  .form-row { grid-template-columns: 1fr; }

  /* Favoris panel */
  .fav-panel { width: 100%; right: -100%; }
  .fav-panel.open { right: 0; }

  /* Footer */
  footer { padding: 2rem 4%; }
  .footer-top { flex-direction: column; gap: 1.5rem; }
  .footer-links { flex-wrap: wrap; gap: 0.8rem; }
  .footer-bottom { flex-direction: column; align-items: flex-start; gap: 0.5rem; }

  /* Mentions */
  #mentions { padding: 3rem 4%; }

  /* CTA fixe en bas sur mobile */
  .mobile-sticky-cta {
    display: flex;
    position: fixed;
    bottom: 0; left: 0; right: 0;
    z-index: 99;
    box-shadow: 0 -4px 20px rgba(0,0,0,0.5);
  }
  .mobile-sticky-cta a {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.4rem;
    padding: 1rem;
    font-size: 0.72rem;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    font-weight: 600;
    text-decoration: none;
    font-family: 'Josefin Sans', sans-serif;
  }
  .mobile-sticky-cta .cta-call { background: #d4a843; color: #0d1410; }
  .mobile-sticky-cta .cta-email { background: #162019; color: #d4a843; border-top: 1px solid rgba(212,168,67,0.2); }

  /* Espace pour le sticky CTA */
  footer { padding-bottom: 5rem; }
}

/* Tablet intermédiaire */
@media (min-width: 769px) and (max-width: 1024px) {
  .mobile-sticky-cta { display: none; }
  .hamburger { display: none; }
  nav { padding: 1rem 4%; }
  .nav-links { gap: 1.2rem; }
  .nav-links a { font-size: 0.62rem; }
  .section { padding: 5rem 4%; }
  #about { gap: 3rem; }
  .about-badge { right: -0.5rem; }
  .ambiances-grid { grid-template-columns: 1fr 1fr; }
  .pass-inner { grid-template-columns: 1fr 1fr; gap: 2.5rem; }
  .hero-bottom-row { grid-template-columns: 1fr; gap: 2rem; }
  .hero-cta-group { justify-content: flex-start; }
}

/* Desktop : pas de sticky CTA */
@media (min-width: 769px) {
  .mobile-sticky-cta { display: none; }
}

/* ─── DROPDOWN PRESTATIONS & TARIFS ─── */
.nav-dropdown { position: relative; }
.nav-dropdown > a {
  display: flex; align-items: center; gap: 0.3rem;
  cursor: pointer;
}
.nav-dropdown > a .drop-arrow {
  font-size: 0.5rem; opacity: 0.6; transition: transform 0.2s; display: inline-block;
}
.nav-dropdown:hover > a .drop-arrow { transform: rotate(180deg); }

.nav-dropdown-menu {
  position: absolute;
  top: calc(100% + 14px);
  left: 50%;
  transform: translateX(-50%) translateY(-4px);
  background: #0d1410;
  border: 1px solid rgba(212,168,67,0.22);
  min-width: 220px;
  box-shadow: 0 16px 48px rgba(0,0,0,0.7);
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.18s ease, transform 0.18s ease, visibility 0.18s;
  z-index: 300;
}
.nav-dropdown:hover .nav-dropdown-menu {
  opacity: 1; visibility: visible;
  transform: translateX(-50%) translateY(0);
}
.nav-dropdown-menu::before {
  content: '';
  position: absolute;
  top: -6px; left: 50%; transform: translateX(-50%);
  border-left: 6px solid transparent;
  border-right: 6px solid transparent;
  border-bottom: 6px solid rgba(212,168,67,0.22);
}
.nav-dropdown-sep {
  display: block;
  font-size: 0.5rem; letter-spacing: 0.28em; text-transform: uppercase;
  color: rgba(212,168,67,0.5); padding: 0.6rem 1.1rem 0.25rem;
  pointer-events: none; font-family: 'Rubik', sans-serif;
}
.nav-dropdown-menu a {
  display: block !important;
  padding: 0.65rem 1.1rem !important;
  color: #8aab90 !important;
  font-size: 0.6rem !important;
  letter-spacing: 0.12em !important;
  text-transform: uppercase !important;
  border-bottom: 1px solid rgba(212,168,67,0.06) !important;
  transition: background 0.15s, color 0.15s !important;
  white-space: nowrap;
  font-family: 'Rubik', sans-serif;
}
.nav-dropdown-menu a:last-child { border-bottom: none !important; }
.nav-dropdown-menu a:hover {
  background: rgba(212,168,67,0.07) !important;
  color: #d4a843 !important;
}

/* ─── BOUTON FLOTTANT WHATSAPP ─── */
.whatsapp-float {
  position: fixed;
  bottom: 22px;
  right: 22px;
  z-index: 150;
  display: flex;
  align-items: center;
  gap: 0.6rem;
  background: #25D366;
  color: #fff;
  text-decoration: none;
  padding: 0.7rem 1rem 0.7rem 0.65rem;
  border-radius: 50px;
  box-shadow: 0 4px 18px rgba(0,0,0,0.45);
  transition: transform 0.2s, box-shadow 0.2s;
  font-family: 'Rubik', sans-serif;
  font-weight: 500;
  font-size: 0.78rem;
  letter-spacing: 0.02em;
}
.whatsapp-float:hover { transform: translateY(-2px) scale(1.03); box-shadow: 0 6px 22px rgba(0,0,0,0.55); }
.whatsapp-float svg { width: 26px; height: 26px; flex-shrink: 0; }
.whatsapp-float-text { white-space: nowrap; }
@media (max-width: 600px) {
  .whatsapp-float { bottom: 16px; right: 16px; padding: 0.65rem; }
  .whatsapp-float-text { display: none; }
}

/* ══════════════════════════════════════════════════
   GABARIT FICHE RANDONNÉE / VILLAGE / CASCADE / PRODUCTEUR
   Styles partagés par les futures pages individuelles
   ══════════════════════════════════════════════════ */
.fiche-breadcrumb { padding: 7rem 5% 0; font-size: 0.65rem; letter-spacing: 0.15em; text-transform: uppercase; color: #6a9275; }
.fiche-breadcrumb a { color: #8aab90; text-decoration: none; transition: color .2s; }
.fiche-breadcrumb a:hover { color: #d4a843; }

.fiche-hero { padding: 1.5rem 5% 3rem; }
.fiche-hero-img { width: 100%; height: 420px; object-fit: cover; filter: sepia(15%) contrast(1.05) brightness(0.9); margin-top: 1.5rem; }
.fiche-title { font-family: 'Cormorant Garamond', serif; font-weight: 300; font-size: clamp(2.2rem, 5vw, 4rem); color: #f0ece0; line-height: 1.1; margin-bottom: 1rem; }
.fiche-title em { font-style: italic; color: #d4a843; }
.fiche-tagline { font-size: 1rem; color: #8aab90; line-height: 1.7; max-width: 640px; margin-bottom: 1.5rem; }

.fiche-meta-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(140px, 1fr)); gap: 1px; background: rgba(212,168,67,0.08); border: 1px solid rgba(212,168,67,0.08); margin: 2rem 0; }
.fiche-meta-item { background: #111a14; padding: 1.25rem 1rem; text-align: center; }
.fiche-meta-icon { font-size: 1.4rem; margin-bottom: 0.4rem; }
.fiche-meta-label { font-size: 0.58rem; letter-spacing: 0.2em; text-transform: uppercase; color: #6a9275; margin-bottom: 0.3rem; }
.fiche-meta-value { font-family: 'Cormorant Garamond', serif; font-size: 1.15rem; color: #f0ece0; }

.fiche-body { padding: 2rem 5% 5rem; display: grid; grid-template-columns: 2fr 1fr; gap: 4rem; align-items: start; }
.fiche-content p { color: #8aab90; line-height: 1.85; font-size: 0.95rem; margin-bottom: 1.2rem; }
.fiche-content h2 { font-family: 'Cormorant Garamond', serif; font-size: 1.6rem; color: #f0ece0; margin: 2rem 0 1rem; font-weight: 300; }
.fiche-content h2 em { color: #d4a843; font-style: italic; }

.fiche-sidebar { display: flex; flex-direction: column; gap: 1.5rem; position: sticky; top: 7rem; }
.fiche-cta-box { background: linear-gradient(135deg,#1a2a1c,#162019); border: 1px solid rgba(212,168,67,0.3); padding: 1.75rem; }
.fiche-cta-box-title { font-family: 'Cormorant Garamond', serif; font-size: 1.3rem; color: #f0ece0; margin-bottom: 0.5rem; }
.fiche-cta-box p { font-size: 0.82rem; color: #8aab90; line-height: 1.7; margin-bottom: 1.25rem; }

.fiche-gallery { display: grid; grid-template-columns: repeat(3, 1fr); gap: 0.5rem; margin: 1.5rem 0; }
.fiche-gallery img { width: 100%; height: 140px; object-fit: cover; filter: sepia(15%) contrast(1.05) brightness(0.9); }

.fiche-list-coming { display: grid; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); gap: 1.5rem; margin-top: 3rem; }
.fiche-coming-card { background: rgba(22,32,25,0.6); border: 1px solid rgba(212,168,67,0.12); padding: 2rem; text-align: center; }
.fiche-coming-card-icon { font-size: 2.2rem; margin-bottom: 1rem; opacity: 0.7; }
.fiche-coming-card h3 { font-family: 'Cormorant Garamond', serif; font-size: 1.2rem; color: #f0ece0; margin-bottom: 0.5rem; }
.fiche-coming-card p { font-size: 0.82rem; color: #8aab90; line-height: 1.7; }

@media (max-width: 768px) {
  .fiche-breadcrumb { padding: 6rem 4% 0; }
  .fiche-hero { padding: 1rem 4% 2rem; }
  .fiche-hero-img { height: 240px; }
  .fiche-body { grid-template-columns: 1fr; padding: 1.5rem 4% 3rem; gap: 2rem; }
  .fiche-sidebar { position: static; }
  .fiche-gallery { grid-template-columns: repeat(2, 1fr); }
}
