/* =============================================
   LES PÉTILLIÈRES — CSS Principal
   Palette : Ivoire chaud · Terre · Vert Dombes · Or
   ============================================= */

:root {
  --ivoire: #F8F4EE;
  --ivoire-dark: #EFE9DF;
  --terre: #8B6F55;
  --terre-light: #C4A882;
  --terre-dark: #5C4535;
  --vert: #4A6741;
  --vert-light: #7A9B73;
  --or: #C8973A;
  --or-light: #E8B96A;
  --noir: #1C1814;
  --gris: #4A3828;
  --blanc: #FFFFFF;

  --font-display: 'Playfair Display', Georgia, serif;
  --font-body: 'Jost', sans-serif;

  --radius: 4px;
  --radius-lg: 12px;
  --shadow: 0 4px 24px rgba(28,24,20,0.10);
  --shadow-lg: 0 12px 48px rgba(28,24,20,0.16);

  --max-width: 1200px;
  --nav-h: 72px;
}

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

/* TYPOGRAPHY */
h1, h2, h3, h4 {
  font-family: var(--font-display);
  line-height: 1.2;
  font-weight: 600;
}
h1 { font-size: clamp(2.4rem, 5vw, 4rem); }
h2 { font-size: clamp(1.8rem, 3vw, 2.8rem); }
h3 { font-size: clamp(1.2rem, 2vw, 1.6rem); }

em { font-style: italic; color: var(--or); }

.label {
  display: inline-block;
  font-family: var(--font-body);
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--terre);
  margin-bottom: 0.75rem;
}

/* LAYOUT */
.container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 clamp(1.5rem, 5vw, 3rem);
}

.section-title {
  margin-bottom: 3rem;
}
.section-title.centered { text-align: center; }

/* BUTTONS */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.85rem 2rem;
  border-radius: var(--radius);
  font-family: var(--font-body);
  font-size: 0.9rem;
  font-weight: 500;
  letter-spacing: 0.04em;
  transition: all 0.25s ease;
  cursor: pointer;
  border: none;
}
.btn-primary {
  background: var(--terre);
  color: var(--blanc);
}
.btn-primary:hover { background: var(--terre-dark); transform: translateY(-2px); box-shadow: var(--shadow); }

.btn-outline {
  background: transparent;
  color: var(--terre);
  border: 1.5px solid var(--terre);
}
.btn-outline:hover { background: var(--terre); color: var(--blanc); }

.btn-ghost {
  background: rgba(255,255,255,0.15);
  color: var(--blanc);
  border: 1.5px solid rgba(255,255,255,0.5);
  backdrop-filter: blur(4px);
}
.btn-ghost:hover { background: rgba(255,255,255,0.25); }

.btn-lg { padding: 1rem 2.5rem; font-size: 1rem; }
.btn-sm { padding: 0.6rem 1.25rem; font-size: 0.82rem; }

.link-arrow {
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--terre);
  letter-spacing: 0.02em;
  transition: color 0.2s;
}
.link-arrow:hover { color: var(--terre-dark); }

/* PHOTO PLACEHOLDERS (à remplacer par vraies images) */
.photo-placeholder {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: flex-end;
  justify-content: flex-start;
  padding: 1rem;
  background-size: cover;
  background-position: center;
  position: relative;
}
.photo-placeholder span {
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.8);
  background: rgba(0,0,0,0.35);
  padding: 0.3rem 0.6rem;
  border-radius: 2px;
  backdrop-filter: blur(2px);
}

