/* ==========================================================
   Refresh by Eli — Feuille de style publique
   Palette :
     Sage  : #BBC1B3   (sections about / testimonials / footer)
     Brown : #8B6E5C   (titres de sections)
     Ivory : #F8F5F0   (fond clair alternatif)
     Dark  : #1a1a1a   (texte)
   ========================================================== */

/* ── Variables ─────────────────────────────────────────────── */
:root {
  --sage:          #BBC1B3;
  --sage-dark:     #a0ab98;
  --sage-light:    #d4d9ce;
  --ivory:         #F8F5F0;
  --brown:         #A07360;
  --brown-dark:    #8B6254;
  --dark:          #1a1a1a;
  --dark-mid:      #333333;
  --muted:         #666666;
  --white:         #ffffff;
  --border:        #e2e2e2;
  --icon-fill:     #E5EEF0;

  --font-body:     'EB Garamond', 'Georgia', serif;
  --font-serif:    'EB Garamond', 'Georgia', serif;

  --container:     1440px;
  --radius:        4px;
  --transition:    0.2s ease;
  --header-h:      70px;
}

/* ── Reset ──────────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html {
  scroll-behavior: smooth;
  font-size: 18px;
  overflow-x: hidden; /* Fix Firefox mobile : position:fixed + overflow sur body seul cause un décalage */
}

body {
  font-family: var(--font-body);
  color: var(--dark);
  background: var(--white);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

img { display: block; max-width: 100%; }
a   { color: inherit; text-decoration: none; }
ul  { list-style: none; }
button { font-family: inherit; cursor: pointer; border: none; background: none; }

/* ── Container ──────────────────────────────────────────────── */
.container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 40px;
}

/* ── Section headings ───────────────────────────────────────── */
.section-title {
  font-family: 'EB Garamond', sans-serif;
  font-size: 44px;
  font-weight: 600;
  color: #A07360;
  text-align: center;
  margin-bottom: 40px;
  line-height: 1.2;
}

/* ── Buttons ────────────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 11px 28px;
  font-family: var(--font-body);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  border: 1px solid transparent;
  border-radius: var(--radius);
  transition: all var(--transition);
  white-space: nowrap;
  cursor: pointer;
}

.btn-dark {
  background: var(--dark);
  color: var(--white);
  border-color: var(--dark);
}
.btn-dark:hover { background: #333; }

.btn-outline-white {
  background: transparent;
  color: var(--white);
  border-color: var(--white);
}
.btn-outline-white:hover { background: rgba(255,255,255,0.12); }

.btn-outline-dark {
  background: transparent;
  color: var(--dark);
  border: 1px solid var(--dark);
  border-radius: 0;
  letter-spacing: 0.12em;
  font-size: 11px;
  padding: 13px 32px;
}
.btn-outline-dark:hover { background: var(--dark); color: var(--white); }

.btn-outline-brown {
  background: transparent;
  color: var(--brown);
  border-color: var(--brown);
  font-size: 11px;
}
.btn-outline-brown:hover { background: var(--brown); color: var(--white); }

/* ==========================================================
   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 rgba(0,0,0,0.06);
  transition: box-shadow var(--transition);
}

.site-header.scrolled {
  box-shadow: 0 2px 16px rgba(0,0,0,0.08);
}

.header-inner {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 40px;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

/* Logo */
.header-logo img {
  height: 38px;
  width: auto;
}

/* Nav desktop */
.header-nav {
  display: flex;
  align-items: center;
  gap: 32px;
}

.header-nav a {
  font-size: 12.5px;
  font-weight: 500;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  color: var(--dark);
  position: relative;
  padding-bottom: 3px;
  transition: color var(--transition);
}

.header-nav a::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: 0;
  width: 0;
  height: 1px;
  background: var(--dark);
  transition: width 0.25s ease;
}

.header-nav a:hover::after,
.header-nav a.active::after {
  width: 100%;
}

/* Social icon */
.header-social {
  display: flex;
  align-items: center;
  gap: 14px;
}

.header-social a {
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--dark);
  transition: color var(--transition);
}

.header-social a:hover { color: var(--brown); }
.header-social svg { width: 20px; height: 20px; fill: currentColor; }

/* Hamburger */
.hamburger-btn {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 6px;
  background: none;
  border: none;
  cursor: pointer;
}

.hamburger-btn span {
  display: block;
  width: 22px;
  height: 1.5px;
  background: var(--dark);
  border-radius: 2px;
  transition: all 0.25s ease;
  transform-origin: center;
}

