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

:root {
  --cream:       #F5EFE6;
  --cream-dark:  #EDE0CE;
  --white:       #FDF8F2;
  --blush:       #E8CFC0;
  --terra:       #C4633A;
  --terra-light: #D9896A;
  --terra-dark:  #8F3E20;
  --terra-muted: #E8B49A;
  --terra-pale:  #F5DDD3;
  --sand:        #C9B99A;
  --taupe:       #8C7B6B;
  --espresso:    #2C1F14;
  --font-serif:  'Cormorant Garamond', serif;
  --font-sans:   'Jost', sans-serif;
}

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-sans);
  background: var(--cream);
  color: var(--espresso);
  font-weight: 300;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

img { display: block; max-width: 100%; }
a { text-decoration: none; }

/* ─── SKIP LINK ─── */
.skip-link {
  position: absolute;
  top: -100%;
  left: 1rem;
  background: var(--terra);
  color: var(--white);
  padding: 0.5rem 1rem;
  font-size: 0.85rem;
  z-index: 9999;
  font-family: var(--font-sans);
}
.skip-link:focus { top: 0.5rem; }

/* ─── NAV ─── */
nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 200;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1.5rem 4rem;
  background: rgba(245, 239, 230, 0.97);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(196, 99, 58, 0.15);
}
.nav-logo {
  font-family: var(--font-serif);
  font-size: 1.4rem;
  font-weight: 400;
  letter-spacing: 0.12em;
  color: var(--espresso);
  z-index: 201;
}
.nav-logo span { font-style: italic; color: var(--terra); }
.nav-links { display: flex; gap: 2.5rem; list-style: none; }
.nav-links a {
  font-size: 0.78rem;
  font-weight: 400;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--taupe);
  transition: color 0.2s;
}
.nav-links a:hover,
.nav-links a[aria-current] { color: var(--terra); }
.nav-cta {
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  background: var(--terra);
  color: var(--white);
  padding: 0.65rem 1.5rem;
  transition: background 0.2s;
}
.nav-cta:hover { background: var(--terra-dark); }

/* ─── HAMBURGER ─── */
.nav-hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 40px;
  height: 40px;
  cursor: pointer;
  background: none;
  border: none;
  padding: 4px;
  z-index: 201;
  flex-shrink: 0;
}
.nav-hamburger span {
  display: block;
  width: 100%;
  height: 1.5px;
  background: var(--espresso);
  transition: transform 0.3s ease, opacity 0.3s ease;
  transform-origin: center;
}
.nav-hamburger.open span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
.nav-hamburger.open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.nav-hamburger.open span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }

/* ─── MOBILE MENU OVERLAY ─── */
.nav-mobile-overlay {
  position: fixed;
  inset: 0;
  z-index: 199;
  background: rgba(245, 239, 230, 0.99);
  backdrop-filter: blur(16px);
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 6rem 2rem 3rem;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
  display: flex;
}
.nav-mobile-overlay.open {
  opacity: 1;
  pointer-events: all;
}
.nav-mobile-overlay .nav-links {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0;
  list-style: none;
  width: 100%;
  text-align: center;
}
.nav-mobile-overlay .nav-links li {
  width: 100%;
  border-bottom: 1px solid rgba(196, 99, 58, 0.12);
}
.nav-mobile-overlay .nav-links a {
  display: block;
  font-size: 0.82rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--taupe);
  padding: 1.2rem 0;
  transition: color 0.2s;
}
.nav-mobile-overlay .nav-links a:hover,
.nav-mobile-overlay .nav-links a[aria-current] { color: var(--terra); }
.nav-mobile-overlay .nav-cta {
  margin-top: 2.5rem;
  font-size: 0.8rem;
  padding: 1rem 2.5rem;
  letter-spacing: 0.18em;
}