.photo-salon { background-color: #7B6050; background-image: linear-gradient(135deg, #5C4535 0%, #8B7055 50%, #C4A882 100%); }
.photo-chambre { background-color: #9B8060; background-image: linear-gradient(135deg, #8B6F55 0%, #B8956A 100%); }
.ph-jacuzzi { background-color: #2C3E50; background-image: linear-gradient(135deg, #1a2634 0%, #3d5a78 100%); }
.ph-exterieur { background-color: #4A6741; background-image: linear-gradient(135deg, #2d4a28 0%, #6a9b61 100%); }
.ph-animaux { background-color: #7B6350; background-image: linear-gradient(135deg, #5a4535 0%, #9b7d5a 100%); }
.ph-salle { background-color: #5C4A3A; background-image: linear-gradient(135deg, #3a2e24 0%, #7a6050 100%); }
.ph-etang { background-color: #3A6070; background-image: linear-gradient(135deg, #284855 0%, #5a8090 100%); }
.ph-hero { background-color: #4A5840; background-image: linear-gradient(160deg, #2d3a28 0%, #5a7050 30%, #8B7055 70%, #3d5028 100%); }

/* =============================================
   NAVIGATION
   ============================================= */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  height: var(--nav-h);
  background: transparent;
  transition: background 0.3s ease, box-shadow 0.3s ease;
}
.nav.scrolled {
  background: rgba(28,24,20,0.95);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  box-shadow: 0 1px 0 rgba(255,255,255,0.05);
}
.nav-inner {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 clamp(1.5rem, 5vw, 3rem);
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.nav-logo {
  font-family: var(--font-display);
  font-size: 1.3rem;
  font-weight: 600;
  color: var(--blanc);
  letter-spacing: 0.02em;
}
.nav-links {
  display: flex;
  align-items: center;
  gap: 0.25rem;
}
.nav-links li a {
  color: rgba(255,255,255,0.85);
  font-size: 0.85rem;
  font-weight: 400;
  letter-spacing: 0.04em;
  padding: 0.5rem 0.75rem;
  border-radius: var(--radius);
  transition: all 0.2s;
}
.nav-links li a:hover { color: var(--blanc); background: rgba(255,255,255,0.08); }
.nav-links .nav-cta {
  background: var(--terre) !important;
  color: var(--blanc) !important;
  padding: 0.5rem 1.25rem !important;
  margin-left: 0.5rem;
}
.nav-links .nav-cta:hover { background: var(--terre-dark) !important; }

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.5rem;
}
.nav-toggle span {
  display: block;
  width: 24px; height: 2px;
  background: var(--blanc);
  border-radius: 2px;
  transition: all 0.3s;
}

/* =============================================
   HERO
   ============================================= */
.hero {
  position: relative;
  height: 100vh;
  min-height: 600px;
  display: flex;
  align-items: center;
  overflow: hidden;
}
.hero-bg {
  position: absolute;
  inset: 0;
  background-color: #3a4830;
  background-image: url('images/facade-printemps-floraison-gite-petillieres.jpg');
  background-size: cover;
  background-position: center 30%;
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(15,12,8,0.5) 0%, rgba(15,12,8,0.2) 50%, rgba(15,12,8,0.6) 100%);
}
.hero-content {
  position: relative;
  z-index: 2;
  padding: 0 clamp(1.5rem, 5vw, 3rem);
  max-width: var(--max-width);
  margin: 0 auto;
  width: 100%;
  padding-top: var(--nav-h);
}
.hero-eyebrow {
  font-size: 0.78rem;
  font-weight: 400;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--terre-light);
  margin-bottom: 1.25rem;
  opacity: 0;
  animation: fadeUp 0.8s 0.2s forwards;
}
.hero-title {
  color: var(--blanc);
  margin-bottom: 1.5rem;
  opacity: 0;
  animation: fadeUp 0.8s 0.4s forwards;
}
.hero-sub {
  color: rgba(255,255,255,0.8);
  font-size: clamp(1rem, 1.5vw, 1.15rem);
  max-width: 560px;
  margin-bottom: 2.5rem;
  font-weight: 300;
  line-height: 1.8;
  opacity: 0;
  animation: fadeUp 0.8s 0.6s forwards;
}
.hero-actions {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  opacity: 0;
  animation: fadeUp 0.8s 0.8s forwards;
}
.hero-scroll {
  position: absolute;
  bottom: 2.5rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.75rem;
  color: rgba(255,255,255,0.5);
  font-size: 0.7rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}
.hero-scroll-line {
  width: 1px;
  height: 40px;
  background: linear-gradient(to bottom, rgba(255,255,255,0.5), transparent);
  animation: scrollPulse 2s infinite;
}

/* =============================================
   INTRO
   ============================================= */
.intro {
  padding: 6rem 0;
  background: var(--blanc);
}
.intro-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
}
.intro-text h2 { margin-bottom: 1.25rem; }
.intro-text p { color: var(--gris); margin-bottom: 1.75rem; font-size: 1.05rem; }
.intro-quote blockquote {
  border-left: 3px solid var(--or);
  padding: 1.5rem 2rem;
  background: var(--ivoire);
  border-radius: 0 var(--radius-lg) var(--radius-lg) 0;
}
.intro-quote blockquote p {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 1.15rem;
  color: var(--terre-dark);
  line-height: 1.7;
  margin-bottom: 1rem;
}
.intro-quote cite {
  font-size: 0.85rem;
  color: var(--terre);
  font-style: normal;
  font-weight: 500;
}

/* =============================================
   ATOUTS
   ============================================= */
.atouts {
  padding: 6rem 0;
  background: var(--ivoire);
}
.atouts-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
}
.atout-card {
  background: var(--blanc);
  padding: 2rem;
  border-radius: var(--radius-lg);
  border: 1px solid var(--ivoire-dark);
  transition: transform 0.3s, box-shadow 0.3s;
}
.atout-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }
.atout-icon { font-size: 2rem; margin-bottom: 1rem; }
.atout-card h3 { font-size: 1.1rem; margin-bottom: 0.75rem; }
.atout-card p { color: var(--gris); font-size: 0.92rem; margin-bottom: 1.25rem; line-height: 1.65; }

/* =============================================
   APERÇU GÎTE
   ============================================= */
.apercu {
  padding: 6rem 0;
  background: var(--blanc);
}
.apercu-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
}
.apercu-visual {
  display: grid;
  grid-template-columns: 2fr 1fr;
  grid-template-rows: 320px 200px;
  gap: 1rem;
}
.apercu-photo--main {
  grid-row: span 2;
  border-radius: var(--radius-lg);
  overflow: hidden;
}
.apercu-photo--secondary {
  border-radius: var(--radius-lg);
  overflow: hidden;
}
.apercu-photo .photo-placeholder { height: 100%; }
.apercu-content .label { margin-bottom: 0.5rem; }
.apercu-content h2 { margin-bottom: 1.5rem; }
.apercu-list {
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
  margin-bottom: 2rem;
}
.apercu-list li {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 0.95rem;
  color: var(--gris);
}
.apercu-list li span { font-size: 1.1rem; }
.apercu-actions { display: flex; gap: 1rem; flex-wrap: wrap; }

/* =============================================
   POUR QUI
   ============================================= */
.pourqui {
  padding: 6rem 0;
  background: var(--terre-dark);
}
.pourqui .section-title { color: var(--blanc); }
.pourqui-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
}
.pourqui-card {
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.1);
}
.pourqui-img {
  height: 260px;
  background-size: cover;
  background-position: center;
}
.pourqui-famille {
  background-color: #4A6741;
  background-image: linear-gradient(135deg, #2d4a28 0%, #5a7a50 100%);
}
.pourqui-couple {
  background-color: #2C3E50;
  background-image: linear-gradient(135deg, #1a2634 0%, #3d5a78 100%);
}
.pourqui-body {
  padding: 1.75rem;
}
.pourqui-body h3 { color: var(--blanc); margin-bottom: 0.75rem; }
.pourqui-body p { color: rgba(255,255,255,0.7); font-size: 0.95rem; }

/* =============================================
   GALERIE STRIP
   ============================================= */
.galerie-strip {
  height: 280px;
  overflow: hidden;
}
.galerie-strip-inner {
  display: flex;
  height: 100%;
}
.galerie-item {
  flex: 1;
  overflow: hidden;
  transition: flex 0.5s ease;
  cursor: pointer;
}
.galerie-item:hover { flex: 2; }
.galerie-item .photo-placeholder { height: 100%; border-radius: 0; }

/* =============================================
   CTA SECTION
   ============================================= */
.cta-section {
  padding: 5rem 0;
  background: var(--ivoire);
}
.cta-box {
  background: var(--noir);
  border-radius: var(--radius-lg);
  padding: 3.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  flex-wrap: wrap;
}
.cta-content h2 { color: var(--blanc); margin-bottom: 0.5rem; }
.cta-content p { color: rgba(255,255,255,0.6); }
.cta-actions { display: flex; gap: 1rem; flex-wrap: wrap; }

/* =============================================
   FOOTER
   ============================================= */
.footer {
  background: var(--noir);
  padding: 4rem 0 2rem;
  color: rgba(255,255,255,0.78);
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 3rem;
  margin-bottom: 3rem;
}
.footer-logo {
  font-family: var(--font-display);
  font-size: 1.3rem;
  color: var(--blanc);
  margin-bottom: 1rem;
}
.footer-brand p { margin-bottom: 0.5rem; font-size: 0.9rem; color: rgba(255,255,255,0.78); }
.footer-nav h4 {
  font-family: var(--font-body);
  font-size: 0.75rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--blanc);
  margin-bottom: 1rem;
}
.footer-nav ul { display: flex; flex-direction: column; gap: 0.5rem; }
.footer-nav a { font-size: 0.9rem; transition: color 0.2s; color: rgba(255,255,255,0.78); }
.footer-nav a:hover { color: var(--blanc); }
.footer-info h4 {
  font-family: var(--font-body);
  font-size: 0.75rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--blanc);
  margin-bottom: 1rem;
}
.footer-note { font-size: 0.82rem; margin-top: 0.75rem; }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.08);
  padding-top: 1.5rem;
  font-size: 0.82rem;
  text-align: center;
}