.hamburger-btn.open span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
.hamburger-btn.open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.hamburger-btn.open span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }

/* Mobile menu */
.mobile-menu {
  display: none;
  position: fixed;
  top: var(--header-h);
  left: 0;
  right: 0;
  background: var(--white);
  border-bottom: 1px solid var(--border);
  padding: 20px 0;
  z-index: 999;
  box-shadow: 0 8px 24px rgba(0,0,0,0.1);
}

.mobile-menu.open { display: block; }

.mobile-menu a {
  display: block;
  padding: 13px 40px;
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  color: var(--dark);
  border-bottom: 1px solid rgba(0,0,0,0.04);
  transition: background var(--transition);
}

.mobile-menu a:hover { background: var(--ivory); }

/* ==========================================================
   HERO
   ========================================================== */
.hero {
  margin-top: var(--header-h);
  position: relative;
}

.hero-bg {
  position: relative;
  background-image: url('/uploads/home/hero.webp');
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
  min-height: 70vh;
  display: flex;
  flex-direction: column;
  align-items: stretch;
  justify-content: space-between;
}

/* Overlay sombre uniforme */
.hero-bg::before {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.45);
  z-index: 0;
}

/* Zone titre + boutons — centrée verticalement */
.hero-content {
  position: relative;
  z-index: 1;
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 60px 40px 40px;
}

.hero-title {
  font-family: 'EB Garamond', serif;
  font-size: clamp(2.2rem, 4.2vw, 3.8rem);
  font-weight: 400;
  font-style: normal;
  color: var(--white);
  line-height: 1.2;
  letter-spacing: 0.01em;
  margin-bottom: 40px;
  max-width: 860px;
}

/* Boutons hero */
.hero-buttons {
  display: flex;
  gap: 18px;
  justify-content: center;
  flex-wrap: wrap;
}

.btn-hero {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 32px;
  font-family: 'EB Garamond', serif;
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  background: rgba(255, 255, 255, 0.92);
  color: var(--dark);
  border: 1px solid rgba(255, 255, 255, 0.7);
  border-radius: 0;
  transition: background var(--transition), color var(--transition);
  white-space: nowrap;
  cursor: pointer;
  text-decoration: none;
}

.btn-hero:hover {
  background: var(--white);
  color: var(--dark);
}

.btn-hero-outline {
  background: rgba(255, 255, 255, 0.10);
  color: var(--white);
  border: 1px solid rgba(255, 255, 255, 0.75);
}

.btn-hero-outline:hover {
  background: rgba(255, 255, 255, 0.20);
  color: var(--white);
}

/* Info strip — en bas du hero */
.hero-info {
  position: relative;
  z-index: 1;
  width: 100%;
}

.hero-info-inner {
  max-width: 1100px;
  margin: 0 auto;
  padding: 36px 80px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 60px;
  text-align: center;
}

.info-col h3 {
  font-family: 'EB Garamond', serif;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--white);
  margin-bottom: 16px;
}

.info-col p,
.info-col address {
  font-family: 'EB Garamond', serif;
  font-size: 17px;
  font-weight: 300;
  line-height: 1.65;
  color: #FFFFFF;
  font-style: normal;
  text-transform: uppercase;
}

.info-col a {
  font-family: 'EB Garamond', serif;
  font-size: 17px;
  font-weight: 300;
  color: #FFFFFF;
  text-transform: uppercase;
  transition: opacity var(--transition);
}
.info-col a:hover { opacity: 0.75; }

/* ==========================================================
   SERVICES / TABS
   ========================================================== */
.section-services {
  padding: 80px 0;
  background: var(--white);
}

.tabs-nav {
  display: flex;
  justify-content: center;
  gap: 0;
  border-bottom: 1px solid var(--border);
  margin-bottom: 48px;
  flex-wrap: wrap;
}

.tab-btn {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  padding: 16px 36px 20px;
  background: none;
  border: none;
  border-bottom: 2px solid transparent;
  cursor: pointer;
  transition: all var(--transition);
  position: relative;
  bottom: -1px;
  color: var(--muted);
}

.tab-btn svg {
  width: 44px;
  height: 44px;
}

.tab-btn .tab-label {
  font-size: 10.5px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  text-align: center;
  transition: color var(--transition);
}

.tab-btn:hover { color: var(--dark); }
.tab-btn:hover .tab-label { color: var(--dark); }

.tab-btn.active {
  color: var(--dark);
  border-bottom-color: var(--dark);
}