/* ─── BUTTONS ─── */
.btn-primary {
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  background: var(--terra);
  color: var(--white);
  padding: 1rem 2.2rem;
  border: none;
  font-family: var(--font-sans);
  cursor: pointer;
  transition: background 0.2s;
  display: inline-block;
}
.btn-primary:hover { background: var(--terra-dark); }
.btn-secondary {
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  background: transparent;
  color: var(--espresso);
  padding: 1rem 2.2rem;
  border: 1px solid var(--espresso);
  font-family: var(--font-sans);
  cursor: pointer;
  transition: background 0.2s, border-color 0.2s, color 0.2s;
  display: inline-block;
}
.btn-secondary:hover { background: var(--terra); border-color: var(--terra); color: var(--white); }

/* ─── SECTION LABEL ─── */
.section-label {
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--terra);
  margin-bottom: 1rem;
  display: flex;
  align-items: center;
  gap: 1rem;
}
.section-label::before { content: ''; display: block; width: 30px; height: 1px; background: var(--terra); }
.section-title {
  font-family: var(--font-serif);
  font-size: clamp(2.2rem, 4vw, 3.2rem);
  font-weight: 300;
  line-height: 1.15;
  margin-bottom: 1rem;
}
.section-title em { font-style: italic; color: var(--terra); }

/* ─── HERO (index) ─── */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: 8rem 4rem 4rem;
  position: relative;
  overflow: hidden;
}
.hero-bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 60% 80% at 80% 50%, rgba(196, 99, 58, 0.10) 0%, transparent 70%),
    radial-gradient(ellipse 40% 60% at 10% 80%, rgba(217, 137, 106, 0.12) 0%, transparent 60%);
}
.hero-deco {
  position: absolute;
  right: 0; top: 0; bottom: 0;
  width: 42%;
  background: var(--terra-pale);
  clip-path: polygon(15% 0, 100% 0, 100% 100%, 0% 100%);
  opacity: 0.5;
}
.hero-content { position: relative; z-index: 1; max-width: 650px; }
.hero-eyebrow {
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--terra);
  margin-bottom: 1.5rem;
  display: flex;
  align-items: center;
  gap: 1rem;
}
.hero-eyebrow::before { content: ''; display: block; width: 40px; height: 1px; background: var(--terra); }
h1 {
  font-family: var(--font-serif);
  font-size: clamp(3.5rem, 7vw, 6rem);
  font-weight: 300;
  line-height: 1.05;
  letter-spacing: -0.01em;
  margin-bottom: 2rem;
}
h1 em { font-style: italic; color: var(--terra); }
.hero-sub {
  font-size: 1.05rem;
  font-weight: 300;
  color: var(--taupe);
  line-height: 1.8;
  max-width: 440px;
  margin-bottom: 3rem;
}
.hero-actions { display: flex; gap: 1.2rem; flex-wrap: wrap; }
.hero-stats {
  display: flex;
  gap: 3rem;
  margin-top: 4rem;
  padding-top: 3rem;
  border-top: 1px solid rgba(196, 99, 58, 0.2);
}
.stat-num { font-family: var(--font-serif); font-size: 2.2rem; font-weight: 300; color: var(--terra); }
.stat-label { font-size: 0.72rem; font-weight: 400; letter-spacing: 0.15em; text-transform: uppercase; color: var(--taupe); margin-top: 0.25rem; }

/* ─── SECTIONS ─── */
section { padding: 7rem 4rem; }

/* ABOUT */
.about {
  background: var(--white);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 6rem;
  align-items: center;
}
.about-img-wrap { position: relative; aspect-ratio: 3/4; max-width: 380px; }
.about-img-bg { position: absolute; bottom: -2rem; right: -2rem; width: 85%; height: 90%; background: var(--terra-pale); z-index: 0; }
.about-img-inner { position: relative; z-index: 1; width: 100%; height: 100%; overflow: hidden; }
.about-img-inner img { width: 100%; height: 100%; object-fit: cover; object-position: center top; }
.about-text { padding-right: 2rem; }
.about-text p { color: var(--taupe); line-height: 1.9; margin-bottom: 1.2rem; font-size: 0.95rem; }
.about-badges { display: flex; gap: 0.8rem; flex-wrap: wrap; margin-top: 1.5rem; }
.badge {
  font-size: 0.72rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 0.4rem 1rem;
  border: 1px solid var(--terra-muted);
  color: var(--taupe);
  background: var(--terra-pale);
}

