/* ═══════════════════════════════════════════════════════════
   PARCONAUTE — main.css
   Mobile-first, vanilla CSS, no frameworks
═══════════════════════════════════════════════════════════ */

/* ── Sélecteur de langue ────────────────────────────────── */
.lang-switcher {
  display: flex;
  align-items: center;
  gap: 4px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .06em;
}
.lang-switcher a {
  color: var(--text-dark, #1a1a1a);
  text-decoration: none;
  opacity: .4;
  transition: opacity .2s;
  padding: 2px 0;
}
.lang-switcher a:hover { opacity: .8; }
.lang-switcher a.active { opacity: 1; }
.lang-switcher span { opacity: .25; font-size: 11px; }
.lang-switcher--mobile {
  padding: 8px 0;
  font-size: 14px;
}
.lang-switcher--mobile a { opacity: .5; }
.lang-switcher--mobile a.active { opacity: 1; }

/* ── Variables ──────────────────────────────────────────── */
:root {
  --gold:      #CDBC72;
  --gold-light:#EDE9C8;
  --gold-dark: #B8A85C;
  --taupe:     #B1A29B;
  --taupe-light:#E8E2DF;
  --brown:     #776E4A;
  --brown-dark:#5A5235;
  --black:     #000000;
  --white:     #FFFFFF;
  --gray-100:  #F8F7F5;
  --gray-200:  #F0EDE8;
  --gray-300:  #E0DAD3;
  --gray-500:  #8A8279;
  --gray-700:  #4A4540;

  --font-title: 'Open Sans', sans-serif;
  --font-body:  'Roboto', sans-serif;

  --radius:    8px;
  --radius-lg: 16px;
  --shadow:    0 2px 12px rgba(0,0,0,.08);
  --shadow-md: 0 4px 24px rgba(0,0,0,.12);
  --shadow-lg: 0 8px 40px rgba(0,0,0,.16);
  --transition: 0.22s ease;

  --header-h: 70px;
  --container: 1180px;

  --footer-bg: #1C1A15;
}

/* ── Reset ──────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.65;
  color: var(--black);
  background: var(--white);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
img, video { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
ul, ol { list-style: none; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }
input, textarea, select { font-family: inherit; }

/* ── Layout ─────────────────────────────────────────────── */
.container {
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 20px;
}
#main-content { min-height: 60vh; }

/* ── Typography ─────────────────────────────────────────── */
h1, h2, h3, h4, h5 {
  font-family: var(--font-title);
  font-weight: 600;
  line-height: 1.2;
  color: var(--black);
}
h1 { font-size: clamp(1.75rem, 5vw, 3rem); }
h2 { font-size: clamp(1.4rem, 3.5vw, 2.25rem); }
h3 { font-size: clamp(1.1rem, 2.5vw, 1.5rem); }
p { margin-bottom: 1em; }
p:last-child { margin-bottom: 0; }
.text-accent { color: var(--gold); }
.text-white  { color: var(--white); }
.text-center { text-align: center; }
/* Texte en contour doré — héro + bandeaux */
.text-outline-gold {
  color: transparent;
  -webkit-text-stroke: 2px var(--gold);
  paint-order: stroke fill;
}
.text-outline-gold-lg {
  color: transparent;
  -webkit-text-stroke: 1.5px var(--gold);
  paint-order: stroke fill;
}

/* ── Buttons ─────────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 12px 24px;
  border-radius: var(--radius);
  font-family: var(--font-body);
  font-weight: 500;
  font-size: 0.95rem;
  transition: all var(--transition);
  white-space: nowrap;
  text-decoration: none;
}
.btn-primary {
  background: var(--gold);
  color: var(--white);
  border: 2px solid var(--gold);
}
.btn-primary:hover {
  background: var(--gold-dark);
  border-color: var(--gold-dark);
  transform: translateY(-1px);
  box-shadow: var(--shadow);
}
.btn-outline {
  background: transparent;
  color: var(--gold);
  border: 2px solid var(--gold);
}
.btn-outline:hover {
  background: var(--gold);
  color: var(--white);
  transform: translateY(-1px);
}
.btn-light {
  background: var(--white);
  color: var(--brown);
  border: 2px solid var(--white);
  font-weight: 600;
}
.btn-light:hover {
  background: var(--gray-100);
  transform: translateY(-1px);
}
.btn-sm {
  padding: 8px 16px;
  font-size: 0.875rem;
}
.btn-lg {
  padding: 16px 32px;
  font-size: 1.05rem;
}
.link-btn {
  background: none;
  border: none;
  color: var(--gold);
  cursor: pointer;
  text-decoration: underline;
  font-size: inherit;
}

/* ── Sections ────────────────────────────────────────────── */
.section {
  padding: 60px 0;
}
.section-alt {
  background: var(--gray-100);
}
.section-dark {
  background: var(--brown);
  color: var(--white);
}
.section-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 36px;
  gap: 16px;
}
.section-title {
  font-size: clamp(1.4rem, 3vw, 2rem);
}
.section-subtitle {
  color: var(--gray-500);
  margin-top: 8px;
  font-size: 1.05rem;
}
.section-link {
  color: var(--gold);
  font-weight: 500;
  white-space: nowrap;
  transition: color var(--transition);
  text-decoration: none;
}
.section-link:hover { color: var(--gold-dark); }
.section-cta {
  text-align: center;
  margin-top: 40px;
}

