﻿/* =============================================
   AU FIL DU BOIS 87 — style.css
   Palette : beige cassé · ocre · vert forêt · brun
   Typo : Cormorant Garamond (titres) + DM Sans (corps)
   ============================================= */


/* =============================================
   TOKENS
   ============================================= */
:root {
  --bg:          #F5F0E8;
  --bg-warm:     #EDE6D6;
  --bg-dark:     rgba(20,10, 5, 1);
  --txt:         #2B2519;
  --txt-muted:   #6B5E48;
  --ocre:        #C4872A;
  --ocre-light:  #DEB87A;
  --vert:        #3A5640;
  --vert-light:  #4F7257;
  --cream:       #FBF7F0;

  --font-display: 'Cormorant Garamond', Georgia, serif;
  --font-body:    'DM Sans', system-ui, sans-serif;

  --radius:      4px;
  --radius-lg:   10px;
  --transition:  0.25s ease;
  --shadow:      0 2px 16px rgba(43, 37, 25, 0.09);
  --shadow-md:   0 6px 32px rgba(43, 37, 25, 0.13);
}


/* =============================================
   RESET
   ============================================= */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.65;
  color: var(--txt);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
  text-align: left;
}

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

/* WP */
.grecaptcha-badge { display: none !important; }


/* =============================================
   TYPOGRAPHIE
   ============================================= */
h1, h2, h3 {
  font-family: var(--font-display);
  font-weight: 400;
  line-height: 0.8;
  letter-spacing: -0.01em;
}
h1 { font-size: clamp(2.6rem, 5vw, 4rem); }
h2 { font-size: clamp(2rem, 3.5vw, 3rem); }
h3 { font-size: 1.3rem; font-weight: 600; color:var(--ocre);}
em { font-style: italic; font-weight: 300; }
h1 em { font-size: 0.85em; }
p { max-width: 62ch; }

.section-eyebrow {
  font-family: var(--font-body);
  font-size: 0.7rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: var(--ocre);
  margin-bottom: 0.75rem;
  max-width: none;
}
.section-title { margin-bottom: 2.5rem; }
.section-header { margin-bottom: 3rem; }


/* =============================================
   LAYOUT
   ============================================= */
.container {
  width: min(1160px, 100% - 2 * clamp(1.25rem, 5vw, 4rem));
  margin-inline: auto;
}
.section { padding-block: clamp(4rem, 9vw, 7rem); }


/* =============================================
   BOUTONS
   ============================================= */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.8em 1.8em;
  border-radius: var(--radius);
  font-family: var(--font-body);
  font-size: 0.88rem;
  font-weight: 500;
  letter-spacing: 0.04em;
  transition: background var(--transition), color var(--transition),
              border-color var(--transition), transform var(--transition);
}
.btn:hover { transform: translateY(-1px); }

.btn-primary {
  background: var(--vert) !important;
  color: #fff !important;
}
.btn-primary:hover { background: var(--vert-light); }

.btn-ghost {
  border: 1.5px solid var(--txt);
  color: var(--txt);
}
.btn-ghost:hover { border-color: var(--vert); color: var(--vert); }

.btn-full { width: 100%; justify-content: center; }


/* =============================================
   HEADER
   ============================================= */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--bg);
  border-bottom: 1px solid rgba(43, 37, 25, 0.08);
  backdrop-filter: blur(8px);
}
.header-inner {
  width: min(1160px, 100% - 2 * clamp(1.25rem, 5vw, 4rem));
  margin-inline: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
  gap: 2rem;
  text-align: center;
}

