/* ============================================================
   Made by : BoostMySocialBE;
   SL Toitures Charpentes - style.css
   Palette : brun bois #8B5E3C · vert forêt #2D5A27 · or #C4873A
   Typo : Oswald (titres) + Lora (corps)
   ============================================================ */

/* -- Variables -- */
:root {
  --brun:       #8B5E3C;
  --brun-dark:  #5C3A1E;
  --brun-light: #B07D55;
  --vert:       #2D5A27;
  --vert-dark:  #1C3A18;
  --vert-light: #4A8042;
  --or:         #C4873A;
  --or-light:   #E5A84E;
  --creme:      #F7F3EE;
  --creme-dark: #EDE5D8;
  --charbon:    #1C1C1C;
  --gris:       #6B6B6B;
  --gris-light: #D8D0C4;
  --blanc:      #FFFFFF;

  --bg-1:           var(--creme);
  --bg-1-titre:     var(--charbon);
  --bg-1-texte:     var(--gris);
  --bg-1-tag:       var(--or);

  --bg-2:           var(--brun);
  --bg-2-titre:     var(--blanc);
  --bg-2-texte:     rgba(255,255,255,.7);
  --bg-2-tag:       var(--or-light);

  --font-titre: 'Oswald', sans-serif;
  --font-corps: 'Lora', serif;

  --radius:     6px;
  --radius-lg:  12px;
  --shadow-sm:  0 2px 8px rgba(28,28,28,.08);
  --shadow-md:  0 6px 24px rgba(28,28,28,.12);
  --shadow-lg:  0 16px 48px rgba(28,28,28,.16);
  --transition: .3s ease;

  --nav-h: 80px;
}

/* Polices auto-hébergées (RGPD compliant) */
@font-face {
  font-family: 'Oswald';
  src: url('assets/fonts/oswald-latin-300-normal.woff2') format('woff2');
  font-weight: 300;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Oswald';
  src: url('assets/fonts/oswald-latin-400-normal.woff2') format('woff2');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Oswald';
  src: url('assets/fonts/oswald-latin-500-normal.woff2') format('woff2');
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Oswald';
  src: url('assets/fonts/oswald-latin-600-normal.woff2') format('woff2');
  font-weight: 600;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Oswald';
  src: url('assets/fonts/oswald-latin-700-normal.woff2') format('woff2');
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Lora';
  src: url('assets/fonts/lora-latin-400-normal.woff2') format('woff2');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Lora';
  src: url('assets/fonts/lora-latin-400-italic.woff2') format('woff2');
  font-weight: 400;
  font-style: italic;
  font-display: swap;
}

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

/* -- Utilitaires -- */
.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}
.section {
  padding: 96px 0;
}
.section-tag {
  display: inline-block;
  font-family: var(--font-titre);
  font-weight: 500;
  font-size: .85rem;
  letter-spacing: .15em;
  text-transform: uppercase;
  color: var(--bg-1-tag);
  margin-bottom: 12px;
}
.section-title {
  font-family: var(--font-titre);
  font-weight: 700;
  font-size: clamp(2rem, 4vw, 3rem);
  line-height: 1.1;
  color: var(--bg-1-titre);
  text-transform: uppercase;
  letter-spacing: .02em;
  margin-bottom: 16px;
}
.section-title.left {
  text-align: left;
}
.section-subtitle {
  font-size: 1.05rem;
  color: var(--bg-1-texte);
  max-width: 960px;
  margin: 0 auto;
}
.section-header {
  text-align: center;
  margin-bottom: 56px;
}

/* Sections sombres — héritage automatique des couleurs de texte */
.realisations-section,
.temoignages-section {
  --bg-1-titre: var(--bg-2-titre);
  --bg-1-texte: var(--bg-2-texte);
  --bg-1-tag:   var(--bg-2-tag);
}