.tab-btn.active .tab-label { color: var(--dark); }

/* Tab panels */
.tabs-content { max-width: 680px; margin: 0 auto; text-align: center; }

.tab-panel { display: none; animation: fadeInUp 0.3s ease; }
.tab-panel.active { display: block; }

@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(10px); }
  to   { opacity: 1; transform: translateY(0); }
}

.tab-panel p {
  font-size: 19px;
  line-height: 1.8;
  color: var(--dark-mid);
  margin-bottom: 32px;
}

/* ==========================================================
   ABOUT / PHILOSOPHIE
   ========================================================== */
.section-about {
  background: var(--sage);
  padding: 80px 0;
}

.about-grid {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 80px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

/* Image : dimensions naturelles, pas forcées */
.about-image img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 0;
  box-shadow: none;
}

/* Titre : valeurs exactes extraites du site WP original */
.about-text h2 {
  font-family: 'EB Garamond', sans-serif;
  font-size: 44px;
  font-weight: 600;
  color: #A07360;
  margin-bottom: 22px;
  line-height: 1.2;
}

.about-text p {
  font-family: var(--font-serif);
  font-size: 19px;
  line-height: 1.85;
  color: var(--dark);
  margin-bottom: 32px;
}

/* ==========================================================
   GALLERY CAROUSEL
   ========================================================== */
.section-gallery {
  background: var(--white);
  padding: 40px 0 32px;
}

/* Wrapper centré */
.carousel-wrapper {
  position: relative;
  max-width: 1000px;
  margin: 0 auto;
  padding: 0 60px; /* espace pour les flèches */
}

.carousel {
  position: relative;
  overflow: hidden;
  user-select: none;
}

.carousel-track {
  display: flex;
  transition: transform 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.carousel-slide {
  flex: 0 0 100%;
  min-width: 100%;
}

.carousel-slide img {
  width: 100%;
  height: auto;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  display: block;
}

/* Flèches — à l'extérieur de l'image, fines */
.carousel-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 36px;
  height: 36px;
  background: none;
  border: none;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 10;
  color: var(--dark-mid);
  transition: color var(--transition);
  padding: 0;
}

.carousel-btn:hover { color: var(--dark); }
.carousel-btn svg { width: 22px; height: 22px; fill: currentColor; }
.carousel-btn.prev { left: 8px; }
.carousel-btn.next { right: 8px; }

/* Dots — cercles creux */
.carousel-dots {
  display: flex;
  justify-content: center;
  gap: 10px;
  padding: 20px 0 0;
  background: transparent;
}

.carousel-dot {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  border: 1px solid var(--dark-mid);
  background: transparent;
  cursor: pointer;
  padding: 0;
  transition: background var(--transition), border-color var(--transition);
}

.carousel-dot.active {
  background: var(--dark);
  border-color: var(--dark);
}

/* ==========================================================
   TESTIMONIALS
   ========================================================== */
.section-testimonials {
  background: var(--sage);
  padding: 80px 0;
  position: relative;
  overflow: hidden;
}

.testimonials-label {
  text-align: center;
  font-size: 10.5px;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--dark-mid);
  margin-bottom: 36px;
}

.testimonials-carousel {
  position: relative;
  max-width: 680px;
  margin: 0 auto;
  padding: 0 60px;
}

.testimonials-track {
  overflow: hidden;
}

.testimonials-inner {
  display: flex;
  transition: transform 0.4s ease;
}

.testimonial-slide {
  flex: 0 0 100%;
  min-width: 100%;
  text-align: center;
  padding: 0 10px;
}

.testimonial-quote {
  font-family: var(--font-serif);
  font-size: 19px;
  font-style: italic;
  font-weight: 500;
  line-height: 1.75;
  color: var(--dark);
  margin-bottom: 24px;
}

.testimonial-author {
  font-family: var(--font-serif);
  font-size: 19px;
  color: var(--dark-mid);
}

.testimonials-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 36px;
  height: 36px;
  background: none;
  border: 1px solid rgba(0,0,0,0.25);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all var(--transition);
}

.testimonials-btn:hover {
  background: var(--dark);
  border-color: var(--dark);
}

.testimonials-btn:hover svg { fill: var(--white); }
.testimonials-btn svg { width: 14px; height: 14px; fill: var(--dark); }
.testimonials-btn.prev { left: 0; }
.testimonials-btn.next { right: 0; }

.testimonials-dots {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-top: 32px;
}