/* =============================================
   PAGES INTÉRIEURES — HERO COMPACT
   ============================================= */
.page-hero {
  height: 50vh;
  min-height: 360px;
  position: relative;
  display: flex;
  align-items: flex-end;
  padding-bottom: 3rem;
  overflow: hidden;
}
.page-hero-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
}
.page-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(15,12,8,0.3) 0%, rgba(15,12,8,0.7) 100%);
}
.page-hero-content {
  position: relative;
  z-index: 2;
  padding: 0 clamp(1.5rem, 5vw, 3rem);
  max-width: var(--max-width);
  margin: 0 auto;
  width: 100%;
}
.page-hero-content .breadcrumb {
  font-size: 0.78rem;
  color: rgba(255,255,255,0.5);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 0.75rem;
}
.page-hero-content .breadcrumb a { color: rgba(255,255,255,0.5); }
.page-hero-content .breadcrumb a:hover { color: rgba(255,255,255,0.8); }
.page-hero-content h1 { color: var(--blanc); }

/* =============================================
   SEO BLOCK
   ============================================= */
.seo-block {
  background: var(--ivoire-dark);
  border-left: 3px solid var(--or);
  padding: 1.25rem 1.5rem;
  margin-bottom: 2.5rem;
  border-radius: 0 var(--radius) var(--radius) 0;
  font-size: 0.9rem;
  color: var(--gris);
}
.seo-block p { margin-bottom: 0.25rem; }