.logo {
  display: flex;
  flex-direction: column;
  gap: 1px;
  flex-shrink: 0;
}
.logo-main {
  font-family: var(--font-display);
  font-size: 1.45rem;
  font-weight: 400;
  letter-spacing: -0.01em;
  line-height: 1;
  color: var(--txt);
}
.logo-sub {
  font-family: var(--font-body);
  font-size: 0.65rem;
  font-weight: 400;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: var(--txt-muted);
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 2.5rem;
}
.site-nav a {
  font-size: 0.85rem;
  font-weight: 400;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  color: var(--txt-muted);
  transition: color var(--transition);
}
.site-nav a:hover,
.site-nav a.nav-active { color: var(--txt); }
.site-nav a.nav-active {
  border-bottom: 2px solid var(--ocre);
  padding-bottom: 2px;
}
.site-nav .nav-cta {
  background: var(--vert);
  color: #fff;
  padding: 0.5em 1.2em;
  border-radius: var(--radius);
  font-weight: 500;
}
.site-nav .nav-cta:hover { background: var(--vert-light); color: #fff; }

.burger { display: none; flex-direction: column; gap: 5px; padding: 4px; }
.burger span { display: block; width: 22px; height: 2px; background: var(--txt); border-radius: 2px; transition: var(--transition); }


/* =============================================
   HERO (accueil)
   ============================================= */
.hero {
  display: grid;
  grid-template-columns: 1fr 1fr;
  /*min-height: calc(100svh - 72px);*/
  overflow: hidden;
}
.hero-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(3rem, 8vw, 7rem) clamp(1.5rem, 5vw, 5rem) clamp(3rem, 8vw, 7rem) clamp(1.5rem, 6vw, 6rem);
  max-width: 620px;
  margin: auto;
}
.hero-eyebrow {
  font-size: 0.7rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: var(--ocre);
  margin-bottom: 1.5rem;
  max-width: none;
}
.hero-title { margin-bottom: 1.5rem; }
.hero-desc { font-size: 1.05rem; color: var(--txt-muted); margin-bottom: 2.5rem; }
.hero-actions { display: flex; gap: 1rem; flex-wrap: wrap; }
.hero-visual { background: var(--bg-warm); position: relative; overflow: hidden; }
.hero-image-frame { position: absolute; inset: 0; display: flex; flex-direction: column; }
.hero-image-placeholder { flex: 1; overflow: hidden; }
.hero-image-placeholder svg { width: 100%; height: 100%; object-fit: cover; }
.hero-image-caption {
  padding: 0.75rem 1.25rem;
  font-size: 0.72rem;
  font-weight: 400;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--txt-muted);
  background: var(--bg-warm);
  border-top: 1px solid rgba(43,37,25,0.08);
  text-align: center;
}


/* =============================================
   PAGE HERO (pages intérieures)
   ============================================= */
.page-hero {
  padding: clamp(3rem, 7vw, 6rem) 0 clamp(2rem, 4vw, 3.5rem);
  border-bottom: 1px solid rgba(43,37,25,0.07);
}
.page-hero-title {
  margin-top: 0.5rem;
  line-height: 0.8;
}
.page-hero-desc {
  margin-top: 1.25rem;
  font-size: 1rem;
  color: var(--txt-muted);
  max-width: 58ch;
}


/* =============================================
   BANDE INTRO
   ============================================= */
.band-intro {
  background: var(--vert);
  color: rgba(255,255,255,0.88);
  padding: 1rem 0;
}
.band-inner {
  width: min(1160px, 100% - 2 * clamp(1.25rem, 5vw, 4rem));
  margin: auto;
  text-align: center;
  font-size: 0.78rem;
  font-weight: 400;
  text-transform: uppercase;
  letter-spacing: 0.15em;
}
.band-inner span { margin: 0 10px; }
.band-inner .sep { color: var(--ocre-light); opacity: 0.7; }


/* =============================================
   SAVOIR-FAIRE
   ============================================= */
.savoir-faire { background: var(--cream); }
.skills-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
  gap: 1.5rem;
}
.skill-card {
  background: var(--bg);
  border: 1px solid rgba(43,37,25,0.08);
  border-radius: var(--radius-lg);
  padding: 2rem 1.75rem;
  transition: box-shadow var(--transition), transform var(--transition);
}
.skill-card:hover { box-shadow: var(--shadow-md); transform: translateY(-3px); }
.skill-icon { width: 44px; height: 44px; color: var(--vert); margin-bottom: 1.25rem; }
.skill-icon svg { width: 100%; height: 100%; }
.skill-card h3 { font-size: 1.15rem; margin-bottom: 0.6rem; color: var(--txt); }
.skill-card p { font-size: 0.9rem; color: var(--txt-muted); line-height: 1.6; max-width: none; }


/* =============================================
   RÉALISATIONS
   ============================================= */