/* -- Boutons -- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-titre);
  font-weight: 600;
  font-size: .95rem;
  letter-spacing: .06em;
  text-transform: uppercase;
  padding: 14px 32px;
  border-radius: var(--radius);
  transition: all var(--transition);
  white-space: nowrap;
}
.btn-primary {
  background: var(--vert);
  color: var(--blanc);
  border: 2px solid var(--vert);
}
.btn-primary:hover {
  background: var(--vert-dark);
  border-color: var(--vert-dark);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}
.btn-outline {
  background: transparent;
  color: var(--blanc);
  border: 2px solid rgba(255,255,255,.7);
}
.btn-outline:hover {
  background: rgba(255,255,255,.12);
  border-color: var(--blanc);
}
.btn-full {
  width: 100%;
  justify-content: center;
}

/* -- Animations -- */
.fade-in {
  animation: fadeInUp .9s ease both;
}
@keyframes fadeInUp {
  from {
  opacity: 0;
  transform: translateY(28px);
}
  to {
  opacity: 1;
  transform: translateY(0);
}
}
.reveal {
  opacity: 0;
  transform: translateY(32px);
  transition: opacity .7s ease, transform .7s ease;
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* -----------------------------------------
   NAVBAR
----------------------------------------- */
.navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  height: var(--nav-h);
  z-index: 1000;
  transition: background var(--transition), box-shadow var(--transition);
}
.navbar.scrolled {
  background: var(--blanc);
  box-shadow: var(--shadow-sm);
}
.nav-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  height: 100%;
}
.nav-logo {
  display: flex;
  align-items: center;
}
.logo-img {
  height: 80px;
  width: auto;
  object-fit: contain;
  transition: filter var(--transition);
}
.navbar:not(.scrolled) .logo-img {
  filter: brightness(0) invert(1);
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 32px;
}
.nav-links a {
  font-family: var(--font-titre);
  font-weight: 500;
  font-size: .9rem;
  letter-spacing: .06em;
  text-transform: uppercase;
  color: var(--blanc);
  transition: color var(--transition);
}
.navbar.scrolled .nav-links a {
  color: var(--charbon);
}
.nav-links a:hover {
  color: var(--or) !important;
}
.btn-nav {
  background: var(--vert) !important;
  color: var(--blanc) !important;
  padding: 10px 22px !important;
  border-radius: var(--radius);
}
.btn-nav:hover {
  background: var(--vert-dark) !important;
  color: var(--blanc) !important;
}

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 4px;
}
.hamburger span {
  display: block;
  width: 26px; height: 2px;
  background: var(--blanc);
  transition: all var(--transition);
  border-radius: 2px;
}
.navbar.scrolled .hamburger span {
  background: var(--charbon);
}
.hamburger.open span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}
.hamburger.open span:nth-child(2) {
  opacity: 0;
}
.hamburger.open span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/* -----------------------------------------
   HERO
----------------------------------------- */
.hero {
  position: relative;
  height: 100vh;
  min-height: 600px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
.hero-bg {
  position: absolute;
  inset: 0;
}
.hero-img {
  width: 100%; height: 100%;
  object-fit: cover;
  transform: scale(1.06);
  animation: heroZoom 14s ease-in-out infinite alternate;
}
@keyframes heroZoom {
  from {
  transform: scale(1.06);
}
  to {
  transform: scale(1.12);
}
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg,
    rgba(28,18,10,.78) 0%,
    rgba(45,90,39,.45) 100%);
}
.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  color: var(--blanc);
  max-width: 780px;
  padding: 0 24px;
  animation-delay: .15s;
}
.hero-tag {
  font-family: var(--font-titre);
  font-size: .8rem;
  letter-spacing: .25em;
  text-transform: uppercase;
  color: var(--or-light);
  display: block;
  margin-bottom: 20px;
}
.hero-title {
  font-family: var(--font-titre);
  font-weight: 700;
  font-size: clamp(2.6rem, 6vw, 5rem);
  line-height: 1.05;
  text-transform: uppercase;
  letter-spacing: .03em;
  margin-bottom: 20px;
  text-shadow: 0 4px 24px rgba(0,0,0,.4);
}
.hero-title em {
  font-style: normal;
  color: var(--or-light);
}
.hero-subtitle {
  font-size: clamp(1rem, 1.8vw, 1.2rem);
  color: rgba(255,255,255,.85);
  margin-bottom: 40px;
  line-height: 1.6;
}
.hero-cta {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}

.hero-scroll-indicator {
  position: absolute;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
}
.hero-scroll-indicator span {
  display: block;
  width: 2px;
  height: 50px;
  background: linear-gradient(to bottom, rgba(255,255,255,.7), transparent);
  animation: scrollPulse 2s ease-in-out infinite;
}
@keyframes scrollPulse {
  0%,100% {
  opacity: .4;
  transform: scaleY(1);
}
  50% {
  opacity: 1;
  transform: scaleY(1.2);
}
}