/* FORMATIONS */
.formations { background: var(--cream); }
.formations-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 1.5rem;
  margin-top: 4rem;
}
.formation-card {
  background: var(--white);
  padding: 2.5rem;
  border-top: 3px solid transparent;
  transition: border-color 0.25s;
  position: relative;
}
.formation-card:hover { border-color: var(--terra); }
.card-tag { font-size: 0.68rem; letter-spacing: 0.2em; text-transform: uppercase; color: var(--terra); margin-bottom: 1rem; }
.card-title { font-family: var(--font-serif); font-size: 1.8rem; font-weight: 400; margin-bottom: 0.5rem; line-height: 1.2; }
.card-title em { font-style: italic; color: var(--terra); }
.card-title2{font-family: var(--font-serif)}
.card-title2 em { font-style: italic; color: var(--terra); }
.card-price { font-family: var(--font-serif); font-size: 2rem; font-weight: 300; color: var(--terra); margin: 1.2rem 0; }
.card-price small { font-family: var(--font-sans); font-size: 0.75rem; font-weight: 400; color: var(--taupe); margin-left: 0.3rem; }
.card-duration { font-size: 0.8rem; color: var(--taupe); margin-bottom: 1.5rem; }
.card-list { list-style: none; margin-bottom: 2rem; }
.card-list li {
  font-size: 0.88rem;
  color: var(--taupe);
  padding: 0.4rem 0;
  border-bottom: 1px solid rgba(196, 99, 58, 0.1);
  display: flex;
  align-items: flex-start;
  gap: 0.7rem;
  line-height: 1.5;
}
.card-list li::before { content: '—'; color: var(--terra-light); flex-shrink: 0; }
.card-info {
  font-size: 0.78rem;
  color: var(--taupe);
  background: var(--terra-pale);
  padding: 0.8rem 1rem;
  border-left: 2px solid var(--terra);
}
.images { margin-top: 1.5rem; }
.img-border-radius {
  width: 260px;
  height: 260px;
  border-radius: 50%;
  object-fit: cover;
  display: block;
  margin: 0 auto;
}

/* TARIFS */
.tarifs { background: var(--espresso); color: var(--cream); }
.tarifs .section-title { color: var(--cream); }
.tarifs .section-label { color: var(--terra-light); }
.tarifs .section-label::before { background: var(--terra-light); }
.tarifs-intro { color: var(--sand); margin-bottom: 4rem; max-width: 500px; line-height: 1.8; font-size: 0.95rem; }
.tarifs-cols { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2rem; }
.tarif-section h3 {
  font-family: var(--font-serif);
  font-size: 1.5rem;
  font-weight: 400;
  color: var(--terra-light);
  margin-bottom: 1.5rem;
  padding-bottom: 1rem;
  border-bottom: 1px solid rgba(196, 99, 58, 0.3);
}
.tarif-row {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  padding: 0.7rem 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  font-size: 0.88rem;
}
.tarif-name { color: rgba(253, 248, 242, 0.75); }
.tarif-price { font-family: var(--font-serif); font-size: 1.3rem; font-weight: 300; color: var(--cream); }
.tarif-note { font-size: 0.75rem; color: var(--sand); margin-top: 2.5rem; line-height: 1.8; opacity: 0.7; font-style: italic; }