.realisations { background: var(--bg); }
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
}
.gallery-item--large { grid-column: 1 / 2; grid-row: 1 / 3; }
.gallery-item {
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: var(--bg-warm);
}
.gallery-placeholder {
  aspect-ratio: 4/3;
  background: var(--bg-warm);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
  border: 1px solid rgba(43,37,25,0.15);
  transition: background var(--transition);
}
.gallery-item--large .gallery-placeholder { aspect-ratio: 3/4; }
.gallery-placeholder span { font-size: 0.82rem; color: var(--txt-muted); font-weight: 500; }
.gallery-placeholder small { font-size: 0.72rem; color: var(--txt-muted); opacity: 0.6; }
.gallery-item:hover .gallery-placeholder { background: var(--ocre-light); }

figcaption {
  padding: 0.85rem 1rem;
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
}
figcaption strong { font-family: var(--font-display); font-size: 1rem; font-weight: 600; }
figcaption span { font-size: 0.75rem; color: var(--txt-muted); text-transform: uppercase; letter-spacing: 0.1em; }


/* =============================================
   TÉMOIGNAGE — carte projet
   ============================================= */
.projet-temoignage {
  margin-block: 0.9rem 1.1rem;
  padding: 0.6rem 0.75rem;
  background: var(--bg-warm);
  border-radius: 0 var(--radius) var(--radius) 0;
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  gap: 0.75rem;
}
.temoignage-photo {
  width: 36px !important;
  height: 36px !important;
  margin-top: 2px;
  border-radius: 50%;
  object-fit: cover;
  border: 1px solid var(--bg);
  box-shadow: 0 0 0 1.5px var(--ocre);
  flex-shrink: 0;
}
.temoignage-corps { display: flex; flex-direction: column; gap: 0.4rem; min-width: 0; }
.temoignage-etoiles { display: flex; gap: 3px; }
.etoile {
  width: 15px;
  height: 15px;
  fill: var(--bg-warm);
  stroke: var(--ocre);
  stroke-width: 1.2px;
  flex-shrink: 0;
  transition: fill 0.15s ease;
}
.etoile--pleine { fill: var(--ocre); stroke: var(--ocre); }
.temoignage-texte {
  font-family: var(--font-display);
  font-size: 0.95rem;
  font-style: italic;
  font-weight: 300;
  line-height: 1.55;
  color: var(--txt);
  margin: 0;
}
.temoignage-texte p { margin: 0; max-width: none; }
.temoignage-texte p + p { margin-top: 0.4rem; }


/* =============================================
   BLOC À PROPOS (section dans accueil)
   ============================================= */
.about { background: var(--bg-warm); }
.about-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(3rem, 8vw, 7rem);
  align-items: center;
}
.about-image { position: relative; }
.about-placeholder {
  aspect-ratio: 4/5;
  background: var(--bg);
  border-radius: var(--radius-lg);
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(43,37,25,0.15);
  font-size: 0.85rem;
  color: var(--txt-muted);
  text-align: center;
  line-height: 1.8;
}
.about-tag {
  position: absolute;
  bottom: -1rem;
  right: -1.5rem;
  background: var(--ocre);
  color: #fff;
  font-size: 0.7rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  padding: 0.55em 1em;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}
.about-text { max-width: 540px; }
.about-text p { font-size: 0.95rem; color: var(--txt-muted); margin-bottom: 1.2rem; max-width: none; }
.about-values { margin-top: 1rem; display: flex; flex-direction: column; gap: 0.75rem; }
.about-values li {
  font-size: 0.88rem;
  padding-left: 1.2rem;
  position: relative;
  color: var(--txt-muted);
}
.about-values li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0.6em;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--ocre);
}
.about-values strong { color: var(--txt); font-weight: 500; }


/* =============================================
   PAGE À PROPOS
   ============================================= */
.apropos-intro { background: var(--bg); }
.apropos-intro-inner {
  display: grid;
  grid-template-columns: 340px 1fr;
  gap: clamp(3rem, 7vw, 6rem);
  align-items: start;
}