/* =============================================
   CONTENT SECTIONS
   ============================================= */
.content-section {
  padding: 5rem 0;
}
.content-section.bg-alt { background: var(--ivoire-dark); }
.content-section.bg-dark { background: var(--terre-dark); }

.content-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
}
.content-grid.reverse { direction: rtl; }
.content-grid.reverse > * { direction: ltr; }

.content-text { }
.content-text .label { margin-bottom: 0.5rem; }
.content-text h2 { margin-bottom: 1.25rem; }
.content-text p { color: var(--gris); margin-bottom: 1.25rem; line-height: 1.8; }
.content-text ul {
  margin: 1.25rem 0;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}
.content-text ul li {
  padding-left: 1.25rem;
  position: relative;
  color: var(--gris);
  font-size: 0.95rem;
}
.content-text ul li::before {
  content: '—';
  position: absolute;
  left: 0;
  color: var(--or);
}

.content-visual {
  border-radius: var(--radius-lg);
  overflow: hidden;
}
.content-visual .photo-placeholder { height: 420px; }

/* =============================================
   TARIFS
   ============================================= */
.tarifs-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-bottom: 3rem;
}
.tarif-card {
  background: var(--blanc);
  border: 1px solid var(--ivoire-dark);
  border-radius: var(--radius-lg);
  padding: 2rem;
  text-align: center;
  transition: transform 0.3s, box-shadow 0.3s;
}
.tarif-card:hover { transform: translateY(-4px); box-shadow: var(--shadow); }
.tarif-card.featured {
  background: var(--terre-dark);
  color: var(--blanc);
  border-color: var(--terre-dark);
}
.tarif-card.featured p { color: rgba(255,255,255,0.7); }
.tarif-label {
  font-size: 0.78rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--terre);
  margin-bottom: 0.75rem;
}
.tarif-card.featured .tarif-label { color: var(--terre-light); }
.tarif-price {
  font-family: var(--font-display);
  font-size: 2.5rem;
  color: var(--terre-dark);
  margin-bottom: 0.25rem;
}
.tarif-card.featured .tarif-price { color: var(--blanc); }
.tarif-price sup { font-size: 1.2rem; vertical-align: super; }
.tarif-price sub { font-size: 1rem; }
.tarif-detail { font-size: 0.85rem; color: var(--gris); }