/* ═══════════════════════════════════════════════════════════
   HEADER
═══════════════════════════════════════════════════════════ */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  height: var(--header-h);
  background: var(--white);
  border-bottom: 1px solid var(--gray-300);
  transition: box-shadow var(--transition);
}
.site-header.scrolled {
  box-shadow: var(--shadow-md);
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
  gap: 20px;
}
.header-logo img {
  height: 42px;
  width: auto;
  object-fit: contain;
}
.header-nav ul {
  display: flex;
  align-items: center;
  gap: 32px;
}
.header-nav a {
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--gray-700);
  transition: color var(--transition);
  position: relative;
  padding-bottom: 2px;
}
.header-nav a::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--gold);
  transition: width var(--transition);
}
.header-nav a:hover,
.header-nav a.active {
  color: var(--gold);
}
.header-nav a.active::after,
.header-nav a:hover::after {
  width: 100%;
}
.header-actions {
  display: flex;
  align-items: center;
  gap: 16px;
}
.header-icon {
  position: relative;
  color: var(--gray-700);
  transition: color var(--transition);
  display: flex;
}
.header-icon:hover { color: var(--gold); }
.cart-count {
  position: absolute;
  top: -7px;
  right: -7px;
  background: var(--gold);
  color: var(--white);
  font-size: 0.65rem;
  font-weight: 600;
  border-radius: 50%;
  width: 17px;
  height: 17px;
  display: flex;
  align-items: center;
  justify-content: center;
  line-height: 1;
}
.cart-count.hidden { display: none; }

/* Burger button */
.burger-btn {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 4px;
}
.burger-btn span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--black);
  border-radius: 2px;
  transition: all 0.3s ease;
  transform-origin: center;
}
.burger-btn.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.burger-btn.open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.burger-btn.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Mobile menu overlay */
.mobile-menu {
  position: fixed;
  inset: 0;
  background: var(--white);
  z-index: 999;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 60px 32px 32px;
  transform: translateX(100%);
  transition: transform 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  visibility: hidden;
}
.mobile-menu.open {
  transform: translateX(0);
  visibility: visible;
}
.mobile-menu ul { width: 100%; }
.mobile-menu li { border-bottom: 1px solid var(--gray-200); }
.mobile-menu a {
  display: block;
  padding: 18px 0;
  font-size: 1.2rem;
  font-weight: 500;
  color: var(--black);
  transition: color var(--transition), padding-left var(--transition);
}
.mobile-menu a:hover {
  color: var(--gold);
  padding-left: 8px;
}
.mobile-menu-separator { border-bottom: 2px solid var(--gray-300) !important; }
.cart-count-inline { color: var(--gold); font-weight: 700; }
.mobile-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,.4);
  z-index: 998;
}

/* Page offset for fixed header */
#main-content { padding-top: var(--header-h); }

/* ═══════════════════════════════════════════════════════════
   HERO — HOMEPAGE
═══════════════════════════════════════════════════════════ */
.hero {
  background: linear-gradient(135deg, var(--gold-light) 0%, #F5F0DC 60%, var(--taupe-light) 100%);
  padding: 80px 0;
  overflow: hidden;
}
.hero-inner {
  display: flex;
  flex-direction: column;
  gap: 32px;
}

/* Rangée haut : texte + visuel (slider + carte) */
.hero-top {
  display: flex;
  flex-direction: column; /* mobile : texte au-dessus, visuel en dessous */
  gap: 32px;
}
.hero-text { }
/* Colonne droite : slider en fond absolu + carte par-dessus */
.hero-visual {
  position: relative;
  width: 100%;        /* mobile : pleine largeur */
  height: 280px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.hero-card { position: relative; z-index: 2; width: 200px; }
.hero-badge {
  display: inline-block;
  background: var(--gold);
  color: var(--white);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: .06em;
  text-transform: uppercase;
  padding: 4px 12px;
  border-radius: 20px;
  margin-bottom: 16px;
}
.hero-title {
  font-size: clamp(2rem, 6vw, 3.5rem);
  line-height: 1.1;
  margin-bottom: 20px;
}
.hero-subtitle {
  font-size: 1.1rem;
  color: var(--gray-700);
  max-width: 520px;
  margin-bottom: 32px;
}
.hero-ctas {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 28px;
}
.hero-trust {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  color: var(--gray-700);
  font-size: 0.85rem;
  font-weight: 500;
}
.hero-trust span::before { content: ''; }

/* Slider en fond absolu dans .hero-visual */
.hero-slider-bg {
  position: absolute;
  inset: 0;
  overflow: hidden;
  display: flex;
  align-items: center;
  -webkit-mask-image: linear-gradient(to right, transparent 0%, black 8%, black 92%, transparent 100%);
  mask-image: linear-gradient(to right, transparent 0%, black 8%, black 92%, transparent 100%);
}
.hero-slider-track {
  display: flex;
  animation: heroTrain 28s linear infinite;
  will-change: transform;
}
/* 12 slides × 192px (184 + 8 margin) = 2304px → -1152px = 6 slides ✓ */
@keyframes heroTrain {
  from { transform: translateX(0); }
  to   { transform: translateX(-1152px); }
}
.hero-slide {
  flex-shrink: 0;
  width: 184px;
  height: 90%; /* légèrement moins haut → les coins arrondis se voient mieux */
  overflow: hidden;
  margin-right: 8px;
  border-radius: 14px;
  box-shadow: 0 8px 24px rgba(0,0,0,.28);
}
.hero-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.hero-product-card {
  display: block;
  position: relative;
  background: var(--white);
  border-radius: var(--radius-lg);
  box-shadow: 0 28px 80px rgba(0,0,0,.45), 0 8px 28px rgba(0,0,0,.22);
  overflow: hidden;
  width: 100%;
  transition: transform var(--transition), box-shadow var(--transition);
}
.hero-product-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 36px 96px rgba(0,0,0,.50), 0 12px 36px rgba(0,0,0,.26);
}
.badge-nouveau {
  position: absolute;
  top: 12px;
  right: 12px;
  background: var(--gold);
  color: var(--white);
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .06em;
  padding: 4px 10px;
  border-radius: 20px;
  z-index: 2;
}
.hero-product-img { width: 100%; height: 190px; object-fit: cover; }
.hero-product-info {
  padding: 16px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.hero-product-title {
  font-weight: 600;
  font-size: 0.9rem;
  color: var(--black);
}
.hero-product-price {
  font-weight: 700;
  color: var(--gold);
  font-size: 1.05rem;
}

/* ═══════════════════════════════════════════════════════════
   PRODUCT CARDS
═══════════════════════════════════════════════════════════ */
.products-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
}
.product-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: transform var(--transition), box-shadow var(--transition);
}
.product-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}
.product-card-link { display: block; }
.product-card-img-wrap {
  position: relative;
  overflow: hidden;
  aspect-ratio: 4/5;
}
.product-card-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}
.product-card:hover .product-card-img-wrap img {
  transform: scale(1.04);
}
.product-badge {
  position: absolute;
  top: 10px;
  left: 10px;
  background: var(--gold);
  color: var(--white);
  font-size: 0.7rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: .05em;
  padding: 3px 10px;
  border-radius: 20px;
}
.product-card-body {
  padding: 20px;
}
.product-card-title {
  font-size: 1rem;
  font-weight: 600;
  margin-bottom: 10px;
  line-height: 1.35;
}
.product-card-price {
  margin-bottom: 14px;
  font-weight: 700;
  font-size: 1.1rem;
  color: var(--gold);
}
.product-card-price .woocommerce-Price-amount { color: var(--gold); }

