/* =========================================================
   Rochat 1922 — Portail des activités
   Palette : vert patrimonial + terre battue + crème (esprit Roland-Garros)
   Typo : Space Grotesk (titres, moderne) + Inter (texte)
   ========================================================= */

:root {
  /* Verts (couleur de marque dominante) */
  --green-900: #003d1d;   /* vert le plus profond */
  --green-800: #00481f;
  --green-700: #00592a;   /* vert principal — surfaces sombres & titres */
  --green-600: #006e34;   /* vert adouci */
  --green-500: #009639;   /* vert lumineux */
  --green-line: #14743f;  /* lignes sur fond vert */

  /* Accent terre battue (esprit Roland-Garros) */
  --accent: #c24a26;       /* terre battue */
  --accent-soft: #d97a52;  /* terracotta clair */
  --accent-deep: #9e3a1c;  /* terracotta foncé (texte sur clair) */
  --accent-pastel: #ead6bd;/* sable (fonds doux, glyphes sur foncé) */

  /* Neutres chauds (crème) */
  --bg: #f3ecdd;          /* fond crème */
  --surface: #ffffff;
  --line: #e6ddca;        /* bordures chaudes */
  --ink: #232a20;         /* texte principal (vert-noir chaud) */
  --muted: #6a6152;       /* texte secondaire */

  /* Texte sur fond vert (fort contraste) */
  --on-green: #ffffff;
  --on-green-soft: rgba(255, 255, 255, 0.82);

  --radius: 16px;
  --radius-sm: 11px;
  --maxw: 1320px;
  --ease: cubic-bezier(0.22, 0.61, 0.36, 1);
  --shadow: 0 24px 48px -28px rgba(0, 61, 29, 0.45);
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: "Inter", system-ui, -apple-system, "Segoe UI", sans-serif;
  color: var(--ink);
  background: var(--bg);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  * { animation: none !important; transition: none !important; }
}

h1, h2, h3 {
  font-family: "Space Grotesk", "Inter", system-ui, sans-serif;
  font-weight: 600;
  line-height: 1.08;
  margin: 0;
  letter-spacing: -0.02em;
}

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

.container {
  width: 100%;
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 0 40px;
}

.sr-only {
  position: absolute; width: 1px; height: 1px;
  padding: 0; margin: -1px; overflow: hidden;
  clip: rect(0 0 0 0); white-space: nowrap; border: 0;
}

.skip-link {
  position: absolute; left: 12px; top: -48px;
  background: var(--accent); color: var(--green-900);
  padding: 10px 16px; border-radius: 8px; font-weight: 600;
  z-index: 200; transition: top 0.2s var(--ease);
}
.skip-link:focus { top: 12px; }

:focus-visible {
  outline: 3px solid var(--accent);
  outline-offset: 2px;
  border-radius: 4px;
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center;
  gap: 8px; padding: 14px 26px; border-radius: 12px;
  font-family: inherit; font-weight: 600; font-size: 0.96rem;
  letter-spacing: 0.2px; cursor: pointer; border: 1.5px solid transparent;
  transition: transform 0.2s var(--ease), background 0.2s var(--ease),
    color 0.2s var(--ease), box-shadow 0.2s var(--ease), border-color 0.2s var(--ease);
}
.btn-sm { padding: 11px 22px; font-size: 0.9rem; }

/* CTA principal : terre battue (l'action) */
.btn-primary {
  background: var(--accent); color: #fff;
  box-shadow: 0 14px 28px -16px rgba(158, 58, 28, 0.85);
}
.btn-primary:hover { background: var(--accent-deep); transform: translateY(-2px); }

/* CTA secondaire : contour vert (la marque) */
.btn-outline {
  background: transparent; color: var(--green-700);
  border-color: rgba(0, 89, 42, 0.4);
}
.btn-outline:hover {
  border-color: var(--green-700); color: var(--green-800);
  background: rgba(0, 89, 42, 0.05); transform: translateY(-2px);
}