/* FAQ */
.faq { margin-top: 3rem; }
.faq-item {
  border-bottom: 1px solid var(--ivoire-dark);
  padding: 1.25rem 0;
}
.faq-question {
  font-family: var(--font-display);
  font-size: 1.05rem;
  font-weight: 600;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
}
.faq-question::after {
  content: '+';
  font-size: 1.2rem;
  color: var(--terre);
  flex-shrink: 0;
  transition: transform 0.3s;
}
.faq-item.open .faq-question::after { transform: rotate(45deg); }
.faq-answer {
  color: var(--gris);
  font-size: 0.95rem;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease, padding 0.3s;
}
.faq-item.open .faq-answer { max-height: 300px; padding-top: 0.75rem; }

/* =============================================
   CALENDRIER / CONTACT
   ============================================= */
.reservation-box {
  background: var(--blanc);
  border: 1px solid var(--ivoire-dark);
  border-radius: var(--radius-lg);
  padding: 2.5rem;
  box-shadow: var(--shadow);
}
.reservation-box h3 { margin-bottom: 1.5rem; }
.contact-methods {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-bottom: 2rem;
}
.contact-method {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1rem 1.25rem;
  background: var(--ivoire);
  border-radius: var(--radius);
  font-size: 0.95rem;
  transition: background 0.2s;
}
.contact-method:hover { background: var(--ivoire-dark); }
.contact-method .icon { font-size: 1.3rem; }

/* Calendrier simple */
.calendar-widget {
  border: 1px solid var(--ivoire-dark);
  border-radius: var(--radius);
  overflow: hidden;
  margin-bottom: 1.5rem;
}
.calendar-header {
  background: var(--terre);
  color: var(--blanc);
  padding: 1rem 1.5rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.calendar-header h4 { font-family: var(--font-body); font-size: 0.9rem; font-weight: 500; }
.calendar-nav { background: none; border: none; color: var(--blanc); cursor: pointer; font-size: 1.1rem; padding: 0 0.5rem; }
.calendar-grid {
  padding: 1rem;
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 2px;
}
.calendar-day {
  aspect-ratio: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.8rem;
  border-radius: 50%;
  cursor: pointer;
}
.calendar-day.header { font-weight: 600; color: var(--gris); cursor: default; font-size: 0.75rem; }
.calendar-day.available:hover { background: var(--ivoire-dark); }
.calendar-day.past { opacity:0.3; cursor:not-allowed; }
.calendar-day.occupied { background: var(--ivoire-dark); color: var(--gris); text-decoration: line-through; cursor: not-allowed; }
.calendar-day.today { background: var(--or); color: var(--blanc); font-weight: 600; }
.calendar-day.empty { cursor: default; }
.calendar-legend {
  padding: 0.75rem 1rem;
  border-top: 1px solid var(--ivoire-dark);
  display: flex;
  gap: 1.5rem;
  font-size: 0.78rem;
  color: var(--gris);
}
.legend-dot {
  width: 10px; height: 10px;
  border-radius: 50%;
  display: inline-block;
  margin-right: 0.3rem;
}
.legend-dot.available { background: var(--vert); }
.legend-dot.occupied { background: var(--ivoire-dark); border: 1px solid var(--gris); }

/* =============================================
   ANIMAUX CARDS
   ============================================= */
.animaux-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}
.animal-card {
  background: var(--blanc);
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--ivoire-dark);
  transition: transform 0.3s;
}
.animal-card:hover { transform: translateY(-4px); box-shadow: var(--shadow); }
.animal-emoji {
  height: 100px;
  background: var(--ivoire-dark);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 3rem;
}
.animal-body { padding: 1.25rem; }
.animal-body h3 { font-size: 1rem; margin-bottom: 0.4rem; }
.animal-body p { font-size: 0.88rem; color: var(--gris); }