/* ═══════════════════════════════════════════════════════════
   BLOG CARDS
═══════════════════════════════════════════════════════════ */
.blog-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
}
.blog-grid-4 { grid-template-columns: 1fr; }

.blog-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: transform var(--transition), box-shadow var(--transition);
  display: flex;
  flex-direction: column;
}
.blog-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}
.blog-card-img-wrap {
  position: relative;
  overflow: hidden;
  aspect-ratio: 3/2;
}
.blog-card-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}
.blog-card:hover .blog-card-img-wrap img {
  transform: scale(1.04);
}
.blog-badge {
  position: absolute;
  top: 10px;
  left: 10px;
  background: var(--gold);
  color: var(--white);
  font-size: 0.7rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: .05em;
  padding: 3px 10px;
  border-radius: 20px;
}
.blog-card-body {
  padding: 20px;
  flex: 1;
  display: flex;
  flex-direction: column;
}
.blog-cat-label {
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: .06em;
  color: var(--gold);
  margin-bottom: 8px;
  display: block;
}
.blog-card-title {
  font-size: 1.05rem;
  margin-bottom: 10px;
  line-height: 1.35;
}
.blog-card-title a { color: var(--black); transition: color var(--transition); }
.blog-card-title a:hover { color: var(--gold); }
.blog-card-excerpt {
  font-size: 0.9rem;
  color: var(--gray-500);
  line-height: 1.55;
  margin-bottom: 14px;
  flex: 1;
}
.blog-card-meta {
  font-size: 0.8rem;
  color: var(--gray-500);
  margin-bottom: 14px;
  display: flex;
  align-items: center;
  gap: 6px;
}
.blog-sep { color: var(--gray-300); }
.blog-card-cta {
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--gold);
  transition: color var(--transition);
  margin-top: auto;
}
.blog-card-cta:hover { color: var(--gold-dark); }

/* ═══════════════════════════════════════════════════════════
   ABOUT SECTION (homepage)
═══════════════════════════════════════════════════════════ */
.about-inner {
  display: flex;
  flex-direction: column;
  gap: 40px;
  align-items: center;
  text-align: center;
}
.about-photos {
  display: flex;
  gap: 24px;
  justify-content: center;
}
.about-photo-wrap {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
}
.about-photo-wrap img {
  width: 100px;
  height: 100px;
  border-radius: 50%;
  object-fit: cover;
  border: 3px solid var(--gold);
}
.about-photo-wrap span {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--taupe-light);
}
.about-text p {
  color: rgba(255,255,255,.85);
  margin-bottom: 24px;
  max-width: 480px;
}

/* ═══════════════════════════════════════════════════════════
   NEWSLETTER
═══════════════════════════════════════════════════════════ */
.section-newsletter {
  background: var(--gold-light);
}
.newsletter-inner {
  display: flex;
  flex-direction: column;
  gap: 28px;
  align-items: center;
  text-align: center;
}
.newsletter-text p {
  color: var(--gray-700);
  margin: 0;
}
.newsletter-inline-form {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  justify-content: center;
}
.newsletter-input {
  flex: 1;
  min-width: 240px;
  padding: 12px 16px;
  border: 2px solid var(--gold);
  border-radius: var(--radius);
  font-size: 0.95rem;
  background: var(--white);
  outline: none;
}
.newsletter-input:focus { border-color: var(--gold-dark); }
/* MC4WP form override */
.mc4wp-form input[type="email"] {
  flex: 1;
  min-width: 240px;
  padding: 12px 16px;
  border: 2px solid var(--gold);
  border-radius: var(--radius);
  font-size: 0.95rem;
  background: var(--white);
  outline: none;
}
.mc4wp-form input[type="submit"] {
  padding: 12px 24px;
  background: var(--gold);
  color: var(--white);
  border: 2px solid var(--gold);
  border-radius: var(--radius);
  font-weight: 500;
  font-size: 0.95rem;
  cursor: pointer;
  transition: all var(--transition);
}
.mc4wp-form input[type="submit"]:hover {
  background: var(--gold-dark);
  border-color: var(--gold-dark);
}
.mc4wp-form form {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  justify-content: center;
}

/* ═══════════════════════════════════════════════════════════
   PAGE HERO (pages intérieures) — version sombre premium
═══════════════════════════════════════════════════════════ */
.page-hero {
  background: #1C1A15;
  padding: 72px 20px;
  text-align: center;
  position: relative;
  overflow: hidden;
}
/* Lignes dorées décoratives */
.page-hero::before,
.page-hero::after {
  content: '';
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  width: 64px;
  height: 1px;
  background: var(--gold);
  opacity: .7;
}
.page-hero::before { top: 24px; }
.page-hero::after  { bottom: 24px; }
.page-hero-title {
  margin-bottom: 14px;
  color: var(--white);
  font-size: clamp(2rem, 5vw, 3rem);
}
.page-hero-cta { margin-top: 28px; }
.page-hero-subtitle {
  font-size: 1rem;
  color: rgba(255,255,255,.6);
  max-width: 520px;
  margin: 0 auto;
}