.apropos-photo-col { position: relative; }
.apropos-photo-frame { position: relative; }
.apropos-photo-placeholder {
  aspect-ratio: 3/4;
  background: var(--bg-warm);
  border-radius: var(--radius-lg);
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(43,37,25,0.12);
  font-size: 0.85rem;
  color: var(--txt-muted);
  text-align: center;
}
.apropos-photo-frame img {
  width: 100%;
  aspect-ratio: 3/4;
  object-fit: cover;
  border-radius: var(--radius-lg);
}
.apropos-photo-tag {
  position: absolute;
  bottom: -0.85rem;
  left: 1.5rem;
  background: var(--ocre);
  color: #fff;
  font-size: 0.68rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  padding: 0.5em 0.9em;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.apropos-text-col { padding-top: 0.5rem; }
.apropos-lead {
  font-family: var(--font-display);
  font-size: clamp(1.3rem, 2.5vw, 1.7rem);
  font-style: italic;
  font-weight: 300;
  line-height: 1.35;
  color: var(--txt);
  margin-bottom: 1.5rem;
  max-width: none;
}
.apropos-text-col p {
  font-size: 0.96rem;
  color: var(--txt-muted);
  line-height: 1.75;
  margin-bottom: 1.1rem;
  max-width: 58ch;
}

/* Méthode */
.apropos-methode { background: var(--cream); }
.methode-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1.5rem;
}
.methode-card {
  background: var(--bg);
  border: 1px solid rgba(43,37,25,0.08);
  border-radius: var(--radius-lg);
  padding: 1.75rem 1.5rem;
  transition: box-shadow var(--transition), transform var(--transition);
}
.methode-card:hover { box-shadow: var(--shadow-md); transform: translateY(-3px); }
.methode-icon { width: 40px; height: 40px; color: var(--vert); margin-bottom: 1.1rem; }
.methode-icon svg { width: 100%; height: 100%; }
.methode-card h3 { font-size: 1.1rem; margin-bottom: 0.5rem; color: var(--txt); }
.methode-card p { font-size: 0.88rem; color: var(--txt-muted); line-height: 1.65; max-width: none; }

/* Partenaires */
.apropos-partenaires { background: var(--bg-warm); }
.apropos-partenaires-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(3rem, 7vw, 6rem);
  align-items: center;
}
.partenaires-text p { font-size: 0.95rem; color: var(--txt-muted); margin-bottom: 0.9rem; max-width: 52ch; }
.partenaires-text strong { color: var(--txt); font-weight: 500; }
.partenaires-logos { display: flex; flex-wrap: wrap; gap: 1rem; align-items: center; }
.partenaire-badge {
  padding: 0.65em 1.4em;
  border: 1.5px solid rgba(43,37,25,0.15);
  border-radius: var(--radius);
  font-size: 0.82rem;
  font-weight: 500;
  letter-spacing: 0.06em;
  color: var(--txt-muted);
  background: var(--bg);
  transition: border-color var(--transition), color var(--transition);
}
.partenaire-badge:hover { border-color: var(--ocre); color: var(--ocre); }

/* CTA bas de page */
.apropos-cta {
  background: var(--vert);
  padding: clamp(3rem, 6vw, 5rem) 0;
}
.apropos-cta-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  flex-wrap: wrap;
}
.apropos-cta-title {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 3vw, 2.5rem);
  color: #fff;
  font-weight: 300;
  margin-bottom: 0.4rem;
}
.apropos-cta p { font-size: 0.95rem; color: rgba(255,255,255,0.7); max-width: none; }
.apropos-cta .btn-primary { background: var(--ocre) !important; flex-shrink: 0; }
.apropos-cta .btn-primary:hover { background: var(--ocre-light) !important; }


/* =============================================
   CONTACT
   ============================================= */
.contact { background: var(--bg); }
.contact-inner {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: clamp(3rem, 8vw, 7rem);
  align-items: start;
}
.contact-text .section-title { margin-bottom: 1.25rem; }
.contact-text > p { font-size: 0.95rem; color: var(--txt-muted); margin-bottom: 2rem; }
.contact-infos { display: flex; flex-direction: column; gap: 1rem; }
.contact-info-item {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 0.9rem;
  color: var(--txt);
  font-weight: 500;
  transition: color var(--transition);
}
.contact-info-item:hover { color: var(--vert); }
.contact-info-item svg { width: 20px; height: 20px; flex-shrink: 0; color: var(--ocre); }