/* =============================================
   ACTIVITÉS LOCALES
   ============================================= */
.activites-list {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}
.activite-item {
  display: flex;
  gap: 1.5rem;
  padding: 1.5rem;
  background: var(--blanc);
  border-radius: var(--radius-lg);
  border: 1px solid var(--ivoire-dark);
  align-items: flex-start;
}
.activite-dist {
  flex-shrink: 0;
  background: var(--terre);
  color: var(--blanc);
  padding: 0.4rem 0.75rem;
  border-radius: var(--radius);
  font-size: 0.8rem;
  font-weight: 500;
  white-space: nowrap;
}
.activite-content h3 { font-size: 1rem; margin-bottom: 0.3rem; }
.activite-content p { font-size: 0.9rem; color: var(--gris); }

/* =============================================
   ACCÈS MAP
   ============================================= */
.map-placeholder {
  height: 360px;
  background: var(--ivoire-dark);
  border-radius: var(--radius-lg);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 1rem;
  color: var(--gris);
  font-size: 0.9rem;
  border: 1px solid var(--ivoire-dark);
}
.map-placeholder::before {
  content: '📍';
  font-size: 2.5rem;
}

.distances-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
}
.distance-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0.75rem 1rem;
  background: var(--ivoire);
  border-radius: var(--radius);
  font-size: 0.9rem;
}
.distance-item strong { color: var(--terre); }

/* =============================================
   ANIMATIONS
   ============================================= */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(24px); }
  to { opacity: 1; transform: translateY(0); }
}
@keyframes scrollPulse {
  0%, 100% { opacity: 0.5; transform: scaleY(1); }
  50% { opacity: 1; transform: scaleY(1.15); }
}

.reveal {
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.js-ready .reveal {
  opacity: 0;
  transform: translateY(32px);
}
.js-ready .reveal.visible { opacity: 1; transform: translateY(0); }
.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }
.reveal-delay-4 { transition-delay: 0.4s; }

/* =============================================
   RESPONSIVE
   ============================================= */
@media (max-width: 1024px) {
  .atouts-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 768px) {
  :root { --nav-h: 64px; }

  .nav-links {
    position: fixed;
    top: var(--nav-h); left: 0; right: 0;
    background: rgba(28,24,20,0.98);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    flex-direction: column;
    padding: 1.5rem;
    gap: 0.25rem;
    max-height: 0;
    overflow: hidden;
    visibility: hidden;
    opacity: 0;
    pointer-events: none;
    transition: max-height 0.35s ease, opacity 0.25s ease, visibility 0s linear 0.35s;
  }
  .nav-links.open {
    max-height: 600px;
    visibility: visible;
    opacity: 1;
    pointer-events: auto;
    transition: max-height 0.35s ease, opacity 0.25s ease, visibility 0s linear 0s;
  }
  .nav-links li a { padding: 0.75rem 1rem; display: block; font-size: 1rem; }
  .nav-toggle { display: flex; }

  .hero-title { font-size: 2.2rem; }
  .hero-sub { font-size: 0.95rem; }

  .intro-grid,
  .apercu-grid,
  .content-grid,
  .pourqui-grid { grid-template-columns: 1fr; gap: 2.5rem; }
  .content-grid.reverse { direction: ltr; }

  .apercu-visual { grid-template-columns: 1fr; grid-template-rows: 260px 220px; }
  .apercu-photo--main { grid-row: span 1; }
  .apercu-photo--secondary { display: flex; flex-direction: row; gap: 0.75rem; }
  .apercu-photo--secondary img { flex: 1; height: 220px; border-radius: var(--radius); }

  .atouts-grid { grid-template-columns: 1fr; }
  .tarifs-grid { grid-template-columns: 1fr; }
  .animaux-grid { grid-template-columns: repeat(2, 1fr); }
  .distances-grid { grid-template-columns: 1fr; }

  .cta-box { flex-direction: column; text-align: center; padding: 2.5rem 1.5rem; }

  .footer-grid { grid-template-columns: 1fr; gap: 2rem; }

  .galerie-strip { height: 180px; }
}