/* MODALITES */
.modalites { background: var(--cream-dark); }
.modal-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 5rem; align-items: start; margin-top: 4rem; }
.modal-items { display: flex; flex-direction: column; gap: 1.5rem; }
.modal-item { display: flex; gap: 1.5rem; align-items: flex-start; }
.modal-icon {
  width: 44px; height: 44px;
  flex-shrink: 0;
  background: var(--terra);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-serif);
  font-size: 1.1rem;
  color: var(--white);
}
.modal-item-text h4 { font-size: 0.95rem; font-weight: 500; margin-bottom: 0.3rem; }
.modal-item-text p { font-size: 0.85rem; color: var(--taupe); line-height: 1.7; }
.modal-contact { background: var(--white); padding: 2.5rem; border-top: 3px solid var(--terra); }
.modal-contact h3 { font-family: var(--font-serif); font-size: 1.6rem; font-weight: 400; margin-bottom: 1.5rem; }
.modal-contact h3 em { font-style: italic; color: var(--terra); }
.contact-detail {
  display: flex;
  gap: 1rem;
  align-items: center;
  padding: 1rem 0;
  border-bottom: 1px solid rgba(196, 99, 58, 0.15);
  font-size: 0.9rem;
  color: var(--taupe);
}
.contact-detail svg { width: 18px; height: 18px; stroke: var(--terra); flex-shrink: 0; }
.contact-detail strong { color: var(--espresso); display: block; font-weight: 500; font-size: 0.85rem; margin-bottom: 0.1rem; }

/* ─── FOOTER ─── */
footer {
  background: var(--espresso);
  color: var(--sand);
  padding: 4rem;
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 4rem;
}
.footer-brand { font-family: var(--font-serif); font-size: 1.6rem; font-weight: 300; color: var(--cream); margin-bottom: 0.8rem; }
.footer-brand em { font-style: italic; color: var(--terra-light); }
footer p { font-size: 0.85rem; line-height: 1.8; opacity: 0.7; }
footer h5 { font-size: 0.72rem; letter-spacing: 0.2em; text-transform: uppercase; color: var(--terra-light); margin-bottom: 1.2rem; }
footer ul { list-style: none; }
footer ul li { margin-bottom: 0.7rem; }
footer ul li a { font-size: 0.85rem; color: var(--sand); opacity: 0.7; transition: opacity 0.2s, color 0.2s; }
footer ul li a:hover { opacity: 1; color: var(--terra-light); }
.footer-bottom {
  background: rgba(0, 0, 0, 0.25);
  padding: 1.5rem 4rem;
  font-size: 0.75rem;
  color: rgba(201, 185, 154, 0.5);
  display: flex;
  justify-content: space-between;
}

/* ─── REVEAL ─── */
.reveal { opacity: 0; transform: translateY(22px); transition: opacity 0.6s ease, transform 0.6s ease; }
.reveal.visible { opacity: 1; transform: none; }
.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }

/* ─── GALERIE HERO ─── */
.galerie-hero {
  min-height: 46vh;
  display: flex;
  align-items: center;
  padding: 9rem 4rem 5rem;
  background: var(--espresso);
  position: relative;
  overflow: hidden;
}
.galerie-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 70% 90% at 110% 50%, rgba(196, 99, 58, 0.15) 0%, transparent 60%);
}
.galerie-hero-content { position: relative; z-index: 1; max-width: 600px; }
.galerie-hero .hero-eyebrow { color: var(--terra-light); margin-bottom: 1.2rem; }
.galerie-hero .hero-eyebrow::before { background: var(--terra-light); }
.galerie-hero h1 { color: var(--cream); margin-bottom: 1rem; }
.galerie-hero .hero-sub { color: var(--sand); margin: 0; font-size: 0.95rem; }
.hero-count {
  display: flex;
  gap: 3rem;
  margin-top: 2.5rem;
  padding-top: 2rem;
  border-top: 1px solid rgba(196, 99, 58, 0.2);
}
.hero-count-num { font-family: var(--font-serif); font-size: 1.8rem; font-weight: 300; color: var(--terra-light); line-height: 1; }
.hero-count-label { font-size: 0.68rem; letter-spacing: 0.2em; text-transform: uppercase; color: var(--sand); opacity: 0.7; margin-top: 0.3rem; }