.testimonials-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  border: none;
  background: rgba(0,0,0,0.25);
  cursor: pointer;
  padding: 0;
  transition: background var(--transition);
}

.testimonials-dot.active { background: var(--dark); }

/* ==========================================================
   INSTAGRAM — Masonry
   ========================================================== */
.section-instagram {
  background: var(--white);
  padding: 80px 0;
  text-align: center;
}

/* Masonry via CSS columns */
.instagram-masonry {
  columns: 3;
  column-gap: 6px;
  max-width: 820px;
  margin: 0 auto 36px;
  padding: 0 40px;
}

.instagram-masonry-item {
  display: block;
  position: relative;
  overflow: hidden;
  break-inside: avoid;
  margin-bottom: 6px;
  background: var(--border);
  line-height: 0; /* supprime espace sous l'image */
}

.instagram-masonry-item img {
  width: 100%;
  height: auto;
  display: block;
  transition: transform 0.35s ease;
}

/* Badge vidéo */
.ig-video-badge {
  position: absolute;
  top: 8px;
  right: 8px;
  width: 28px;
  height: 28px;
  background: rgba(0,0,0,0.55);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 2;
}

.ig-video-badge svg {
  width: 14px;
  height: 14px;
  fill: var(--white);
}

.instagram-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.60);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity var(--transition);
}

.instagram-masonry-item:hover .instagram-overlay { opacity: 1; }
.instagram-masonry-item:hover img { transform: scale(1.04); }

.instagram-overlay svg { width: 28px; height: 28px; fill: var(--white); }

/* Fallback si aucun post */
.ig-fallback {
  text-align: center;
  padding: 24px;
}
.ig-fallback a {
  color: var(--brown);
  font-size: 14px;
  text-decoration: underline;
}

.instagram-btn-wrap { margin-top: 16px; }

/* ==========================================================
   PAGE BANNER (sous-pages)
   ========================================================== */
.page-banner {
  margin-top: var(--header-h);
  min-height: 210px;
  background: url('/uploads/about/photo-hero.jpg') right center / cover no-repeat;
  display: flex;
  align-items: center;
  justify-content: center;
}

.page-banner-content {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 40px 60px;
}

.page-banner-title {
  font-family: var(--font-serif);
  font-size: 57px;
  font-weight: 600;
  color: var(--dark);
  letter-spacing: 0.01em;
  line-height: 1.2;
  text-align: center;
}

/* ==========================================================
   NOS VALEURS — grille icônes
   ========================================================== */
.section-values {
  background: var(--white);
  padding: 80px 0;
}

.values-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 48px 80px;
  text-align: center;
}

.value-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
}

.value-icon {
  width: 53px;
  height: 53px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 4px;
}

.value-icon svg {
  width: 53px;
  height: 53px;
}

.value-title {
  font-family: var(--font-serif);
  font-size: 19px;
  font-weight: 600;
  color: var(--dark);
  line-height: 1.3;
}

.value-desc {
  font-family: var(--font-serif);
  font-size: 17px;
  line-height: 1.75;
  color: var(--dark-mid);
}

/* ==========================================================
   BIO — fond sage, photo gauche + texte droite
   ========================================================== */
.section-about-bio {
  background: var(--sage);
  padding: 80px 0;
}