/* CTA clair (sur fonds verts foncés) */
.btn-light {
  background: #ffffff; color: var(--green-700);
  box-shadow: 0 12px 26px -16px rgba(0, 0, 0, 0.5);
}
.btn-light:hover { background: var(--accent-pastel); color: var(--green-800); transform: translateY(-2px); }

/* Ancien alias conservé */
.btn-ghost {
  background: transparent; color: var(--green-700);
  border-color: rgba(0, 89, 42, 0.35);
}
.btn-ghost:hover {
  border-color: var(--green-700); color: var(--green-800);
  background: rgba(0, 89, 42, 0.05); transform: translateY(-2px);
}

/* ---------- Header ---------- */
.site-header {
  position: sticky; top: 0; z-index: 100;
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--line);
}
.header-inner {
  display: flex; align-items: center; justify-content: space-between;
  height: 76px;
}
.brand { display: flex; align-items: center; gap: 13px; }
/* Logo vectoriel dédié (assets/logo-mark.svg) */
.brand-mark { width: 46px; height: 46px; display: block; flex: none; }
.brand-text { display: flex; flex-direction: column; line-height: 1; }
.brand-name { color: var(--green-700); font-weight: 700; letter-spacing: 3px; font-size: 1.05rem; }
.brand-since { color: var(--accent-deep); font-size: 0.66rem; letter-spacing: 4px; margin-top: 5px; }