/* ─── GALERIE TABS ─── */
.galerie-nav {
  display: flex;
  padding: 0 4rem;
  background: var(--espresso);
  border-bottom: 1px solid rgba(196, 99, 58, 0.2);
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
  position: sticky;
  top: 71px;
  z-index: 50;
}
.galerie-nav::-webkit-scrollbar { display: none; }
.galerie-tab {
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(201, 185, 154, 0.5);
  padding: 1.3rem 1.8rem;
  border: none;
  border-bottom: 2px solid transparent;
  background: none;
  cursor: pointer;
  white-space: nowrap;
  transition: color 0.2s, border-color 0.2s;
  font-family: var(--font-sans);
}
.galerie-tab:hover { color: var(--terra-light); }
.galerie-tab.active { color: var(--terra-light); border-bottom-color: var(--terra); }
.tab-count { font-family: var(--font-serif); font-size: 0.85rem; font-style: italic; color: var(--terra); margin-left: 0.3rem; opacity: 0.6; }

/* ─── GALERIE MAIN ─── */
.galerie-main { padding: 4rem; background: var(--cream); }
.galerie-section { display: none; }
.galerie-section.active { display: block; }

.galerie-intro-wrap { display: flex; align-items: flex-start; gap: 1.5rem; margin-bottom: 2.5rem; }
.galerie-intro-line { width: 2px; height: 50px; background: linear-gradient(to bottom, var(--terra), transparent); flex-shrink: 0; margin-top: 0.2rem; }
.galerie-intro { font-size: 0.92rem; color: var(--taupe); line-height: 1.85; max-width: 520px; font-style: italic; }

/* ─── PHOTO GRID ─── */
.photo-grid {
  columns: 3;
  column-gap: 0.8rem;
}
.photo-grid-item {
  break-inside: avoid;
  margin-bottom: 0.8rem;
  position: relative;
  overflow: hidden;
  cursor: pointer;
  background: var(--cream-dark);
}
.photo-grid-item img {
  width: 100%;
  display: block;
  object-fit: cover;
}
.photo-grid-item.tall  { aspect-ratio: 2/3; }
.photo-grid-item.tall  img { height: 100%; }
.photo-grid-item.square { aspect-ratio: 1/1; }
.photo-grid-item.square img { height: 100%; }
.photo-grid-item.wide  { aspect-ratio: 4/3; }
.photo-grid-item.wide  img { height: 100%; }

/* Numéro de photo discret */
.photo-num {
  position: absolute;
  bottom: 0.6rem;
  right: 0.7rem;
  font-family: var(--font-serif);
  font-size: 0.75rem;
  font-style: italic;
  color: rgba(253, 248, 242, 0.5);
  pointer-events: none;
}

/* ─── LIGHTBOX ─── */
.lightbox {
  position: fixed;
  inset: 0;
  background: rgba(20, 12, 8, 0.97);
  z-index: 999;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.25s;
}
.lightbox.open { opacity: 1; pointer-events: all; }
.lightbox-inner {
  position: relative;
  display: flex;
  align-items: center;
  gap: 1.2rem;
  max-width: 92vw;
}
.lightbox-img-wrap {
  position: relative;
  max-width: 80vw;
  max-height: 88vh;
}
.lightbox-img-wrap img {
  max-width: 80vw;
  max-height: 88vh;
  object-fit: contain;
  display: block;
  transition: opacity 0.2s;
}
.lightbox-btn {
  width: 46px; height: 46px;
  background: rgba(44, 31, 20, 0.6);
  border: 1px solid rgba(196, 99, 58, 0.25);
  color: var(--cream);
  font-size: 1.2rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s;
  flex-shrink: 0;
}
.lightbox-btn:hover { background: var(--terra); border-color: var(--terra); }
.lightbox-close {
  position: absolute;
  top: -3rem;
  right: 0;
  background: none;
  border: none;
  color: rgba(253, 248, 242, 0.5);
  font-size: 1.4rem;
  cursor: pointer;
  padding: 0.3rem 0.5rem;
  transition: color 0.2s;
  line-height: 1;
}
.lightbox-close:hover { color: var(--cream); }
.lightbox-counter {
  position: absolute;
  top: -2.8rem;
  left: 0;
  font-family: var(--font-serif);
  font-size: 0.88rem;
  font-style: italic;
  color: rgba(201, 185, 154, 0.6);
}