/* -----------------------------------------
   TRUST BAR
----------------------------------------- */
.trust-bar {
  background: var(--brun-dark);
  padding: 0;
}
.trust-container {
  display: flex;
  align-items: stretch;
  justify-content: center;
  max-width: 1200px;
  margin: 0 auto;
}
.trust-item {
  flex: 0 1 280px;
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 18px 24px;
  color: var(--blanc);
  font-family: var(--font-titre);
  font-size: .88rem;
  font-weight: 500;
  letter-spacing: .04em;
  text-transform: uppercase;
}
.trust-item svg {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
  color: var(--or-light);
}
.trust-sep {
  width: 1px;
  background: rgba(255,255,255,.15);
  margin: 10px 0;
  flex-shrink: 0;
}

/* -----------------------------------------
   SERVICES
----------------------------------------- */
.services-section {
  background: var(--bg-1);
}
.carousel-wrapper {
  position: relative;
  display: flex;
  align-items: center;
  gap: 16px;
}
.carousel-track-container {
  overflow: hidden;
  width: 100%;
}
.carousel-track {
  display: flex;
  gap: 24px;
  transition: transform .5s ease;
}
.carousel-card {
  position: relative;
  min-width: calc((100% - 72px) / 4);
  height: 480px;
  width: 300px;
  border-radius: var(--radius-lg);
  overflow: hidden;
  flex-shrink: 0;
  cursor: pointer;
}
.carousel-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .5s ease;
}
.carousel-card:hover img {
  transform: scale(1.05);
}
.carousel-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(28,56,20,.92) 0%, rgba(0,0,0,.1) 60%);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 24px 20px;
  color: var(--blanc);
}
.carousel-overlay h3 {
  font-family: var(--font-titre);
  font-size: 1.1rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: .05em;
  margin-bottom: 8px;
  color: var(--blanc);
}
.carousel-overlay p {
  font-size: .85rem;
  color: rgba(255,255,255,.8);
  line-height: 1.5;
}
.carousel-btn {
  flex-shrink: 0;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--vert);
  color: var(--blanc);
  font-size: 1.6rem;
  line-height: 44px;
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
  padding-bottom: 2px;
  transition: background var(--transition), transform var(--transition);
  z-index: 2;
}
.carousel-btn:hover {
  background: var(--vert-dark);
  transform: scale(1.08);
}
.carousel-dots {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-top: 28px;
}
.carousel-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--gris-light);
  border: none;
  cursor: pointer;
  transition: background var(--transition), transform var(--transition);
}
.carousel-dot.active {
  background: var(--vert);
  transform: scale(1.3);
}

/* -----------------------------------------
   RÉALISATIONS & CONCEPTION 3D
----------------------------------------- */
.realisations-section,
.conception3d-section {
  background: var(--bg-2);
}
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}
.gallery-item {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  aspect-ratio: 4/3;
  cursor: pointer;
}
.gallery-item img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform .5s ease;
}
.gallery-item:hover img {
  transform: scale(1.07);
}
.gallery-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(28,56,20,.88) 0%, transparent 60%);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 20px;
  opacity: 0;
  transition: opacity var(--transition);
}
.gallery-item:hover .gallery-overlay {
  opacity: 1;
}
.gallery-label {
  font-family: var(--font-titre);
  font-size: .75rem;
  letter-spacing: .15em;
  text-transform: uppercase;
  color: var(--bg-2-tag);
  margin-bottom: 4px;
}
.gallery-overlay p {
  color: var(--bg-2-titre);
  font-size: .95rem;
  font-weight: 500;
}

.gallery-footer {
  text-align: center;
  margin-top: 40px;
}

/* -----------------------------------------
   STATS
----------------------------------------- */
.stats-section {
  background: var(--brun-dark);
  padding: 72px 0;
}
.stats-container {
  display: flex;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  gap: 0;
}
.stat-item {
  flex: 1;
  text-align: center;
  color: var(--blanc);
  padding: 24px 16px;
  border-right: 1px solid rgba(255,255,255,.15);
}
.stat-item:last-child {
  border-right: none;
}
.stat-number {
  font-family: var(--font-titre);
  font-size: clamp(2.8rem, 5vw, 4.5rem);
  font-weight: 700;
  color: var(--or-light);
  line-height: 1;
}
.stat-plus {
  font-family: var(--font-titre);
  font-size: 2rem;
  font-weight: 700;
  color: var(--or-light);
}
.stat-item p {
  font-family: var(--font-titre);
  font-size: .85rem;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: rgba(255,255,255,.75);
  margin-top: 8px;
}