.about-bio-grid {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 80px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.about-bio-image img {
  width: 100%;
  height: auto;
  display: block;
}

.about-bio-text h2 {
  font-family: var(--font-serif);
  font-size: 44px;
  font-weight: 600;
  color: var(--brown);
  margin-bottom: 24px;
  line-height: 1.2;
}

.about-bio-text p {
  font-family: var(--font-serif);
  font-size: 19px;
  line-height: 1.85;
  color: var(--dark);
  margin-bottom: 20px;
}

.about-bio-signature {
  margin-top: 8px;
  font-family: var(--font-serif);
  font-size: 19px;
  color: var(--brown);
}

/* ==========================================================
   MA CARRIÈRE — fond blanc, texte gauche + photo droite
   ========================================================== */
.section-career {
  background: var(--white);
  padding: 80px 0;
}

.career-grid {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 80px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.career-text h2 {
  font-family: var(--font-serif);
  font-size: 44px;
  font-weight: 600;
  color: var(--brown);
  margin-bottom: 24px;
  line-height: 1.2;
}

.career-text p {
  font-family: var(--font-serif);
  font-size: 17px;
  line-height: 1.8;
  color: var(--dark-mid);
  margin-bottom: 16px;
}

.career-text p:last-child { margin-bottom: 0; }

.career-image img {
  width: 100%;
  height: auto;
  display: block;
}

/* ==========================================================
   RESPONSIVE — page about
   ========================================================== */
@media (max-width: 1024px) {
  .about-bio-grid,
  .career-grid { gap: 48px; padding: 0 40px; }

  .values-grid { gap: 40px 40px; }
}

@media (max-width: 900px) {
  .about-bio-grid,
  .career-grid {
    grid-template-columns: 1fr;
    gap: 32px;
    padding: 0 40px;
  }

  /* Sur mobile, photo toujours au-dessus */
  .career-image { order: -1; }

  .values-grid { grid-template-columns: repeat(3, 1fr); gap: 32px 24px; }
}

@media (max-width: 640px) {
  .page-banner { min-height: 140px; background-size: auto 100%; }
  .page-banner-content { padding: 32px 20px; }
  .page-banner-title { font-size: 42px; }

  .section-values { padding: 56px 0; }
  .values-grid {
    grid-template-columns: 1fr;
    gap: 36px;
    max-width: 420px;
    margin: 0 auto;
  }

  .section-about-bio,
  .section-career { padding: 56px 0; }

  .about-bio-grid,
  .career-grid { padding: 0 20px; gap: 28px; }

  .about-bio-text h2,
  .career-text h2 { font-size: 32px; }

  .about-bio-text p,
  .career-text p { font-size: 16px; }

  .value-desc { font-size: 15px; }
  .value-title { font-size: 17px; }
}

/* ==========================================================
   PAGE FAQ — accordion élégant
   ========================================================== */
.section-faq {
  background: var(--white);
  padding: 96px 0 112px;
}

.faq-container {
  max-width: 760px;
  margin: 0 auto;
  padding: 0 40px;
}

.faq-intro {
  text-align: center;
  margin-bottom: 64px;
}

.faq-title {
  font-family: var(--font-serif);
  font-size: 44px;
  font-weight: 600;
  color: var(--brown);
  line-height: 1.2;
  margin-bottom: 16px;
}

.faq-subtitle {
  font-family: var(--font-serif);
  font-size: 18px;
  color: var(--muted);
  line-height: 1.6;
}

/* ── Liste ── */
.faq-list {
  border-top: 1px solid var(--border);
}

/* ── Item ── */
.faq-item {
  border-bottom: 1px solid var(--border);
}

/* ── Bouton question ── */
.faq-question {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 26px 0;
  background: none;
  border: none;
  cursor: pointer;
  text-align: left;
  font-family: var(--font-serif);
  font-size: 20px;
  font-weight: 600;
  color: var(--dark);
  line-height: 1.35;
  transition: color var(--transition);
}

.faq-question:hover {
  color: var(--brown);
}

.faq-item--open .faq-question {
  color: var(--brown);
}

.faq-question-text {
  flex: 1;
}

/* ── Icône +/− ── */
.faq-icon {
  flex-shrink: 0;
  width: 22px;
  height: 22px;
  position: relative;
  color: var(--brown);
  transition: color var(--transition);
}

.faq-icon svg {
  width: 22px;
  height: 22px;
  position: absolute;
  top: 0;
  left: 0;
  transition: opacity var(--transition), transform var(--transition);
}

.faq-icon-plus  { opacity: 1; }
.faq-icon-minus { opacity: 0; transform: rotate(-90deg); }

.faq-item--open .faq-icon-plus  { opacity: 0; transform: rotate(90deg); }
.faq-item--open .faq-icon-minus { opacity: 1; transform: rotate(0deg); }

/* ── Réponse ── */
.faq-answer {
  overflow: hidden;
}

.faq-answer[hidden] {
  display: none;
}

.faq-answer-inner {
  font-family: var(--font-serif);
  font-size: 17px;
  line-height: 1.85;
  color: var(--muted);
  padding: 0 0 28px;
  padding-right: 46px; /* espace pour l'icône */
}

/* ── Responsive ── */
@media (max-width: 640px) {
  .section-faq { padding: 64px 0 80px; }
  .faq-container { padding: 0 20px; }
  .faq-title { font-size: 32px; }
  .faq-intro { margin-bottom: 40px; }
  .faq-question { font-size: 17px; padding: 20px 0; }
  .faq-answer-inner { font-size: 16px; padding-right: 0; }
}

/* ==========================================================
   FOOTER
   ========================================================== */
.site-footer {
  background: var(--sage);
  padding: 56px 0 0;
}

.footer-grid {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 40px;
  display: grid;
  grid-template-columns: 1.2fr 1fr 1fr 1fr;
  gap: 40px;
  padding-bottom: 48px;
}

.footer-logo img { height: 36px; margin-bottom: 14px; }

.footer-copyright {
  font-size: 19px;
  color: var(--dark-mid);
}

.footer-col h4 {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--dark);
  margin-bottom: 14px;
}

.footer-col a {
  display: block;
  font-size: 19px;
  color: var(--dark-mid);
  margin-bottom: 8px;
  transition: color var(--transition);
}

.footer-col a:hover { color: var(--dark); }

.footer-social {
  display: flex;
  gap: 12px;
  margin-bottom: 18px;
}

.footer-social a {
  display: flex;
  width: 38px;
  height: 38px;
  background: rgba(0,0,0,0.1);
  border-radius: 50%;
  align-items: center;
  justify-content: center;
  color: var(--dark);
  transition: background var(--transition);
}

.footer-social a:hover { background: rgba(0,0,0,0.2); }
.footer-social svg { width: 17px; height: 17px; fill: currentColor; }

.footer-langs {
  display: flex;
  gap: 10px;
}

.footer-langs a {
  display: flex;
  align-items: center;
  gap: 5px;
  font-size: 12px;
  font-weight: 600;
  color: var(--dark-mid);
  padding: 4px 10px;
  border-radius: 100px;
  border: 1px solid rgba(0,0,0,0.15);
  transition: all var(--transition);
}

.footer-langs a:hover,
.footer-langs a.active {
  background: var(--dark);
  border-color: var(--dark);
  color: var(--white);
}

.footer-langs img {
  width: 16px;
  height: 12px;
  display: inline-block;
}

/* Footer bottom bar */
.footer-bar {
  border-top: 1px solid rgba(0,0,0,0.1);
  padding: 14px 40px;
  text-align: center;
  font-size: 12px;
  color: var(--dark-mid);
}

.footer-bar a {
  color: var(--dark-mid);
  font-weight: 600;
  transition: color var(--transition);
}

.footer-bar a:hover { color: var(--dark); }

/* ==========================================================
   RESPONSIVE
   ========================================================== */
@media (max-width: 1024px) {
  .about-grid { gap: 40px; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 32px; }
}

@media (max-width: 900px) {
  .hamburger-btn   { display: flex; }
  .header-nav      { display: none; }
  .header-social   { display: none; }

  .hero-info-inner  { grid-template-columns: 1fr; gap: 24px; padding: 32px 24px; }
  .info-col p, .info-col address, .info-col a { font-size: 15px; }

  .about-grid       { grid-template-columns: 1fr; gap: 32px; }
  .about-image img  { height: 320px; }

  .carousel-wrapper   { padding: 0 36px; }
  .carousel-slide img { aspect-ratio: 4 / 3; height: auto; }

  .testimonials-carousel { padding: 0 48px; }

  .instagram-masonry { columns: 2; max-width: 100%; padding: 0 40px; }

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

  .tabs-nav { gap: 0; flex-wrap: wrap; }
  .tab-btn  { padding: 14px 16px 18px; }
}

@media (max-width: 640px) {
  :root { --header-h: 60px; }

  .container { padding: 0 20px; }
  .hero-content { padding: 60px 20px 40px; }
  .hero-buttons { flex-direction: column; align-items: center; }
  .btn-hero { width: 240px; text-align: center; justify-content: center; }

  .hero-info-inner { grid-template-columns: 1fr; gap: 20px; padding: 28px 20px; }
  .info-col p, .info-col address, .info-col a { font-size: 14px; }

  .section-services,
  .section-about,
  .section-testimonials,
  .section-instagram { padding: 56px 0; }

  .section-title { margin-bottom: 28px; }

  .about-grid     { padding: 0 20px; }
  .about-image img { height: 260px; }

  .carousel-wrapper   { padding: 0 32px; }
  .carousel-slide img { aspect-ratio: 4 / 3; height: auto; }
  .carousel-btn   { width: 32px; height: 32px; }

  .testimonials-carousel { padding: 0 40px; }
  .testimonial-quote, .testimonial-author { font-size: 16px; }
  .tab-panel p, .about-text p { font-size: 16px; }
  .footer-col a, .footer-copyright { font-size: 16px; }

  .instagram-masonry { columns: 2; padding: 0 20px; column-gap: 4px; }
  .instagram-masonry-item { margin-bottom: 4px; }

  .footer-grid   { grid-template-columns: 1fr; gap: 24px; padding: 0 20px 36px; }
  .footer-bar    { padding: 14px 20px; }

  /* Tabs — grille 2×2 sur mobile */
  .tabs-nav {
    display: grid;
    grid-template-columns: 1fr 1fr;
    border-bottom: none;
    gap: 1px;
    background: var(--border);
    border: 1px solid var(--border);
    overflow: visible;
  }
  .tab-btn {
    background: var(--white);
    padding: 18px 12px 16px;
    border-bottom: none;
    border-right: none;
    gap: 8px;
    position: static;
  }
  .tab-btn.active {
    background: var(--ivory);
    border-bottom-color: transparent;
    box-shadow: inset 0 -3px 0 var(--dark);
  }
  .tab-btn svg   { width: 34px; height: 34px; }
  .tab-label     { font-size: 9.5px; letter-spacing: 0.08em; }

  .tabs-content  { padding: 0 20px; }
}

/* ==========================================================
   PAGE CONTACT
   ========================================================== */

/* ── Sous-titre bannière ─────────────────────────────────── */
.contact-banner-sub {
  background: var(--white);
  padding: 32px 0 0;
  text-align: center;
}

.contact-banner-sub p {
  font-size: 17px;
  color: var(--muted);
  max-width: 640px;
  margin: 0 auto;
  line-height: 1.7;
}

/* ── Info strip ──────────────────────────────────────────── */
.contact-info-strip {
  padding: 64px 0 72px;
  background: var(--white);
}

.contact-info-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
  text-align: center;
}