/* ═══════════════════════════════════════════════════════════
   NOTRE HISTOIRE
═══════════════════════════════════════════════════════════ */
/* Compteurs */
.counters-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}
.counter-item {
  text-align: center;
  padding: 28px 16px;
  background: var(--white);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
}
.counter-number {
  font-family: var(--font-title);
  font-size: clamp(2.5rem, 8vw, 4rem);
  font-weight: 600;
  color: var(--gold);
  line-height: 1;
}
.counter-suffix {
  font-family: var(--font-title);
  font-size: 1.8rem;
  font-weight: 600;
  color: var(--gold);
}
.counter-label {
  font-size: 0.9rem;
  color: var(--gray-500);
  margin-top: 8px;
  margin-bottom: 0;
  font-weight: 500;
}

/* Texte histoire */
.histoire-content {
  max-width: 760px;
  margin: 0 auto;
}
.histoire-section {
  margin-bottom: 40px;
}
.histoire-section h2 {
  margin-bottom: 16px;
  color: var(--brown);
}
.histoire-quote {
  border-left: 4px solid var(--gold);
  padding: 20px 28px;
  background: var(--gold-light);
  border-radius: 0 var(--radius) var(--radius) 0;
  margin: 40px 0;
  font-style: italic;
  font-size: 1.15rem;
  color: var(--brown);
}
.histoire-quote p { margin: 0; font-style: italic; }

/* ─── Section visuelle (image+overlay+citation) ─── */
.section-histoire-visual {
  position: relative;
  min-height: 320px;
  display: flex;
  align-items: center;
  /* Remplacer par l'URL d'une de vos photos de voyage */
  background: url('https://images.unsplash.com/photo-1513635269975-59663e0ac1ad?w=1400&q=80') center/cover no-repeat;
  background-color: var(--brown-dark);
}
.section-histoire-visual::before {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(12,10,8,.65);
  backdrop-filter: blur(3px);
  -webkit-backdrop-filter: blur(3px);
}
.histoire-visual-content {
  position: relative;
  z-index: 1;
  text-align: center;
  max-width: 700px;
  margin: 0 auto;
  padding: 70px 24px;
}
.histoire-visual-content blockquote p {
  font-family: var(--font-title);
  font-size: clamp(1.3rem, 3.5vw, 2rem);
  font-style: italic;
  color: var(--white);
  line-height: 1.4;
  margin-bottom: 20px;
}
.histoire-visual-content cite {
  font-size: .9rem;
  color: var(--gold);
  font-style: normal;
  letter-spacing: .06em;
}

/* Équipe */
.equipe-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 32px;
  margin-top: 40px;
}
.team-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 36px 28px;
  text-align: center;
  box-shadow: var(--shadow);
  transition: box-shadow var(--transition);
}
.team-card:hover { box-shadow: var(--shadow-md); }
.team-photo-wrap img {
  width: 150px;
  height: 150px;
  border-radius: 50%;
  object-fit: cover;
  margin: 0 auto 20px;
  border: 4px solid var(--gold);
}
.team-name {
  font-size: 1.3rem;
  margin-bottom: 4px;
}
.team-role {
  color: var(--gold);
  font-size: 0.9rem;
  font-weight: 500;
  margin-bottom: 16px;
}
.team-bio {
  font-size: 0.95rem;
  color: var(--gray-700);
  line-height: 1.6;
  margin-bottom: 20px;
}
.team-socials {
  display: flex;
  justify-content: center;
  gap: 14px;
}
.team-socials a {
  color: var(--taupe);
  transition: color var(--transition);
}
.team-socials a:hover { color: var(--gold); }

/* CTA double */
.section-cta-double { background: var(--gray-100); }
.cta-double-inner {
  display: flex;
  flex-direction: column;
  gap: 24px;
  align-items: center;
  text-align: center;
}
.cta-double-text p { color: var(--gray-700); margin: 0; }
.cta-double-btns { display: flex; flex-wrap: wrap; gap: 12px; justify-content: center; }

/* ═══════════════════════════════════════════════════════════
   CONTACT
═══════════════════════════════════════════════════════════ */
.contact-inner {
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px;
}
.contact-form-title {
  font-size: 1.3rem;
  margin-bottom: 24px;
}
.contact-info-card {
  background: var(--gold-light);
  border-radius: var(--radius-lg);
  padding: 32px 28px;
  color: var(--gray-700);
  border: 1.5px solid rgba(205,188,114,.35);
}
.contact-info-card h3 {
  font-size: 1.1rem;
  margin-bottom: 16px;
  color: var(--brown);
}
.contact-info-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 28px;
}
.contact-info-list li { font-size: 0.95rem; }
.contact-detail-link {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--gray-700);
  transition: color var(--transition);
}
.contact-detail-link svg { transition: stroke var(--transition); flex-shrink: 0; }
.contact-detail-link:hover { color: var(--gold-dark); }
.contact-detail-link:hover svg { stroke: var(--gold-dark); }
.contact-social-title { margin-top: 4px; }
.contact-socials {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-top: 12px;
}
.social-link {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--gray-700);
  font-weight: 500;
  transition: color var(--transition);
}
.social-link:hover { color: var(--gold); }
/* CF7 override */
.wpcf7 input[type="text"],
.wpcf7 input[type="email"],
.wpcf7 input[type="tel"],
.wpcf7 textarea {
  width: 100%;
  padding: 12px 16px;
  border: 1.5px solid var(--gray-300);
  border-radius: var(--radius);
  font-size: 0.95rem;
  font-family: var(--font-body);
  transition: border-color var(--transition);
  outline: none;
  background: var(--white);
}
.wpcf7 input:focus,
.wpcf7 textarea:focus { border-color: var(--gold); }
.wpcf7 input[type="submit"] {
  padding: 12px 28px;
  background: var(--gold);
  color: var(--white);
  border: 2px solid var(--gold);
  border-radius: var(--radius);
  font-weight: 600;
  font-size: 0.95rem;
  cursor: pointer;
  transition: all var(--transition);
}
.wpcf7 input[type="submit"]:hover {
  background: var(--gold-dark);
  border-color: var(--gold-dark);
}
.wpcf7 .wpcf7-not-valid-tip { color: #e53e3e; font-size: 0.8rem; margin-top: 4px; }
.wpcf7-response-output { margin-top: 12px; padding: 10px 16px; border-radius: var(--radius); font-size: 0.9rem; }

/* ═══════════════════════════════════════════════════════════
   BOUTIQUE — FILTRES + CARTE
═══════════════════════════════════════════════════════════ */
/* Petits filtres réutilisés sur le blog */
.filter-bar {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 32px;
}
.filter-btn {
  padding: 8px 20px;
  border: 1.5px solid var(--gray-300);
  border-radius: 24px;
  background: var(--white);
  color: var(--gray-700);
  font-size: 0.875rem;
  font-weight: 500;
  transition: all var(--transition);
}
.filter-btn:hover {
  border-color: var(--gold);
  color: var(--gold);
}
.filter-btn.active {
  background: var(--gold);
  border-color: var(--gold);
  color: var(--white);
}

/* Grands boutons type de voyage (boutique) */
.voyage-type-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-bottom: 32px;
}
@media (max-width: 700px) {
  .voyage-type-grid {
    grid-template-columns: 1fr;
  }
}
.voyage-type-btn {
  position: relative;
  height: 120px;
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: none;
  cursor: pointer;
  transition: transform var(--transition), box-shadow var(--transition);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0;
}
.voyage-type-btn:hover { transform: translateY(-2px); box-shadow: var(--shadow-md); }
.voyage-type-btn.active {
  box-shadow: 0 0 0 3px var(--gold), var(--shadow-md);
}
.voyage-type-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
  transition: transform .4s ease;
}
.voyage-type-btn:hover .voyage-type-bg { transform: scale(1.05); }
.voyage-type-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,.48);
  transition: background var(--transition);
}
.voyage-type-btn.active .voyage-type-overlay { background: rgba(205,188,114,.45); }
.voyage-type-btn:hover .voyage-type-overlay { background: rgba(205,188,114,.35); }
.voyage-type-label {
  position: relative;
  z-index: 1;
  color: var(--white);
  font-family: var(--font-title);
  font-weight: 600;
  font-size: 1.05rem;
  letter-spacing: .02em;
  text-shadow: 0 1px 6px rgba(0,0,0,.6);
  text-align: center;
  padding: 0 16px;
}