/* -----------------------------------------
   À PROPOS
----------------------------------------- */
.apropos-section {
  background: var(--bg-1);
}
.apropos-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 72px;
  align-items: center;
}
.apropos-image {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: visible;
}
.apropos-image img {
  width: 100%;
  aspect-ratio: 4/5;
  object-fit: cover;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
}
.apropos-badge {
  position: absolute;
  bottom: -24px;
  right: -24px;
  background: var(--vert);
  color: var(--blanc);
  border-radius: var(--radius-lg);
  padding: 20px 24px;
  text-align: center;
  box-shadow: var(--shadow-md);
}
.apropos-badge strong {
  display: block;
  font-family: var(--font-titre);
  font-size: 2.2rem;
  font-weight: 700;
  line-height: 1;
  color: var(--or-light);
}
.apropos-badge span {
  font-family: var(--font-titre);
  font-size: .7rem;
  letter-spacing: .1em;
  text-transform: uppercase;
  opacity: .85;
}
.apropos-content .section-title {
  margin-bottom: 20px;
}
.apropos-content p {
  color: var(--gris);
  margin-bottom: 16px;
}
.apropos-content p strong {
  color: var(--brun-dark);
}
.apropos-list {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin: 24px 0 32px;
}
.apropos-list li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-titre);
  font-weight: 500;
  font-size: .95rem;
  letter-spacing: .03em;
  text-transform: uppercase;
  color: var(--brun-dark);
}
.apropos-list svg {
  width: 18px;
  height: 18px;
  color: var(--vert);
  flex-shrink: 0;
}

/* -----------------------------------------
   TÉMOIGNAGES
----------------------------------------- */
.temoignages-section {
  background: var(--bg-2);
}
.temoignages-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
.temoignage-card {
  background: var(--brun-dark);
  border-radius: var(--radius-lg);
  padding: 36px 28px;
  position: relative;
  transition: transform var(--transition), box-shadow var(--transition);
}
.temoignage-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}
.temoignage-card::before {
  content: '"';
  position: absolute;
  top: 16px; right: 24px;
  font-family: var(--font-titre);
  font-size: 5rem;
  line-height: 1;
  color: var(--or-light);
  opacity: .25;
}
.stars {
  color: var(--or-light);
  font-size: 1.1rem;
  letter-spacing: 2px;
  margin-bottom: 16px;
}
.temoignage-card blockquote {
  font-size: .97rem;
  color: var(--bg-2-texte);
  font-style: italic;
  line-height: 1.7;
  margin-bottom: 24px;
}
.temoignage-author {
  display: flex;
  align-items: center;
  gap: 14px;
}
.author-avatar {
  width: 44px; height: 44px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--brun), var(--vert));
  color: var(--blanc);
  font-family: var(--font-titre);
  font-weight: 700;
  font-size: .85rem;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.temoignage-author strong {
  display: block;
  font-family: var(--font-titre);
  font-size: .9rem;
  color: var(--blanc);
  text-transform: uppercase;
  letter-spacing: .04em;
}
.temoignage-author span {
  font-size: .82rem;
  color: var(--bg-2-texte);
}