.nav { display: flex; align-items: center; }
.nav-menu {
  display: flex; align-items: center; gap: 32px;
  list-style: none; margin: 0; padding: 0;
}
.nav-menu a { color: var(--green-700); font-size: 0.93rem; font-weight: 500; transition: color 0.2s var(--ease); }
.nav-menu a:hover { color: var(--accent-deep); }
.nav-cta {
  background: var(--accent); border: 1.5px solid var(--accent);
  color: #fff !important; padding: 10px 22px; border-radius: 10px;
  box-shadow: 0 12px 24px -16px rgba(158, 58, 28, 0.85);
}
.nav-cta:hover { background: var(--accent-deep); border-color: var(--accent-deep); color: #fff !important; }

.nav-toggle {
  display: none; background: none; border: 0; cursor: pointer;
  width: 44px; height: 44px; position: relative;
}
.nav-burger, .nav-burger::before, .nav-burger::after {
  content: ""; position: absolute; left: 10px; right: 10px; height: 2px;
  background: var(--green-700); border-radius: 2px;
  transition: transform 0.25s var(--ease), opacity 0.25s var(--ease);
}
.nav-burger { top: 21px; }
.nav-burger::before { top: -7px; }
.nav-burger::after { top: 7px; }
.nav-toggle[aria-expanded="true"] .nav-burger { background: transparent; }
.nav-toggle[aria-expanded="true"] .nav-burger::before { transform: translateY(7px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] .nav-burger::after { transform: translateY(-7px) rotate(-45deg); }

/* ---------- Hero ---------- */
.hero {
  position: relative;
  background: #ffffff;
  color: var(--ink);
  padding: 84px 0 96px;
  overflow: hidden;
}
.hero-grid {
  display: grid; grid-template-columns: 1.05fr 0.95fr;
  gap: 56px; align-items: center;
}
.hero-copy { position: relative; z-index: 1; }
.hero-eyebrow {
  display: inline-flex; align-items: center; gap: 10px;
  text-transform: uppercase; letter-spacing: 3px; font-size: 0.74rem;
  color: var(--accent-deep); font-weight: 700; margin: 0 0 20px;
}
.hero-eyebrow::before {
  content: ""; width: 28px; height: 1.5px; background: var(--accent-deep);
}
.hero-title { font-size: clamp(2.4rem, 4.6vw, 3.9rem); color: var(--ink); }
.hero-title .accent { color: var(--accent); }
.hero-lead {
  margin: 24px 0 34px; font-size: 1.16rem; color: var(--muted);
  max-width: 560px;
}
.hero-actions { display: flex; flex-wrap: wrap; gap: 14px; }

.scroll-cue {
  display: inline-grid; place-items: center;
  width: 44px; height: 44px; margin-top: 46px;
  border-radius: 50%; border: 1.5px solid var(--accent);
  color: var(--accent);
}
.scroll-arrow {
  width: 10px; height: 10px;
  border-right: 2px solid currentColor; border-bottom: 2px solid currentColor;
  transform: translateY(-2px) rotate(45deg);
  animation: bounce 1.8s var(--ease) infinite;
}
@keyframes bounce {
  0%, 100% { transform: translateY(-3px) rotate(45deg); }
  50% { transform: translateY(2px) rotate(45deg); }
}

/* Composition visuelle « cartes flottantes » */
.hero-visual { position: relative; justify-self: center; width: 100%; max-width: 460px; }
.hero-visual::before {
  content: ""; position: absolute; right: -20px; bottom: -20px;
  width: 72%; height: 72%; background: var(--accent); opacity: 0.14;
  border-radius: 28px; z-index: 0;
}
.ph-hero { position: relative; z-index: 1; }
.hero-visual-card {
  border-radius: 28px; overflow: hidden;
  box-shadow: 0 40px 80px -40px rgba(0, 61, 29, 0.5);
}
.hero-visual-card img { width: 100%; height: auto; display: block; }
.hero-chip {
  position: absolute; background: #fff;
  border: 1px solid var(--line); border-radius: 16px;
  box-shadow: 0 20px 44px -22px rgba(0, 61, 29, 0.45);
}
.hero-chip-top {
  top: 30px; left: -34px; display: flex; align-items: center; gap: 12px;
  padding: 14px 18px 14px 14px;
}
.hero-chip-badge {
  display: grid; place-items: center; width: 44px; height: 44px;
  border-radius: 12px; background: var(--accent-pastel);
}
.hero-chip-text { display: flex; flex-direction: column; line-height: 1.15; }
.hero-chip-text strong { color: var(--green-700); font-size: 0.98rem; }
.hero-chip-text span { color: var(--muted); font-size: 0.8rem; margin-top: 3px; }
.hero-chip-bottom {
  bottom: 28px; right: -28px; padding: 16px 22px; text-align: center;
}
.hero-chip-bottom strong {
  display: block; font-family: "Space Grotesk", "Inter", system-ui, sans-serif; font-weight: 700;
  font-size: 1.9rem; color: var(--green-700); line-height: 1;
}
.hero-chip-bottom span { color: var(--muted); font-size: 0.82rem; }

/* ---------- Sections ---------- */
.section { padding: 96px 0; }
.section-head { max-width: 860px; margin: 0 auto 60px; text-align: center; }
.section-eyebrow {
  text-transform: uppercase; letter-spacing: 3px; font-size: 0.72rem;
  color: var(--accent-deep); font-weight: 700; margin: 0 0 16px;
}
.section-title { font-size: clamp(2rem, 3.8vw, 3rem); color: var(--green-700); }
.section-intro { color: var(--muted); margin-top: 18px; font-size: 1.08rem; }

/* ---------- Activities (panneau foncé) ---------- */
.activities { background: var(--bg); padding: 70px 0; }
.panel {
  background:
    radial-gradient(900px 500px at 80% -10%, rgba(0, 110, 52, 0.35), transparent 60%),
    linear-gradient(165deg, #08321c 0%, #042914 100%);
  border-radius: 32px;
  padding: 72px 56px 64px;
  color: #fff;
  box-shadow: 0 50px 90px -50px rgba(0, 40, 18, 0.7);
}
.panel-head { max-width: 720px; margin: 0 auto 48px; text-align: center; }
.panel-title { font-size: clamp(2rem, 3.8vw, 2.9rem); color: #fff; }
.panel-sub { color: rgba(255, 255, 255, 0.78); margin-top: 16px; font-size: 1.06rem; }

.card-grid {
  list-style: none; padding: 0; margin: 0;
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px;
}
.card {
  position: relative;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 38px 28px 32px;
  display: flex; flex-direction: column; align-items: center; text-align: center;
  transition: transform 0.3s var(--ease), box-shadow 0.3s var(--ease);
}
.card:hover {
  transform: translateY(-6px);
  box-shadow: 0 30px 60px -30px rgba(0, 0, 0, 0.45);
}
.card-icon {
  display: grid; place-items: center;
  width: 70px; height: 70px; border-radius: 50%;
  background: linear-gradient(155deg, var(--green-600), var(--green-800));
  color: var(--accent-pastel); font-size: 1.7rem; margin-bottom: 22px;
}
.card-title { font-size: 1.4rem; color: var(--green-700); margin-bottom: 10px; }
.card-text { color: var(--muted); font-size: 0.97rem; margin: 0 0 26px; flex: 1; }

.panel-foot { text-align: center; margin-top: 46px; }
.panel-link {
  display: inline-flex; align-items: center; gap: 10px;
  color: #fff; font-weight: 600; letter-spacing: 0.4px; font-size: 0.95rem;
  padding-bottom: 4px; border-bottom: 1.5px solid rgba(255, 255, 255, 0.4);
}
.panel-link span { color: var(--accent-soft); transition: transform 0.2s var(--ease); }
.panel-link:hover { border-color: var(--accent); }
.panel-link:hover span { transform: translateX(5px); }

/* ---------- Histoire ---------- */
.histoire { background: var(--surface); }
.histoire-inner {
  display: grid; grid-template-columns: 0.9fr 1.2fr; gap: 64px; align-items: center;
}
.histoire-inner .ph-portrait { order: -1; } /* photo à gauche, texte à droite (rythme éditorial) */
.histoire-text p { color: var(--muted); margin: 18px 0; }
.histoire-text .section-title { margin-bottom: 8px; }
.values { list-style: none; padding: 0; margin: 30px 0 0; display: grid; gap: 14px; }
.values li {
  padding-left: 24px; position: relative; color: var(--muted);
}
.values li::before {
  content: ""; position: absolute; left: 0; top: 11px;
  width: 9px; height: 9px; background: var(--accent);
  transform: rotate(45deg);
}
.values strong { color: var(--green-700); }

.histoire-aside {
  background: linear-gradient(160deg, var(--green-700), var(--green-900));
  border-radius: var(--radius);
  padding: 40px 36px;
  color: #fff;
  box-shadow: var(--shadow);
}
.timeline { display: grid; gap: 28px; position: relative; }
.timeline-item {
  display: flex; flex-direction: column; gap: 5px;
  padding-left: 26px; position: relative;
  border-left: 1px solid var(--green-line);
}
.timeline-item::before {
  content: ""; position: absolute; left: -5px; top: 6px;
  width: 9px; height: 9px; border-radius: 50%;
  background: var(--accent); box-shadow: 0 0 0 4px rgba(47, 170, 99, 0.22);
}
.timeline-year {
  font-family: "Space Grotesk", "Inter", system-ui, sans-serif; font-weight: 700;
  font-size: 1.35rem; color: var(--accent); line-height: 1;
}
.timeline-label { color: var(--on-green-soft); font-size: 0.92rem; }

/* ---------- Contact ---------- */
.contact { background: var(--bg); }
.contact-inner {
  display: grid; grid-template-columns: 1fr 1fr; gap: 56px; align-items: start;
}
.contact-text .section-title { margin-bottom: 16px; }
.contact-text > p { color: var(--muted); }
.contact-list { list-style: none; padding: 0; margin: 32px 0 0; display: grid; gap: 22px; }
.contact-list li { display: flex; flex-direction: column; }
.contact-label {
  text-transform: uppercase; letter-spacing: 2px; font-size: 0.7rem;
  color: var(--accent-deep); font-weight: 700; margin-bottom: 5px;
}
.contact-list a:hover { color: var(--accent-deep); }

.contact-form {
  background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius);
  padding: 36px 32px; display: grid; gap: 18px;
  box-shadow: var(--shadow);
}
.field { display: flex; flex-direction: column; gap: 7px; }
.field label { font-size: 0.86rem; font-weight: 600; color: var(--green-700); }
.field input, .field select, .field textarea {
  font: inherit; padding: 13px 15px; border: 1px solid #d7d0c2;
  border-radius: var(--radius-sm); background: #fcfbf8; color: var(--ink);
  transition: border-color 0.2s var(--ease), box-shadow 0.2s var(--ease);
}
.field input:focus, .field select:focus, .field textarea:focus {
  outline: none; border-color: var(--accent);
  box-shadow: 0 0 0 3px rgba(47, 170, 99, 0.22);
}
.field textarea { resize: vertical; }
.hp-field { position: absolute; left: -9999px; width: 1px; height: 1px; overflow: hidden; }
.contact-form .btn { width: 100%; margin-top: 6px; }
.form-feedback { margin: 0; font-size: 0.9rem; font-weight: 600; color: var(--green-600); min-height: 1.2em; }
.form-feedback.error { color: #b3322c; }

/* ---------- Footer ---------- */
.site-footer { background: var(--green-900); color: var(--on-green-soft); padding: 60px 0 40px; }
.footer-inner { display: grid; gap: 28px; }
.footer-brand { display: flex; align-items: center; gap: 13px; }
.footer-brand .brand-name { color: #fff; }
.footer-brand > div { display: flex; flex-direction: column; line-height: 1; }
.footer-nav { display: flex; flex-wrap: wrap; gap: 10px 28px; }
.footer-nav a { color: var(--on-green-soft); font-size: 0.91rem; transition: color 0.2s var(--ease); }
.footer-nav a:hover { color: var(--accent); }
.footer-legal { font-size: 0.85rem; color: rgba(255, 255, 255, 0.55); margin: 0; padding-top: 24px; border-top: 1px solid var(--green-line); }

/* ---------- Reveal animation ---------- */
.reveal { opacity: 0; transform: translateY(22px); transition: opacity 0.7s var(--ease), transform 0.7s var(--ease); }
.reveal.is-visible { opacity: 1; transform: none; }
.card.reveal { transition-delay: calc(var(--i, 0) * 70ms); }

/* ---------- Responsive ---------- */
@media (max-width: 980px) {
  .hero-grid { grid-template-columns: 1fr; gap: 48px; }
  .hero-lead { max-width: none; }
  .hero-visual { order: -1; max-width: 400px; }
  .scroll-cue { display: none; }
}

@media (max-width: 920px) {
  .card-grid { grid-template-columns: repeat(2, 1fr); }
  .histoire-inner, .contact-inner { grid-template-columns: 1fr; gap: 40px; }
  .panel { padding: 52px 28px 48px; border-radius: 26px; }
}

@media (max-width: 720px) {
  .nav-toggle { display: block; z-index: 110; }
  .nav-menu {
    position: fixed; inset: 0 0 0 auto; width: min(78vw, 320px);
    flex-direction: column; align-items: flex-start; justify-content: center;
    gap: 26px; padding: 0 36px;
    background: var(--surface); border-left: 1px solid var(--line);
    box-shadow: -24px 0 48px -28px rgba(0, 61, 29, 0.4);
    transform: translateX(100%); transition: transform 0.32s var(--ease);
  }
  .nav-menu.open { transform: translateX(0); }
  .nav-menu a { font-size: 1.1rem; }
  .nav-menu .nav-cta { padding: 12px 22px; }
  .section { padding: 72px 0; }
  .hero { padding: 56px 0 72px; }
  .hero-chip-top { left: 0; }
  .hero-chip-bottom { right: 0; }
}

@media (max-width: 520px) {
  .card-grid { grid-template-columns: 1fr; }
  .container { padding: 0 22px; }
}

/* =========================================================
   Pages métier (sous-pages)
   ========================================================= */
.subpage-hero {
  position: relative; overflow: hidden;
  background:
    radial-gradient(900px 460px at 85% -20%, rgba(0, 110, 52, 0.10), transparent 60%),
    linear-gradient(180deg, #ffffff 0%, var(--bg) 100%);
  border-bottom: 1px solid var(--line);
  padding: 56px 0 60px;
}
.breadcrumb {
  display: flex; flex-wrap: wrap; align-items: center; gap: 8px;
  font-size: 0.85rem; color: var(--muted); margin: 0 0 22px;
}
.breadcrumb a { color: var(--muted); transition: color 0.2s var(--ease); }
.breadcrumb a:hover { color: var(--accent-deep); }
.breadcrumb .sep { color: var(--line); }
.breadcrumb .current { color: var(--accent-deep); font-weight: 600; }

.subpage-eyebrow {
  display: inline-flex; align-items: center; gap: 10px;
  text-transform: uppercase; letter-spacing: 3px; font-size: 0.72rem;
  color: var(--accent-deep); font-weight: 700; margin: 0 0 16px;
}
.subpage-eyebrow::before { content: ""; width: 26px; height: 1.5px; background: var(--accent-deep); }
.subpage-title { font-size: clamp(2.2rem, 4.6vw, 3.4rem); color: var(--green-700); max-width: 18ch; }
.subpage-lead { color: var(--muted); font-size: 1.14rem; max-width: 700px; margin: 20px 0 0; }

.subpage-inner {
  display: grid; grid-template-columns: 1.1fr 0.9fr; gap: 52px; align-items: center;
}
.subpage-copy { min-width: 0; }
.subpage-figure { margin: 0; }
.subpage-figure img {
  width: 100%; height: auto; display: block;
  border-radius: var(--radius);
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
}

.metier-grid {
  display: grid; grid-template-columns: 1.65fr 1fr; gap: 60px; align-items: start;
}
.prose { max-width: 760px; }
.prose > p { color: #33423a; font-size: 1.04rem; margin: 0 0 20px; }
.prose h2 {
  font-size: 1.55rem; color: var(--green-700); margin: 44px 0 14px;
}
.prose h2:first-child { margin-top: 0; }
.prose ul { list-style: none; padding: 0; margin: 8px 0 24px; display: grid; gap: 12px; }
.prose ul li { position: relative; padding-left: 24px; color: #33423a; }
.prose ul li::before {
  content: ""; position: absolute; left: 0; top: 10px;
  width: 8px; height: 8px; background: var(--accent); transform: rotate(45deg);
}
.prose strong { color: var(--green-700); }

.metier-aside { position: sticky; top: 100px; display: grid; gap: 22px; }
.aside-card {
  background: var(--surface); border: 1px solid var(--line);
  border-radius: var(--radius); padding: 28px 26px; box-shadow: var(--shadow);
}
.aside-card h3 { font-size: 1.1rem; color: var(--green-700); margin: 0 0 16px; }
.aside-list { list-style: none; padding: 0; margin: 0; display: grid; gap: 11px; }
.aside-list li { display: flex; gap: 10px; color: var(--muted); font-size: 0.95rem; }
.aside-list li::before { content: "→"; color: var(--accent-deep); font-weight: 700; }
.aside-card.cta { background: linear-gradient(160deg, var(--green-700), var(--green-900)); border: 0; }
.aside-card.cta h3 { color: #fff; }
.aside-card.cta p { color: var(--on-green-soft); font-size: 0.95rem; margin: 0 0 20px; }
.aside-card.cta .btn { width: 100%; }

.metier-others { background: var(--surface); border-top: 1px solid var(--line); }
.metier-others .section-eyebrow { margin-bottom: 18px; }
.metier-others .footer-nav { gap: 12px 28px; }
.metier-others .footer-nav a { color: var(--green-700); font-weight: 600; }
.metier-others .footer-nav a:hover { color: var(--accent-deep); }

@media (max-width: 920px) {
  .metier-grid { grid-template-columns: 1fr; gap: 40px; }
  .metier-aside { position: static; }
  .subpage-inner { grid-template-columns: 1fr; gap: 36px; }
  .subpage-figure { max-width: 440px; }
}

/* =========================================================
   Modèle agence — zones photo, estimation, frise, avis, équipe
   ========================================================= */

/* Zones photo (emplacements à remplacer par de vraies photos) */
.ph {
  position: relative; display: flex; flex-direction: column;
  align-items: center; justify-content: center; gap: 10px; margin: 0;
  background:
    repeating-linear-gradient(45deg, rgba(158, 58, 28, 0.05) 0 14px, transparent 14px 28px),
    linear-gradient(160deg, #f0e6d4, #e6d9c0);
  color: var(--accent-deep);
  border: 1px solid var(--line); border-radius: var(--radius);
  overflow: hidden;
}
.ph-icon { opacity: 0.7; }
.ph-label { font-size: 0.74rem; letter-spacing: 1.5px; text-transform: uppercase; font-weight: 700; opacity: 0.7; }
.ph-hero { aspect-ratio: 4 / 5; width: 100%; box-shadow: var(--shadow); }
.ph-portrait { aspect-ratio: 4 / 5; width: 100%; }
.ph-square { aspect-ratio: 1 / 1; width: 100%; }

/* Bande estimation — bloc terre battue */
.estimation { background: linear-gradient(150deg, #cb542d 0%, #a83c1c 100%); color: #fff; }
.estimation-inner {
  display: flex; align-items: center; justify-content: space-between;
  gap: 32px; padding: 50px 0; flex-wrap: wrap;
}
.estimation-eyebrow { text-transform: uppercase; letter-spacing: 3px; font-size: 0.72rem; font-weight: 700; color: #ffe0d1; margin: 0 0 10px; }
.estimation-title { font-size: clamp(1.7rem, 3vw, 2.5rem); color: #fff; }
.estimation-lead { color: var(--on-green-soft); margin: 12px 0 0; max-width: 620px; }
.estimation .btn { flex: none; }

/* Frise horizontale (histoire) */
.timeline-strip {
  list-style: none; padding: 40px 0 0; margin: 52px 0 0;
  border-top: 1px solid var(--line);
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 28px;
}
.timeline-strip li { display: flex; flex-direction: column; gap: 6px; position: relative; padding-left: 18px; }
.timeline-strip li::before { content: ""; position: absolute; left: 0; top: 9px; width: 9px; height: 9px; border-radius: 50%; background: var(--accent); }
.tl-year { font-family: "Space Grotesk", "Inter", system-ui, sans-serif; font-size: 1.6rem; font-weight: 600; color: var(--green-700); line-height: 1; }
.tl-label { color: var(--muted); font-size: 0.9rem; }

/* Témoignages */
.testimonials { background: var(--bg); }
.testi-grid { list-style: none; padding: 0; margin: 0; display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.testi { background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius); padding: 30px 28px; display: flex; flex-direction: column; gap: 18px; box-shadow: 0 20px 44px -30px rgba(0, 61, 29, 0.35); }
.testi-quote { color: var(--ink); font-size: 1.04rem; font-style: italic; margin: 0; line-height: 1.6; flex: 1; }
.testi-author { display: flex; align-items: center; gap: 12px; margin: 0; }
.ph-avatar { width: 46px; height: 46px; border-radius: 50%; background: linear-gradient(160deg, #f0e6d4, #e2d3b8); border: 1px solid var(--line); flex: none; }
.testi-meta { display: flex; flex-direction: column; line-height: 1.25; }
.testi-meta strong { color: var(--green-700); }
.testi-meta span { color: var(--muted); font-size: 0.85rem; }

/* Équipe */
.team { background: var(--surface); }
.team-grid { list-style: none; padding: 0; margin: 0; display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; }
.member { text-align: center; }
.member .ph-square { margin-bottom: 16px; }
.member-name { font-size: 1.45rem; color: var(--green-700); }
.member-role { color: var(--muted); font-size: 0.95rem; margin: 4px 0 0; }

@media (max-width: 920px) {
  .estimation-inner { flex-direction: column; align-items: flex-start; }
  .timeline-strip { grid-template-columns: repeat(2, 1fr); gap: 24px; }
  .testi-grid { grid-template-columns: 1fr; }
  .team-grid { grid-template-columns: repeat(3, 1fr); gap: 18px; }
}
@media (max-width: 560px) {
  .timeline-strip { grid-template-columns: 1fr; }
  .team-grid { grid-template-columns: 1fr; max-width: 320px; margin: 0 auto; }
}