/* Formulaire */
form { display: flex; flex-direction: column; gap: 1.1rem; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1.1rem; }
form label {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
  font-size: 0.75rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--txt-muted);
}
form input,
form select,
form textarea {
  font-family: var(--font-body);
  font-size: 0.9rem;
  color: var(--txt);
  background: var(--cream);
  border: 1.5px solid rgba(43,37,25,0.12);
  border-radius: var(--radius);
  padding: 0.7em 1em;
  transition: border-color var(--transition), box-shadow var(--transition);
  width: 100%;
  appearance: none;
}
form input::placeholder,
form textarea::placeholder { color: var(--txt-muted); opacity: 0.55; }
form input:focus,
form select:focus,
form textarea:focus {
  outline: none;
  border-color: var(--vert);
  box-shadow: 0 0 0 3px rgba(58, 86, 64, 0.12);
}
form textarea { resize: vertical; min-height: 110px; }
form select { cursor: pointer; }

.wpcf7 form.invalid .wpcf7-response-output,
.wpcf7 form.unaccepted .wpcf7-response-output,
.wpcf7 form.sent .wpcf7-response-output {
  border: 0 !important;
  background-color: var(--vert) !important;
  color: #fff !important;
  padding: 10px;
  margin: 0;
  border-radius: var(--radius);
}
.wpcf7-not-valid-tip { display: inline; }


/* =============================================
   FOOTER
   ============================================= */
.site-footer {
  background: var(--bg-dark);
  color: rgba(251, 247, 240, 0.6);
  padding-block: 3rem;
}
.footer-inner {
  width: min(1160px, 100% - 2 * clamp(1.25rem, 5vw, 4rem));
  margin-inline: auto;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 2rem;
  justify-content: space-between;
}
.footer-brand .logo-main {
  font-family: var(--font-display);
  font-size: 1.35rem;
  color: rgba(251,247,240,0.9);
}
.footer-brand p { font-size: 0.78rem; margin-top: 0.25rem; max-width: none; }
.footer-nav { display: flex; gap: 2rem; }
.footer-nav a { font-size: 0.82rem; color: rgba(251,247,240,0.55); transition: color var(--transition); }
.footer-nav a:hover { color: rgba(251,247,240,0.9); }
.footer-legal { font-size: 0.72rem; color: rgba(251,247,240,0.35); max-width: none; }
.footer-legal a { color: rgba(251,247,240,0.45); transition: color var(--transition); }
.footer-legal a:hover { color: rgba(251,247,240,0.8); }


/* =============================================
   PAGE ACTIVITÉS
   ============================================= */
.activite-section { background: var(--bg); }
.activite-section--alt { background: var(--cream); }

.activite-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(3rem, 7vw, 6rem);
  align-items: center;
}
.activite-inner--reverse { direction: rtl; }
.activite-inner--reverse > * { direction: ltr; }

.activite-visuel { position: relative; }
.activite-photo-placeholder {
  aspect-ratio: 4/5;
  background: var(--bg-warm);
  border-radius: var(--radius-lg);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
  border: 1px solid rgba(43,37,25,0.12);
}
.activite-photo-placeholder span { font-size: 0.82rem; color: var(--txt-muted); font-weight: 500; }
.activite-photo-placeholder small { font-size: 0.72rem; color: var(--txt-muted); opacity: 0.6; }
.activite-visuel img {
  width: 100%;
  aspect-ratio: 4/5;
  object-fit: cover;
  border-radius: var(--radius-lg);
}

.activite-numero {
  font-family: var(--font-display);
  font-size: 4rem;
  font-weight: 300;
  line-height: 1;
  color: var(--ocre-light);
  margin-bottom: 0.25rem;
  letter-spacing: -0.03em;
}
.activite-titre { margin-bottom: 2rem; }
.activite-desc {
  font-size: 0.96rem;
  color: var(--txt-muted);
  line-height: 1.75;
  margin-bottom: 1rem;
  max-width: 52ch;
}
.activite-btn { margin-top: 0.75rem; }