/* -----------------------------------------
   CONTACT
----------------------------------------- */
.contact-section {
  background: var(--creme-dark);
}
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 72px;
  align-items: start;
}
.contact-info .section-title {
  margin-bottom: 16px;
}
.contact-info > p {
  color: var(--gris);
  margin-bottom: 36px;
}
.contact-details {
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.contact-detail-item {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}
.contact-detail-item svg {
  width: 22px;
  height: 22px;
  color: var(--vert);
  flex-shrink: 0;
  margin-top: 2px;
}
.social-btn svg {
  color: var(--blanc);
  margin-top: 0;
}
.contact-detail-item strong {
  display: block;
  font-family: var(--font-titre);
  font-size: .85rem;
  text-transform: uppercase;
  letter-spacing: .06em;
  color: var(--brun-dark);
  margin-bottom: 2px;
}
.contact-detail-item a, .contact-detail-item span {
  font-size: .95rem;
  color: var(--gris);
}
.contact-detail-item a:hover {
  color: var(--vert);
}

/* Form */
.contact-form-wrap {
  background: var(--blanc);
  border-radius: var(--radius-lg);
  padding: 48px 40px;
  box-shadow: var(--shadow-md);
}
.contact-form {
  position: relative;
}
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}
.form-group {
  display: flex;
  flex-direction: column;
  gap: 6px;
  margin-bottom: 20px;
}
.form-group label {
  font-family: var(--font-titre);
  font-size: .82rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: .08em;
  color: var(--brun-dark);
}
.form-group input,
.form-group select,
.form-group textarea {
  padding: 12px 16px;
  border: 2px solid var(--gris-light);
  border-radius: var(--radius);
  font-size: .97rem;
  color: var(--charbon);
  background: var(--creme);
  transition: border-color var(--transition), box-shadow var(--transition);
  outline: none;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--vert);
  box-shadow: 0 0 0 3px rgba(45,90,39,.12);
  background: var(--blanc);
}
.form-group textarea {
  resize: vertical;
  min-height: 110px;
}
.form-error {
  font-size: .8rem;
  color: #c0392b;
  display: none;
}
.form-group.error .form-error {
  display: block;
}
.form-group.error input,
.form-group.error select {
  border-color: #c0392b;
}
.form-note {
  text-align: center;
  font-size: .8rem;
  color: var(--gris);
  margin-top: 12px;
}
.form-success {
  display: none;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 8px;
  text-align: center;
  padding: 40px;
  background: var(--blanc);
  border-radius: var(--radius-lg);
  position: absolute;
  inset: 0;
  color: var(--vert);
}
.form-success.show {
  display: flex;
}
.form-success strong {
  font-family: var(--font-titre);
  font-size: 1.3rem;
  text-transform: uppercase;
}
.form-success p {
  font-size: .95rem;
  color: var(--gris);
}

.social-links {
  display: flex;
  gap: 12px;
}
.social-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  background: var(--vert);
  border-radius: var(--radius);
  color: var(--blanc);
  transition: background var(--transition);
}
.social-btn:hover {
  background: var(--vert-dark);
}

/* -----------------------------------------
   FOOTER
----------------------------------------- */
.footer {
  background: var(--brun-dark);
  color: var(--blanc);
}
.footer-top {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 48px;
  max-width: 1200px;
  margin: 0 auto;
  padding: 64px 24px 48px;
}
.footer-brand .footer-logo {
  height: 125px; width: auto;
  object-fit: contain;
  margin-bottom: 16px;
}
.footer-brand p {
  font-size: .9rem;
  color: rgba(255,255,255,.65);
  line-height: 1.7;
}
.footer-links h4, .footer-contact h4 {
  font-family: var(--font-titre);
  font-size: .8rem;
  letter-spacing: .15em;
  text-transform: uppercase;
  color: var(--or-light);
  margin-bottom: 16px;
}
.footer-links a {
  display: block;
  font-size: .9rem;
  color: rgba(255,255,255,.65);
  margin-bottom: 8px;
  transition: color var(--transition);
}
.footer-links a:hover {
  color: var(--blanc);
}
.footer-contact p {
  font-size: .9rem;
  color: rgba(255,255,255,.65);
  margin-bottom: 6px;
}
.footer-contact a {
  color: rgba(255,255,255,.65);
  transition: color var(--transition);
}
.footer-contact a:hover {
  color: var(--or-light);
}
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,.1);
  text-align: center;
  padding: 20px 24px;
  font-size: .82rem;
  color: rgba(255,255,255,.45);
}
.footer-bottom a { 
  color: rgba(255,255,255,.55); 
}
.footer-bottom a:hover { 
  color: var(--or-light); 
}