/* Toggle carte + carte */
.map-toggle-btn {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 16px 24px;
  background: #1C1A15;
  color: var(--white);
  border: none;
  border-radius: var(--radius-lg);
  font-family: var(--font-title);
  font-size: .95rem;
  font-weight: 600;
  letter-spacing: .03em;
  cursor: pointer;
  margin-bottom: 16px;
  transition: background var(--transition), box-shadow var(--transition);
}
.map-toggle-btn:hover { background: var(--brown-dark); }
.map-toggle-btn.open { background: var(--brown); box-shadow: 0 0 0 2px var(--gold); }
.map-toggle-chevron {
  transition: transform var(--transition);
}
.map-toggle-btn.open .map-toggle-chevron { transform: rotate(180deg); }

.map-section {
  margin-bottom: 40px;
}
.map-header {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  margin-bottom: 10px;
}
.shop-map {
  height: 380px;
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1.5px solid var(--gray-300);
  box-shadow: var(--shadow);
}
.shop-no-results {
  text-align: center;
  padding: 40px;
  color: var(--gray-500);
  font-size: 1rem;
}

/* Guide sur mesure */
.section-guide-mesure {
  background: var(--brown);
  color: var(--white);
}
.guide-mesure-inner {
  display: flex;
  flex-direction: column;
  gap: 36px;
  align-items: center;
  text-align: center;
}
.guide-mesure-subtitle {
  font-size: 1.1rem;
  color: var(--taupe-light);
  margin-bottom: 12px;
}
.guide-mesure-inner p {
  color: rgba(255,255,255,.8);
}
.guide-mesure-img {
  max-width: 220px;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  margin: 0 auto 20px;
}

/* Products hidden state (JS filters) */
.product-card.hidden,
.blog-card.hidden { display: none; }

/* ── Carte guide sur mesure — pleine largeur ── */
.product-card-featured {
  grid-column: 1 / -1;
}
.product-card-featured .product-card-link {
  display: grid;
  grid-template-columns: 340px 1fr;
  min-height: 220px;
}
.product-card-featured .product-card-img-wrap {
  aspect-ratio: unset;
  height: 100%;
}
.product-card-featured .product-card-body {
  padding: 36px 40px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 12px;
}
.product-card-featured .product-card-title {
  font-size: 1.4rem;
  margin-bottom: 4px;
}
.product-card-featured .product-card-desc {
  font-size: .95rem;
  color: rgba(255,255,255,.7);
  line-height: 1.6;
  margin-bottom: 4px;
}

/* Carte guide sur mesure — fond sombre pour se démarquer */
.product-card-featured {
  background: #1C1A15;
}
.product-card-featured .product-card-body {
  background: #1C1A15;
}
.product-card-featured .product-card-title {
  color: var(--white);
}

/* ── Produits recommandés dans l'article ── */
.article-products {
  background: var(--gray-100);
}
.article-products-title {
  font-size: 1.3rem;
  margin-bottom: 28px;
}