.activite-items { display: flex; flex-direction: column; gap: 1.5rem; }
.activite-item { display: flex; gap: 1rem; align-items: flex-start; }
.activite-item-icon {
  width: 36px;
  height: 36px;
  flex-shrink: 0;
  color: var(--vert);
  margin-top: 2px;
}
.activite-item-icon svg { width: 100%; height: 100%; }
.activite-item h3 {
  font-size: 1rem;
  font-weight: 600;
  margin-bottom: 0.3rem;
  color: var(--txt);
  font-family: var(--font-display);
}
.activite-item p {
  font-size: 0.88rem;
  color: var(--txt-muted);
  line-height: 1.65;
  max-width: none;
  margin: 0;
}

.activite-accroche {
  background: var(--bg-warm);
  padding: 3rem 0;
  border-top: 1px solid rgba(43,37,25,0.07);
}
.activite-accroche-inner { text-align: center; }
.activite-accroche-texte {
  font-family: var(--font-display);
  font-size: clamp(1.3rem, 2.5vw, 1.8rem);
  font-weight: 300;
  color: var(--txt);
  line-height: 1.4;
  max-width: 52ch;
  margin-inline: auto;
}
.activite-accroche-texte em { color: var(--ocre); }


/* =============================================
   RESPONSIVE
   ============================================= */
@media (max-width: 900px) {
  .hero { grid-template-columns: 1fr; min-height: auto; }
  .hero-content { padding: 4rem 1.5rem 2.5rem; max-width: none; }
  .hero-visual { height: 340px; }

  .apropos-intro-inner { grid-template-columns: 1fr; }
  .apropos-photo-col { max-width: 320px; }
  .apropos-photo-tag { left: 1rem; }

  .apropos-partenaires-inner,
  .about-inner,
  .contact-inner { grid-template-columns: 1fr; }
  .about-tag { right: 0; }

  .gallery-grid { grid-template-columns: 1fr 1fr; }
  .gallery-item--large { grid-column: 1 / 3; grid-row: auto; }
  .gallery-item--large .gallery-placeholder { aspect-ratio: 16/7; }

  .activite-inner,
  .activite-inner--reverse { grid-template-columns: 1fr; direction: ltr; }
  .activite-visuel { max-width: 420px; }
  .activite-photo-placeholder,
  .activite-visuel img { aspect-ratio: 3/2; }
  .activite-numero { font-size: 3rem; }
}

@media (max-width: 640px) {
  .site-nav { display: none; }
  .burger { display: flex; }
  .site-nav.open {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 0;
    position: absolute;
    top: 72px;
    left: 0;
    right: 0;
    background: var(--bg);
    border-bottom: 1px solid rgba(43,37,25,0.08);
    padding: 1rem 1.5rem 1.5rem;
  }
  .site-nav.open a { padding: 0.75rem 0; width: 100%; border-bottom: 1px solid rgba(43,37,25,0.06); }
  .site-nav.open .nav-cta { background: none; color: var(--vert); padding: 0.75rem 0; border-bottom: none; }
  .site-header { position: relative; }

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

  .gallery-grid { grid-template-columns: 1fr; }
  .gallery-item--large { grid-column: auto; grid-row: auto; }
  .gallery-item--large .gallery-placeholder { aspect-ratio: 4/3; }

  .hero-actions .btn { width: 100%; justify-content: center; }

  .apropos-cta-inner { flex-direction: column; align-items: flex-start; }
  .apropos-cta .btn { width: 100%; justify-content: center; }

  .footer-inner { flex-direction: column; align-items: flex-start; gap: 1.5rem; }
  .footer-nav { flex-wrap: wrap; gap: 1rem; }

  .activite-item { flex-direction: column; gap: 0.5rem; }
  .activite-item-icon { width: 28px; height: 28px; }
  .activite-numero { font-size: 2.5rem; }
}

.single-projet img{
  width: auto;
  object-fit: cover;
  max-height: 70vh ;
}
.single-projet .beer-slider {
  width: auto !important;
  max-height: 70vh;
  margin-inline: auto;
}
.single-projet .beer-slider img,
.single-projet .beer-reveal img {
  max-height: none;
  width: 100%;
  height: 100%;
  object-fit: contain;
  background: var(--bg-warm);
}