.footer-facebook {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

/* -----------------------------------------
   BOUTON APPEL FAB
----------------------------------------- */
.fab-call {
  display: none;
  position: fixed;
  bottom: 24px; right: 24px;
  width: 56px; height: 56px;
  background: var(--vert);
  color: var(--blanc);
  border-radius: 50%;
  box-shadow: var(--shadow-lg);
  z-index: 999;
  align-items: center; justify-content: center;
  transition: transform var(--transition), background var(--transition);
}
.fab-call:hover {
  transform: scale(1.08);
  background: var(--vert-dark);
}

/* -----------------------------------------
   MENTIONS LÉGALES
----------------------------------------- */
.mentions-hero {
  background: var(--brun-dark);
  padding: calc(var(--nav-h) + 48px) 0 48px;
  text-align: center;
}
.mentions-hero .section-tag {
  color: var(--or-light);
}
.mentions-hero .section-title {
  color: var(--blanc);
  margin-bottom: 0;
}

.mentions-body {
  background: var(--creme);
  padding: 72px 0 96px;
}
.mentions-container {
  max-width: 860px;
  margin: 0 auto;
  padding: 0 24px;
}
.mentions-block {
  background: var(--blanc);
  border-radius: var(--radius-lg);
  padding: 40px 48px;
  margin-bottom: 24px;
  box-shadow: var(--shadow-sm);
  border-left: 4px solid var(--vert);
}
.mentions-block h2 {
  font-family: var(--font-titre);
  font-weight: 700;
  font-size: 1.1rem;
  text-transform: uppercase;
  letter-spacing: .08em;
  color: var(--brun-dark);
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  gap: 10px;
}
.mentions-block h2 span.num {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
  background: var(--vert);
  color: var(--blanc);
  border-radius: 50%;
  font-size: .75rem;
  font-weight: 700;
  flex-shrink: 0;
}
.mentions-block p {
  font-size: .97rem;
  color: var(--gris);
  line-height: 1.8;
  margin-bottom: 12px;
}
.mentions-block p:last-child {
  margin-bottom: 0;
}
.mentions-block strong {
  color: var(--charbon);
}
.mentions-block a {
  color: var(--vert);
  text-decoration: underline;
}
.mentions-block a:hover {
  color: var(--vert-dark);
}
.mentions-block ul {
  list-style: disc;
  padding-left: 20px;
  margin-top: 8px;
}
.mentions-block ul li {
  font-size: .97rem;
  color: var(--gris);
  line-height: 1.8;
  margin-bottom: 4px;
}
.mentions-back {
  text-align: center;
  margin-top: 48px;
}

/*form*/
.cf-turnstile {
  margin-bottom: 16px;
}

.honeypot {
  display: none;
}

/* -----------------------------------------
   RESPONSIVE
----------------------------------------- */
@media (max-width: 1024px) {
  .carousel-card {
    min-width: calc((100% - 48px) / 3);
  }
  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .temoignages-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .apropos-grid {
    grid-template-columns: 1fr;
    gap: 48px;
  }
  .apropos-image {
    max-width: 480px;
    margin: 0 auto;
  }
  .apropos-badge {
    right: 0;
  }
  .contact-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .footer-top {
    grid-template-columns: 1fr 1fr;
  }
  .trust-container {
    flex-wrap: wrap;
  }
  .trust-sep {
    display: none;
  }
  .trust-item {
    width: 50%;
  }
}

@media (max-width: 768px) {
  :root {
  --nav-h: 68px;
}
  .section {
    padding: 64px 0;
  }

  .nav-links {
    position: fixed;
    top: var(--nav-h); left: 0; right: 0;
    background: var(--blanc);
    flex-direction: column;
    align-items: flex-start;
    padding: 20px 24px 32px;
    gap: 6px;
    box-shadow: var(--shadow-md);
    transform: translateY(-100%);
    opacity: 0;
    pointer-events: none;
    transition: transform .35s ease, opacity .35s ease;
  }
  .nav-links.open {
    transform: translateY(0);
    opacity: 1;
    pointer-events: auto;
  }
  .nav-links a {
    color: var(--charbon) !important;
    padding: 10px 0;
    font-size: 1rem;
    width: 100%;
    border-bottom: 1px solid var(--creme-dark);
  }
  .btn-nav {
    margin-top: 8px;
    width: 100%;
    text-align: center;
    justify-content: center;
  }
  .hamburger {
    display: flex;
  }

  .hero-title {
    font-size: clamp(2rem, 8vw, 3rem);
  }
  .hero-cta {
    flex-direction: column;
    align-items: center;
  }

  .carousel-card {
    min-width: calc((100% - 24px) / 2);
  }
  .gallery-grid {
    grid-template-columns: 1fr;
  }
  .temoignages-grid {
    grid-template-columns: 1fr;
  }
  .stats-container {
    flex-wrap: wrap;
  }
  .stat-item {
    width: 50%;
    border-right: none;
    border-bottom: 1px solid rgba(255,255,255,.1);
  }
  .form-row {
    grid-template-columns: 1fr;
  }
  .contact-form-wrap {
    padding: 28px 20px;
  }
  .footer-top {
    grid-template-columns: 1fr;
  }
  .trust-item {
    width: 100%;
  }
  .fab-call {
    display: flex;
  }
  .mentions-block {
    padding: 28px 20px;
  }
}

@media (max-width: 480px) {
  .section-title {
    font-size: 1.8rem;
  }
  .stats-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
  }
  .stat-item {
    width: 100%;
  }
  .carousel-card {
    min-width: 100%;
  }
}