/* ─── GALERIE CTA ─── */
.galerie-cta {
  background: var(--espresso);
  padding: 5rem 4rem;
  text-align: center;
}
.galerie-cta .section-title { color: var(--cream); margin-bottom: 1rem; }
.galerie-cta p { color: var(--sand); font-size: 0.95rem; max-width: 460px; margin: 0 auto 2.5rem; line-height: 1.8; }
.galerie-cta .section-label { justify-content: center; color: var(--terra-light); }
.galerie-cta .section-label::before { background: var(--terra-light); }

/* ─── FAQ ─── */
.faq-hero {
  min-height: 36vh;
  display: flex;
  align-items: flex-end;
  padding: 8rem 4rem 4rem;
  background: var(--espresso);
  position: relative;
  overflow: hidden;
}
.faq-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 60% 80% at 80% 50%, rgba(196, 99, 58, 0.15) 0%, transparent 70%);
}
.faq-hero-content { position: relative; z-index: 1; }
.faq-hero .hero-eyebrow { color: var(--terra-light); }
.faq-hero .hero-eyebrow::before { background: var(--terra-light); }
.faq-hero h1 { color: var(--cream); }
.faq-hero h1 em { color: var(--terra-light); }
.faq-hero p { color: var(--sand); font-size: 1rem; margin-top: 1rem; max-width: 500px; line-height: 1.8; }
.faq-main { max-width: 860px; margin: 0 auto; padding: 5rem 2rem 6rem; }
.faq-category { margin-bottom: 4rem; }
.faq-category-title {
  font-family: var(--font-serif);
  font-size: 1.7rem;
  font-weight: 300;
  color: var(--terra);
  margin-bottom: 2rem;
  padding-bottom: 1rem;
  border-bottom: 1px solid rgba(196, 99, 58, 0.2);
  display: flex;
  align-items: center;
  gap: 1rem;
}
.faq-category-title::before { content: ''; display: block; width: 24px; height: 1px; background: var(--terra); flex-shrink: 0; }
.faq-item { border-bottom: 1px solid rgba(140, 123, 107, 0.18); overflow: hidden; }
.faq-question {
  width: 100%;
  background: none;
  border: none;
  text-align: left;
  padding: 1.3rem 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1.5rem;
  cursor: pointer;
  font-family: var(--font-sans);
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--espresso);
  line-height: 1.5;
  transition: color 0.2s;
}
.faq-question:hover { color: var(--terra); }
.faq-icon {
  width: 24px; height: 24px;
  flex-shrink: 0;
  border-radius: 50%;
  border: 1px solid var(--terra-muted);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  color: var(--terra);
  transition: background 0.2s, transform 0.3s;
}
.faq-item.open .faq-icon { background: var(--terra); color: var(--white); transform: rotate(45deg); }
.faq-answer { max-height: 0; overflow: hidden; transition: max-height 0.4s ease; }
.faq-item.open .faq-answer { max-height: 500px; }
.faq-answer-inner { padding: 0 0 1.5rem; font-size: 0.9rem; color: var(--taupe); line-height: 1.9; }
.faq-answer-inner strong { color: var(--espresso); font-weight: 500; }
.faq-answer-inner a { color: var(--terra); }
.faq-cta {
  background: var(--terra-pale);
  border-left: 3px solid var(--terra);
  padding: 2rem 2.5rem;
  margin-top: 4rem;
  display: flex;
  gap: 2rem;
  align-items: center;
  flex-wrap: wrap;
}
.faq-cta p { font-size: 0.9rem; color: var(--taupe); line-height: 1.7; flex: 1; }
.faq-cta strong { display: block; font-family: var(--font-serif); font-size: 1.3rem; font-weight: 300; color: var(--espresso); margin-bottom: 0.3rem; }