/* ═══════════════════════════════════════════════════════════
   SINGLE PRODUCT
═══════════════════════════════════════════════════════════ */
.single-product-page { padding: 40px 0 60px; }
.product-layout {
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px;
  margin-bottom: 60px;
}
.product-main-img {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
}
.product-main-img img { width: 100%; height: auto; display: block; }
.product-gallery-thumbs {
  display: flex;
  gap: 10px;
  margin-top: 12px;
  flex-wrap: wrap;
}
.product-thumb {
  width: 70px;
  height: 70px;
  border-radius: var(--radius);
  overflow: hidden;
  border: 2px solid var(--gray-300);
  cursor: pointer;
  transition: border-color var(--transition);
}
.product-thumb:hover { border-color: var(--gold); }
.product-thumb img { width: 100%; height: 100%; object-fit: cover; }
.product-cat-badge {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: .05em;
  color: var(--gold);
  margin-bottom: 10px;
}
.product-title { margin-bottom: 16px; }
.product-price-wrap {
  margin-bottom: 20px;
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--gold);
}
.product-price-wrap .woocommerce-Price-amount { color: var(--gold); }
.product-short-desc {
  margin-bottom: 24px;
  color: var(--gray-700);
  line-height: 1.65;
}
/* Boutons express visuellement avant le formulaire panier */
.product-buy-wrap {
  margin-bottom: 24px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.product-buy-wrap form.cart {
  order: 10;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
/* Boutons de paiement express (PayPal, Apple Pay, Google Pay, Stripe) — en premier */
.product-buy-wrap .wc-block-components-express-payment,
.product-buy-wrap .wcpay-payment-request-wrapper,
.product-buy-wrap .ppcp-button-product,
.product-buy-wrap .payment_request_place_order_button {
  order: 1;
  margin-bottom: 16px;
}
.product-buy-wrap .wc-block-components-express-payment__title,
.product-buy-wrap .wcpay-payment-request-button-separator {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: .8rem;
  color: var(--gray-500);
  text-transform: uppercase;
  letter-spacing: .08em;
  margin: 14px 0;
}
.product-buy-wrap .wc-block-components-express-payment__title::before,
.product-buy-wrap .wc-block-components-express-payment__title::after,
.product-buy-wrap .wcpay-payment-request-button-separator::before,
.product-buy-wrap .wcpay-payment-request-button-separator::after {
  content: '';
  flex: 1;
  height: 1px;
  background: var(--gray-300);
}

.product-buy-wrap .single_add_to_cart_button,
.product-buy-wrap .button {
  padding: 14px 32px !important;
  background: var(--gold) !important;
  color: var(--white) !important;
  border: 2px solid var(--gold) !important;
  border-radius: var(--radius) !important;
  font-weight: 600 !important;
  font-size: 1rem !important;
  cursor: pointer !important;
  transition: all var(--transition) !important;
  width: 100%;
  text-align: center;
}
.product-buy-wrap .single_add_to_cart_button:hover {
  background: var(--gold-dark) !important;
  border-color: var(--gold-dark) !important;
}
/* Reassurance */
.product-reassurance {
  display: flex;
  flex-direction: column;
  gap: 10px;
  padding: 0;
  background: none;
  margin-bottom: 20px;
}
.reassurance-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.9rem;
  color: var(--gray-700);
  font-weight: 500;
}
.product-destination {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 0.875rem;
  color: var(--gray-500);
}
.product-full-desc .product-desc-title { margin-bottom: 20px; }
.product-copyright {
  font-size: 0.8rem;
  color: var(--gray-500);
  border-top: 1px solid var(--gray-300);
  padding-top: 20px;
  margin-top: 20px;
}
.product-related .section-title { margin-bottom: 24px; }

/* ═══════════════════════════════════════════════════════════
   READING PROGRESS BAR (articles)
═══════════════════════════════════════════════════════════ */
.reading-progress-bar {
  position: fixed;
  top: 0;
  left: 0;
  width: 0%;
  height: 3px;
  background: var(--gold);
  z-index: 1100;
  transition: width 0.08s linear;
  pointer-events: none;
}
/* Admin bar offset (WP admin bar: 32px desktop, 46px mobile) */
.admin-bar .site-header { top: 32px; }
@media screen and (max-width: 782px) {
  .admin-bar .site-header { top: 46px; }
}

/* ═══════════════════════════════════════════════════════════
   SINGLE ARTICLE
═══════════════════════════════════════════════════════════ */
.single-hero {
  height: 420px;
  overflow: hidden;
  position: relative;
}
.single-hero-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
/* Overlay dégradé avec titre sur l'image */
.single-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,.80) 0%, rgba(0,0,0,.30) 55%, transparent 100%);
  display: flex;
  align-items: flex-end;
  padding-bottom: 44px;
}
.single-hero-overlay .single-title {
  color: var(--white);
  margin-bottom: 0;
  text-shadow: 0 2px 8px rgba(0,0,0,.4);
}
.single-hero-overlay .single-meta {
  margin-bottom: 12px;
}
.single-hero-overlay .single-date,
.single-hero-overlay .single-author {
  color: var(--white);
}
.single-hero-overlay .single-meta a {
  color: var(--gold);
}
.single-hero-overlay .single-meta .single-cat-badge {
  color: var(--white) !important;
}
.single-hero-overlay .single-sep {
  color: rgba(255,255,255,.4);
}
.single-article { padding: 40px 0 60px; }
.single-container { max-width: 780px; }
.single-breadcrumb {
  margin-bottom: 24px;
  font-size: 0.85rem;
  color: var(--gray-500);
}
.breadcrumb a { color: var(--gold); }
.breadcrumb a:hover { text-decoration: underline; }
.single-meta {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 16px;
}
.single-cat-badge {
  background: var(--gold);
  color: var(--white);
  font-size: 0.7rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: .06em;
  padding: 3px 10px;
  border-radius: 20px;
}
.single-date, .single-author { font-size: 0.85rem; color: var(--gray-500); }
.single-sep { color: var(--gray-300); }
.single-views {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  font-size: 0.85rem;
  color: var(--gray-500);
}
.single-views svg { flex-shrink: 0; }
.single-title { margin-bottom: 32px; }
.single-content { margin-bottom: 32px; }
.single-content h2, .single-content h3 { margin: 28px 0 14px; color: var(--brown); }
.single-content p { margin-bottom: 1.2em; }
.single-content img { border-radius: var(--radius); margin: 24px 0; }
.single-content blockquote {
  border-left: 4px solid var(--gold);
  padding: 16px 24px;
  background: var(--gold-light);
  border-radius: 0 var(--radius) var(--radius) 0;
  margin: 28px 0;
  font-style: italic;
  color: var(--brown);
}
.single-content a { color: var(--gold); text-decoration: underline; }
.single-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 40px;
}
.tag-pill {
  padding: 4px 12px;
  background: var(--gray-200);
  border-radius: 20px;
  font-size: 0.8rem;
  color: var(--gray-700);
  transition: all var(--transition);
}
.tag-pill:hover { background: var(--gold); color: var(--white); }
.section-similar { background: var(--gray-100); }
.section-similar .section-title { margin-bottom: 28px; }