.contact-info-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
}

.contact-info-icon {
  width: 60px;
  height: 60px;
}

.contact-info-icon svg {
  width: 100%;
  height: 100%;
}

.contact-info-title {
  font-size: 20px;
  font-weight: 600;
  color: var(--dark);
  font-family: var(--font-serif);
}

.contact-info-lines {
  font-size: 16px;
  color: var(--muted);
  line-height: 1.8;
}

.contact-info-lines a {
  color: var(--muted);
  transition: color var(--transition);
}

.contact-info-lines a:hover { color: var(--brown); }

/* ── Carte + Formulaire ──────────────────────────────────── */
.contact-map-form {
  padding-bottom: 100px;
}

.contact-map-form-grid {
  display: flex;
  justify-content: center;
  align-items: center;
}

.contact-map-col {
  width: 540px;
  height: 540px;
  flex-shrink: 0;
}

.contact-map-col iframe {
  width: 100%;
  height: 100%;
  border: none;
  display: block;
}

.contact-form-col {
  padding: 56px 72px 56px 64px;
}

.contact-form-title {
  font-family: var(--font-serif);
  font-size: 40px;
  font-weight: 600;
  color: var(--brown);
  margin-bottom: 10px;
  line-height: 1.2;
}

.contact-form-subtitle {
  font-size: 16px;
  color: var(--muted);
  margin-bottom: 36px;
  line-height: 1.65;
}