/* ─── RESPONSIVE ─── */
@media (max-width: 900px) {
  nav {
    padding: 1.1rem 1.4rem;
  }
  .nav-links,
  .nav-cta { display: none; }
  .nav-hamburger { display: flex; }
  .nav-mobile-overlay { display: flex; }

  section { padding: 5rem 1.5rem; }
  .hero { padding: 6rem 1.5rem 3rem; }
  .about { grid-template-columns: 1fr; gap: 3rem; }
  .about-img-wrap { max-width: 280px; margin: 0 auto; }
  .about-text { padding-right: 0; }
  .tarifs-cols { grid-template-columns: 1fr; }
  .modal-grid { grid-template-columns: 1fr; gap: 3rem; }
  footer { grid-template-columns: 1fr; gap: 2rem; padding: 3rem 1.5rem; }
  .footer-bottom { flex-direction: column; gap: 0.5rem; padding: 1.5rem; text-align: center; }
  .galerie-hero { padding: 7rem 1.5rem 3rem; min-height: 40vh; }
  .galerie-nav { padding: 0 0.5rem; top: 56px; }
  .galerie-main { padding: 3rem 1.5rem; }
  .photo-grid { columns: 2; column-gap: 0.6rem; }
  .photo-grid-item { margin-bottom: 0.6rem; }
  .galerie-cta { padding: 4rem 1.5rem; }
  .lightbox-btn { display: none; }
  .lightbox-img-wrap { max-width: 96vw; max-height: 90vh; }
  .lightbox-img-wrap img { max-width: 96vw; max-height: 84vh; }
  .lightbox-close { top: -2.5rem; font-size: 1.2rem; }
  .lightbox-counter { top: -2.4rem; }
  .faq-hero { padding: 7rem 1.5rem 3rem; }
  .faq-main { padding: 3rem 1.5rem 4rem; }
  .hero-count { gap: 1.5rem; }
  .hero-stats { gap: 2rem; flex-wrap: wrap; }
  h1 { font-size: clamp(2.6rem, 8vw, 4rem); }
}

@media (max-width: 600px) {
  nav { padding: 1rem 1.2rem; }
  .nav-logo { font-size: 1.15rem; letter-spacing: 0.08em; }
  .nav-logo span { display: none; }

  h1 { font-size: clamp(2.2rem, 9vw, 3.2rem); }
  .hero { padding: 5.5rem 1.2rem 2.5rem; }
  .hero-sub { font-size: 0.95rem; }
  .hero-actions { gap: 0.8rem; }
  .hero-actions .btn-primary,
  .hero-actions .btn-secondary { padding: 0.85rem 1.5rem; font-size: 0.72rem; }

  .hero-count { gap: 1.2rem; margin-top: 2rem; padding-top: 1.5rem; }
  .hero-count-num { font-size: 1.5rem; }

  .galerie-hero { padding: 6rem 1.2rem 2.5rem; }
  .galerie-hero h1 { font-size: clamp(2rem, 9vw, 3rem); }

  .section-title { font-size: clamp(1.9rem, 7vw, 2.6rem); }

  .btn-primary, .btn-secondary {
    padding: 0.9rem 1.8rem;
    font-size: 0.72rem;
  }

  .galerie-cta { padding: 3.5rem 1.2rem; }
  .galerie-cta div[style] { gap: 0.8rem !important; }

  .faq-hero { padding: 6rem 1.2rem 2.5rem; }
  .faq-main { padding: 2.5rem 1.2rem 3.5rem; }
  .faq-cta { flex-direction: column; gap: 1.2rem; padding: 1.5rem; }

  footer { padding: 2.5rem 1.2rem; }

  .galerie-nav { padding: 0 0.3rem; }
  .galerie-tab { padding: 1.1rem 1.2rem; font-size: 0.68rem; }
}

@media (max-width: 480px) {
  .photo-grid { columns: 2; column-gap: 0.5rem; }
  .photo-grid-item { margin-bottom: 0.5rem; }
}

@media (max-width: 380px) {
  .photo-grid { columns: 1; }
  .hero-count { flex-wrap: wrap; gap: 1rem; }
}