/* ═══════════════════════════════════════════════════════════
   ENTRY CONTENT (page.php)
═══════════════════════════════════════════════════════════ */
.page-content-wrap { padding: 60px 0; }
.page-title { margin-bottom: 32px; }
.entry-content h2, .entry-content h3 { margin: 24px 0 12px; }
.entry-content p { margin-bottom: 1.2em; line-height: 1.7; }
.entry-content img { border-radius: var(--radius); margin: 16px 0; max-width: 100%; }
.entry-content ul, .entry-content ol {
  list-style: disc;
  padding-left: 24px;
  margin-bottom: 1.2em;
}
.entry-content ol { list-style: decimal; }
.entry-content a { color: var(--gold); text-decoration: underline; }
.entry-content blockquote {
  border-left: 4px solid var(--gold);
  padding: 16px 24px;
  background: var(--gold-light);
  border-radius: 0 var(--radius) var(--radius) 0;
  margin: 24px 0;
  font-style: italic;
  color: var(--brown);
}
.page-article { max-width: 780px; }
.woocommerce-cart .page-article,
.woocommerce-account .page-article { max-width: 100%; }

/* ═══════════════════════════════════════════════════════════
   PAGINATION
═══════════════════════════════════════════════════════════ */
.pagination {
  margin-top: 48px;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 8px;
}
.pagination .page-numbers {
  padding: 8px 14px;
  border: 1.5px solid var(--gray-300);
  border-radius: var(--radius);
  color: var(--gray-700);
  font-size: 0.9rem;
  transition: all var(--transition);
}
.pagination .page-numbers:hover,
.pagination .page-numbers.current {
  background: var(--gold);
  border-color: var(--gold);
  color: var(--white);
}

/* ═══════════════════════════════════════════════════════════
   404
═══════════════════════════════════════════════════════════ */
.error-404 {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 60vh;
}
.error-404-code {
  display: block;
  font-size: clamp(5rem, 20vw, 10rem);
  font-family: var(--font-title);
  font-weight: 600;
  color: var(--gold-light);
  line-height: 1;
  margin-bottom: 8px;
}
.error-404-title { margin-bottom: 16px; }
.error-404-text { color: var(--gray-500); margin-bottom: 32px; }
.error-404-actions { display: flex; flex-wrap: wrap; gap: 12px; justify-content: center; }