/* ── Formulaire ──────────────────────────────────────────── */
.contact-form .contact-form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-bottom: 20px;
}

.contact-form .contact-form-field {
  display: flex;
  flex-direction: column;
}

.contact-form .contact-form-field-full {
  margin-bottom: 20px;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  border: none;
  border-bottom: 1px solid #c8c0b8;
  padding: 10px 0;
  font-family: var(--font-body);
  font-size: 16px;
  color: var(--dark);
  background: transparent;
  outline: none;
  transition: border-color var(--transition);
}

.contact-form input:focus,
.contact-form textarea:focus {
  border-bottom-color: var(--brown);
}

.contact-form input::placeholder,
.contact-form textarea::placeholder {
  color: #aaa;
  font-size: 15px;
}

.contact-form textarea {
  resize: none;
  height: 96px;
  display: block;
}

/* ── Champ téléphone avec sélecteur pays ─────────────────── */
.contact-phone-field {
  flex-direction: row !important;
  align-items: flex-end;
  gap: 0;
  border-bottom: 1px solid #c8c0b8;
  transition: border-color var(--transition);
}

.contact-phone-field:focus-within {
  border-bottom-color: var(--brown);
}

.contact-phone-field .contact-phone-input {
  border-bottom: none;
  flex: 1;
  min-width: 0;
}

/* Sélecteur pays */
.phone-prefix-selector {
  position: relative;
  flex-shrink: 0;
}