@media (max-width: 480px) {
  .animaux-grid { grid-template-columns: 1fr; }
  .hero-actions { flex-direction: column; }
  .cta-actions { flex-direction: column; align-items: center; }
}

/* =============================================
   BARRE DE RÉASSURANCE
   ============================================= */
.reassurance-bar {
  background: var(--terre-dark);
  padding: 0.75rem 0;
  overflow: hidden;
}
.reassurance-bar-inner {
  display: flex;
  justify-content: center;
  gap: 2.5rem;
  flex-wrap: wrap;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 clamp(1.5rem, 5vw, 3rem);
}
.reassurance-item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 0.06em;
  color: rgba(255,255,255,0.9);
  text-transform: uppercase;
  white-space: nowrap;
}
.reassurance-item span { font-size: 0.9rem; }

/* =============================================
   TÉMOIGNAGES
   ============================================= */
.temoignages {
  padding: 5rem 0;
  background: var(--ivoire-dark);
}
.temoignages-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.75rem;
}
.temoignage-card {
  background: var(--blanc);
  padding: 2rem;
  border-radius: var(--radius-lg);
  border: 1px solid rgba(200,151,58,0.2);
  position: relative;
}
.temoignage-stars {
  color: var(--or);
  font-size: 0.9rem;
  margin-bottom: 0.85rem;
  letter-spacing: 0.1em;
}
.temoignage-card blockquote {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 1rem;
  color: var(--terre-dark);
  line-height: 1.7;
  margin-bottom: 1.25rem;
}
.temoignage-meta {
  font-size: 0.82rem;
  color: var(--gris);
  font-weight: 500;
}
.temoignage-meta strong {
  color: var(--terre);
  display: block;
  margin-bottom: 0.1rem;
}
.temoignage-card::before {
  content: '"';
  position: absolute;
  top: -0.5rem;
  left: 1.5rem;
  font-family: var(--font-display);
  font-size: 4rem;
  color: var(--or);
  line-height: 1;
  opacity: 0.4;
}

/* =============================================
   CTA HERO — HIÉRARCHIE CORRIGÉE
   ============================================= */
.btn-primary-hero {
  background: var(--terre);
  color: var(--blanc);
  padding: 1rem 2.5rem;
  font-size: 1rem;
  font-weight: 500;
  border-radius: var(--radius);
  box-shadow: 0 4px 20px rgba(139,111,85,0.4);
  transition: all 0.25s ease;
}
.btn-primary-hero:hover {
  background: var(--terre-dark);
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(139,111,85,0.5);
}
.btn-secondary-hero {
  background: transparent;
  color: rgba(255,255,255,0.75);
  font-size: 0.88rem;
  padding: 0.85rem 1.75rem;
  border: 1px solid rgba(255,255,255,0.3);
  border-radius: var(--radius);
  transition: all 0.25s ease;
}
.btn-secondary-hero:hover {
  color: var(--blanc);
  border-color: rgba(255,255,255,0.6);
  background: rgba(255,255,255,0.08);
}

/* =============================================
   FOOTER RENFORCÉ
   ============================================= */
.footer-cta-bar {
  background: var(--terre);
  padding: 1.5rem clamp(1.5rem, 5vw, 3rem);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  flex-wrap: wrap;
  max-width: var(--max-width);
  margin: 0 auto 3rem;
  border-radius: var(--radius-lg);
}
.footer-cta-bar p {
  color: rgba(255,255,255,0.85);
  font-size: 0.95rem;
  margin: 0;
}
.footer-cta-bar strong { color: var(--blanc); }
.footer-cta-bar .btn-sm {
  background: var(--blanc);
  color: var(--terre-dark);
  font-weight: 600;
  flex-shrink: 0;
}
.footer-cta-bar .btn-sm:hover { background: var(--ivoire); }

/* =============================================
   RESPONSIVE AJOUTS
   ============================================= */
@media (max-width: 768px) {
  .reassurance-bar-inner { gap: 1.25rem; }
  .reassurance-item { font-size: 0.72rem; }
  .temoignages-grid { grid-template-columns: 1fr; }
  .footer-cta-bar { flex-direction: column; text-align: center; }
}