/* ═══════════════════════════════════════════════════════════
   GUIDE SUR MESURE page
═══════════════════════════════════════════════════════════ */
.section-intro {
  color: var(--gray-700);
  max-width: 580px;
  margin: 0 auto 40px;
  text-align: center;
}
.mesure-features-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
}
.mesure-feature {
  background: var(--white);
  border: 1.5px solid var(--gray-300);
  border-radius: var(--radius-lg);
  padding: 28px 24px;
  transition: border-color var(--transition), box-shadow var(--transition);
}
.mesure-feature:hover { border-color: var(--gold); box-shadow: var(--shadow); background: var(--gold-light); }
.mesure-feature-icon { font-size: 2rem; margin-bottom: 14px; }
.mesure-feature h3 { font-size: 1.05rem; margin-bottom: 8px; color: var(--brown); }
.mesure-feature p { font-size: .9rem; color: var(--gray-700); margin: 0; line-height: 1.55; }
.process-steps {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
  margin-top: 40px;
}
.process-step {
  padding: 28px 24px;
  background: var(--white);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.process-step-num {
  font-family: var(--font-title);
  font-size: 2.8rem;
  font-weight: 600;
  color: var(--gold);
  line-height: 1;
  opacity: .45;
}
.process-step h3 { font-size: 1.1rem; }
.process-step p { font-size: .92rem; color: var(--gray-700); margin: 0; }
.cta-devis-subtitle {
  color: rgba(255,255,255,.75);
  max-width: 540px;
  margin: 16px auto 32px;
}

/* ═══════════════════════════════════════════════════════════
   GUIDE INLINE (shortcode [guide] dans les articles)
═══════════════════════════════════════════════════════════ */
.guide-inline-card {
  margin: 32px 0;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  border: 1.5px solid var(--gray-300);
  transition: box-shadow var(--transition), border-color var(--transition);
}
.guide-inline-card:hover { box-shadow: var(--shadow-lg); border-color: var(--gold); }
.guide-inline-link {
  display: flex;
  align-items: stretch;
  color: inherit;
}
.guide-inline-img-wrap {
  position: relative;
  flex: 0 0 170px;
  overflow: hidden;
  min-height: 130px;
}
.guide-inline-img-wrap img {
  position: absolute !important;
  inset: 0;
  width: 100% !important;
  height: 100% !important;
  object-fit: cover;
  display: block;
}
.guide-inline-body {
  padding: 24px 28px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 8px;
  background: var(--white);
  flex: 1;
}
.guide-inline-label {
  font-size: .75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: .08em;
  color: var(--gold);
  margin: 0;
}
.guide-inline-title { font-size: 1.15rem; margin: 0; }
.guide-inline-price { font-weight: 700; font-size: 1.05rem; color: var(--gold); }
.guide-inline-body .btn { margin-top: 4px; align-self: stretch; text-align: center; }

/* ── Lire aussi (injection automatique dans les articles) ── */
.lire-aussi-block {
  margin: 36px 0;
  padding: 20px 24px;
  background: var(--gray-100);
  border-left: 4px solid var(--gold);
  border-radius: 0 var(--radius) var(--radius) 0;
}
.lire-aussi-title {
  display: block;
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .1em;
  color: var(--gold);
  margin-bottom: 12px;
}
.lire-aussi-block ul {
  list-style: none !important;
  padding: 0 !important;
  margin: 0 !important;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.lire-aussi-block li { display: flex; align-items: baseline; gap: 6px; }
.lire-aussi-block li::before { content: '→'; color: var(--gold); font-weight: 700; flex-shrink: 0; }
.lire-aussi-block a { color: var(--gray-700); font-weight: 500; font-size: 0.95rem; transition: color var(--transition); }
.lire-aussi-block a:hover { color: var(--gold); }

/* ═══════════════════════════════════════════════════════════
   FOOTER
═══════════════════════════════════════════════════════════ */
.site-footer {
  background: var(--footer-bg);
  color: rgba(255,255,255,.85);
}
.footer-inner {
  display: grid;
  grid-template-columns: 1fr;
  gap: 36px;
  padding: 60px 20px 40px;
}
.footer-logo { filter: brightness(0) invert(1) !important; opacity: .9; margin-bottom: 12px; }
.footer-tagline {
  font-size: 0.9rem;
  color: rgba(255,255,255,.65);
  line-height: 1.6;
  max-width: 240px;
}
.footer-heading {
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: .1em;
  font-weight: 600;
  color: var(--gold);
  margin-bottom: 16px;
}
.footer-nav {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.footer-nav a {
  font-size: 0.9rem;
  color: rgba(255,255,255,.75);
  transition: color var(--transition);
}
.footer-nav a:hover { color: var(--gold); }
.footer-socials {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.footer-socials .social-link {
  color: rgba(255,255,255,.75);
}
.footer-socials .social-link:hover { color: var(--gold); }
/* Hide scroll-to-top buttons added by plugins */
#back-to-top,
#wp-back-to-top,
.back-to-top-wrapper,
.scrollup,
#go-to-top { display: none !important; }
.footer-legal {
  border-top: 1px solid rgba(255,255,255,.15);
  padding: 20px;
}
.footer-legal-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  text-align: center;
}
.footer-legal p { font-size: 0.8rem; color: rgba(255,255,255,.5); margin: 0; }
.footer-legal-links {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  justify-content: center;
}
.footer-legal-links a {
  font-size: 0.8rem;
  color: rgba(255,255,255,.5);
  transition: color var(--transition);
}
.footer-legal-links a:hover { color: var(--gold); }

/* ═══════════════════════════════════════════════════════════
   SCROLL TO TOP
═══════════════════════════════════════════════════════════ */
.scroll-top {
  position: fixed;
  bottom: 28px;
  right: 28px;
  width: 42px;
  height: 42px;
  background: var(--gold);
  color: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow-md);
  opacity: 0;
  pointer-events: none;
  transition: opacity var(--transition), transform var(--transition);
  z-index: 900;
}
.scroll-top.visible {
  opacity: 1;
  pointer-events: auto;
}

/* ═══════════════════════════════════════════════════════════
   CONTACT FORM 7
═══════════════════════════════════════════════════════════ */
.wpcf7-form p { margin-bottom: 14px; }
.wpcf7-form .wpcf7-form-control {
  width: 100%;
  padding: 12px 16px;
  border: 1.5px solid var(--gray-300);
  border-radius: var(--radius);
  font-size: 0.95rem;
  font-family: var(--font-body);
  color: var(--black);
  background: var(--white);
  outline: none;
  transition: border-color var(--transition), box-shadow var(--transition);
  box-sizing: border-box;
}
.wpcf7-form .wpcf7-form-control:focus {
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(205,188,114,.15);
}
.wpcf7-form textarea.wpcf7-form-control { min-height: 140px; resize: vertical; }
.wpcf7-form .wpcf7-submit {
  background: var(--gold);
  color: var(--white);
  border: 2px solid var(--gold);
  padding: 12px 28px;
  border-radius: var(--radius);
  font-size: 0.95rem;
  font-weight: 600;
  font-family: var(--font-body);
  cursor: pointer;
  transition: all var(--transition);
  width: auto;
}
.wpcf7-form .wpcf7-submit:hover {
  background: var(--gold-dark);
  border-color: var(--gold-dark);
}
.wpcf7-form .wpcf7-acceptance { font-size: 0.85rem; color: var(--gray-500); }
.wpcf7-not-valid-tip { color: #ef4444; font-size: 0.8rem; margin-top: 4px; display: block; }
.wpcf7-response-output {
  border-radius: var(--radius);
  padding: 12px 16px;
  font-size: 0.9rem;
  margin-top: 16px;
  border: none;
}
.wpcf7-mail-sent-ok { background: #f0fdf4; color: #15803d; }
.wpcf7-validation-errors,
.wpcf7-spam-blocked { background: #fef2f2; color: #dc2626; }
.scroll-top:hover {
  background: var(--gold-dark);
  transform: translateY(-2px);
}

/* ═══════════════════════════════════════════════════════════
   MISC
═══════════════════════════════════════════════════════════ */
.no-posts { color: var(--gray-500); text-align: center; padding: 40px 0; }
.blog-no-results { color: var(--gray-500); text-align: center; padding: 40px 0; }

/* Notre histoire — réduire l'espace entre compteurs et texte */
.section-counters { padding-bottom: 20px; }
.section-histoire-text { padding-top: 30px; }

/* Guide sur mesure — réduire espacement */
.section-mesure-trust { padding: 20px 0 0; }
.section-mesure-features { padding-top: 24px; }
.mesure-trust-badges {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 24px;
}
.mesure-trust-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--gray-700);
}
.mesure-trust-badge svg { color: var(--gold); flex-shrink: 0; }
.section-intro {
  color: var(--gray-700);
  max-width: 700px;
  margin: 0 auto 40px;
  font-size: 1rem;
  line-height: 1.7;
}
.cta-devis-subtitle {
  color: rgba(255,255,255,.75);
  font-size: 1rem;
  max-width: 540px;
  margin: 16px auto 28px;
}

/* Leaflet popup */
.leaflet-popup-content-wrapper {
  border-radius: var(--radius) !important;
  box-shadow: var(--shadow-md) !important;
}
.map-popup { text-align: center; }
.map-popup strong { display: block; margin-bottom: 8px; font-size: 0.9rem; }
.map-popup a {
  display: inline-block;
  padding: 6px 14px;
  background: var(--gold);
  color: var(--white);
  border-radius: var(--radius);
  font-size: 0.8rem;
  font-weight: 600;
  transition: background var(--transition);
}
.map-popup a:hover { background: var(--gold-dark); }

/* Custom Leaflet marker */
.parconaute-marker {
  background: var(--gold);
  border: 2px solid var(--white);
  border-radius: 50%;
  width: 14px;
  height: 14px;
  box-shadow: 0 2px 6px rgba(0,0,0,.3);
}