.phone-prefix-btn {
  display: flex;
  align-items: center;
  gap: 5px;
  padding: 10px 8px 10px 0;
  background: none;
  border: none;
  cursor: pointer;
  font-size: 15px;
  color: var(--muted);
  white-space: nowrap;
  user-select: none;
  line-height: 1;
}

.phone-prefix-btn:focus-visible {
  outline: 2px solid var(--brown);
  outline-offset: 2px;
  border-radius: 2px;
}

.phone-prefix-flag { font-size: 18px; line-height: 1; }

.phone-prefix-code { font-size: 14px; color: var(--muted); }

.phone-prefix-arrow {
  width: 10px;
  height: 6px;
  color: var(--muted);
  flex-shrink: 0;
  transition: transform 0.15s;
}

.phone-prefix-btn[aria-expanded="true"] .phone-prefix-arrow {
  transform: rotate(180deg);
}

/* Dropdown */
.phone-prefix-dropdown {
  position: absolute;
  left: 0;
  top: calc(100% + 4px);
  width: 280px;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 8px;
  box-shadow: 0 8px 24px rgba(0,0,0,0.12);
  z-index: 200;
  overflow: hidden;
}

.phone-prefix-search {
  display: block;
  width: 100%;
  border: none;
  border-bottom: 1px solid var(--border);
  padding: 10px 14px;
  font-family: var(--font-body);
  font-size: 14px;
  color: var(--dark);
  background: var(--ivory);
  outline: none;
}

.phone-prefix-search::placeholder { color: #aaa; }

.phone-prefix-list {
  max-height: 240px;
  overflow-y: auto;
  margin: 0;
  padding: 4px 0;
  list-style: none;
}

.phone-prefix-list li {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 9px 14px;
  cursor: pointer;
  font-size: 14px;
  transition: background 0.1s;
}

.phone-prefix-list li:hover { background: var(--ivory); }

.phone-prefix-list li .ppf { font-size: 18px; flex-shrink: 0; line-height: 1; }
.phone-prefix-list li .ppn { flex: 1; color: var(--dark); overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
.phone-prefix-list li .ppc { color: var(--muted); font-size: 13px; flex-shrink: 0; }
.phone-prefix-list li.pp-empty { color: var(--muted); justify-content: center; cursor: default; }
.phone-prefix-list li.pp-empty:hover { background: none; }

/* ── Compteur de caractères ──────────────────────────────── */
.contact-char-counter {
  text-align: right;
  font-size: 12px;
  color: var(--muted);
  margin-top: 4px;
}

/* ── Bouton submit ───────────────────────────────────────── */
.btn-contact-submit {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 32px;
  font-family: 'EB Garamond', serif;
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  background: var(--dark);
  color: var(--white);
  border: 1px solid var(--dark);
  border-radius: 0;
  cursor: pointer;
  transition: background var(--transition), color var(--transition);
  margin-top: 8px;
  white-space: nowrap;
  text-decoration: none;
}

.btn-contact-submit:hover {
  background: var(--brown);
  border-color: var(--brown);
  color: var(--white);
}

/* ── Alertes formulaire ──────────────────────────────────── */
.contact-form-alert {
  padding: 14px 18px;
  border-radius: var(--radius);
  font-size: 14px;
  margin-bottom: 24px;
  line-height: 1.55;
}

.contact-form-alert.success {
  background: #f0faf4;
  border: 1px solid #a3d9b1;
  color: #2d6a4f;
}

.contact-form-alert.error {
  background: #fef2f2;
  border: 1px solid #fca5a5;
  color: #c05a5a;
}

/* ── Responsive ──────────────────────────────────────────── */

/* Carte plus petite sur écrans moyens */
@media (max-width: 1200px) {
  .contact-map-col {
    width: 420px;
    height: 420px;
  }
  .contact-form-col { padding: 48px 40px; }
}

@media (max-width: 1000px) {
  .contact-map-col {
    width: 340px;
    height: 340px;
  }
  .contact-form-col { padding: 40px 32px; }
}

/* Passage en colonne */
@media (max-width: 800px) {
  .contact-info-grid {
    grid-template-columns: 1fr;
    gap: 44px;
  }

  .contact-map-form-grid {
    flex-direction: column;
    align-items: stretch;
  }

  .contact-map-col {
    width: 100%;
    height: 280px;
  }

  .contact-form-col {
    padding: 40px 24px;
  }

  .contact-form .contact-form-row {
    grid-template-columns: 1fr;
    gap: 0;
  }

  .contact-form .contact-form-row .contact-form-field {
    margin-bottom: 20px;
  }
}
