:root{
  /* Palette MT (logo) */
  --mt-gold-1:#a1773d; 
  --mt-gold-2:#a3793f;
  --mt-gold-3:#9f753b;
  --mt-brown-1:#5b3f27;
  --mt-brown-2:#5c4028;
  --mt-brown-3:#3e2c1e;
  --mt-brown-4:#402d1f;

  /* Thème clair ivoire */
  --text: var(--mt-brown-3);
  --muted: var(--mt-brown-1);
  --accent: var(--mt-gold-1);
  --accent-2: var(--mt-gold-3);
  --gold:#ffd700;
  --bg:#fffdf6;
  --glass:rgba(255,255,255,.55);
  --glass-solid:rgba(255,255,255,.92);
  --ring:rgba(161,119,61,.28);
  --radius:14px;
  --shadow:0 10px 30px rgba(0,0,0,.08);
  --header-h:72px;
}

*{box-sizing:border-box}
html,body{height:100%}
body{
  margin:0;
  font-family:"Chakra Petch",system-ui,-apple-system,Segoe UI,Roboto,Ubuntu,"Helvetica Neue","Noto Sans",Arial;
  color:var(--text);
  background:
    radial-gradient(1200px 700px at 8% -12%, rgba(161,119,61,.12), transparent 55%) no-repeat,
    radial-gradient(900px 540px at 96% 8%, rgba(159,117,59,.08), transparent 60%) no-repeat,
    var(--bg);
}
a{color:inherit;text-decoration:none}
.container{ width:min(1200px,92vw); margin-inline:auto; position:relative; }

/* ===== HEADER ===== */
.header{
  position:sticky; top:0; left:0; right:0; z-index:50;
  background:var(--glass-solid);
  backdrop-filter:saturate(140%) blur(8px);
  box-shadow:0 6px 20px rgba(0,0,0,.10);
  border-bottom:1px solid rgba(92,64,40,.14);
}
.header .container{
  display:flex; align-items:center; justify-content:space-between;
  height:var(--header-h); gap:16px;
}
.logo img{ height:36px; display:block; border-radius:12px; }

/* Nav */
.navbar{ display:flex; align-items:center; }
.navbar-list{ display:flex; gap:24px; list-style:none; margin:0; padding:0; }
.navbar-link{ padding:10px 6px; font-weight:600; color:var(--mt-brown-2); opacity:.9; }
.navbar-link:hover{ opacity:1; color:var(--accent); }
.header-actions{ display:flex; align-items:center; gap:18px; }
.contact-link{ font-weight:700; }
.contact-time{ font-size:12px; color:var(--muted); display:block; }

/* Boutons */
.btn{
  display:inline-flex; align-items:center; gap:8px;
  padding:10px 14px; border:0; border-radius:999px; cursor:pointer;
  background:linear-gradient(135deg, var(--mt-gold-1), var(--mt-gold-3));
  color:#fff; font-weight:800; letter-spacing:.2px;
  box-shadow:0 8px 24px rgba(161,119,61,.25);
  justify-content:center; text-align:center;
}
.btn-ghost{
  display:inline-flex; align-items:center; gap:8px;
  padding:10px 14px; border-radius:999px;
  border:1px solid rgba(161,119,61,.35);
  background:transparent; color:var(--mt-brown-3);
}
.btn-ghost:hover{ border-color: var(--accent); box-shadow:0 0 0 4px var(--ring) inset; }

/* ===== HERO ===== */
.page-hero{
  position:relative; overflow:hidden;
  padding: clamp(38px, 8vw, 72px) 0 28px;
  background:
    linear-gradient(180deg, rgba(255,255,255,.3), rgba(255,253,246,.8)),
    url("assets/images/about-2.png") center/cover no-repeat;
  border-bottom:1px solid rgba(92,64,40,.14);
}
.page-hero .title{
  margin:0 0 8px; font-size: clamp(28px, 5vw, 48px);
  color:var(--mt-brown-4);
  text-shadow:0 8px 32px rgba(0,0,0,.1);
}
.breadcrumbs{ display:flex; gap:10px; align-items:center; color:var(--muted); font-size:14px; }
.breadcrumbs a{ color:var(--mt-gold-2); text-decoration:underline dotted; }

/* ===== TAGS/TEXT ===== */
.tag{
  display:inline-flex; align-items:center; gap:8px;
  padding:6px 10px; border-radius:999px;
  background:rgba(161,119,61,.06); border:1px solid rgba(92,64,40,.14);
  color:var(--mt-brown-2); font-size:12px; margin-bottom:10px;
}
.dot{ width:8px; height:8px; border-radius:50%; background:var(--accent); box-shadow:0 0 10px var(--accent); }

.about-head{ margin:18px 0 10px; }
.about-head h2{ margin:6px 0 4px; font-size: clamp(24px, 3.8vw, 36px); }
.about-sub{ color:var(--muted); margin:0; }

.about-grid{ display:grid; grid-template-columns: 1.2fr 1fr; gap:18px; margin-top:16px; }
@media (max-width:980px){ .about-grid{ grid-template-columns:1fr; } }

.checks{ list-style:none; margin:0 0 16px; padding:0; display:grid; gap:10px; }
.checks li{ display:flex; align-items:center; gap:10px; }
.checks ion-icon{ color:var(--accent); font-size:20px; }

/* Trust cards */
.trust-cards{ display:grid; grid-template-columns: repeat(2, minmax(0,1fr)); gap:12px; }
@media (max-width:600px){ .trust-cards{ grid-template-columns: 1fr; } }
.trust{
  background:#fffdfc;
  border:1px solid rgba(92,64,40,.14);
  border-radius:16px; padding:14px;
}
.trust ion-icon{ color:var(--accent); font-size:22px; }
.trust h3{ margin:8px 0 6px; font-size:16px; }
.trust p{ margin:0; color:var(--mt-brown-2); font-size:14px; }

/* Image + stats */
.about-photo{
  aspect-ratio: 16/10; border-radius:16px; overflow:hidden; margin:0;
  background:#fdfdf9; border:1px solid rgba(92,64,40,.14);
}
.about-photo img{ width:100%; height:100%; object-fit:cover; display:block; }
.stats{ display:grid; grid-template-columns: repeat(4, minmax(0,1fr)); gap:12px; margin-top:12px; }
@media (max-width:820px){ .stats{ grid-template-columns: repeat(2, minmax(0,1fr)); } }
.stat-card{
  background:#fffdfc;
  border:1px solid rgba(92,64,40,.14);
  border-radius:14px; padding:12px; text-align:center;
}
.stat{ font-weight:800; font-size:22px; color:var(--mt-gold-1); }
.stat small{ font-weight:600; color:var(--muted); }
.stat-label{ color:var(--muted); font-size:12px; margin-top:2px; }

/* Timeline */
.timeline{
  margin:22px 0; padding:14px; border-radius:16px;
  background:#fffdfc;
  border:1px solid rgba(92,64,40,.14);
  display:grid; grid-template-columns: repeat(4, minmax(0,1fr)); gap:14px;
}
@media (max-width:960px){ .timeline{ grid-template-columns: 1fr 1fr; } }
@media (max-width:560px){ .timeline{ grid-template-columns: 1fr; } }
.tl-item{ position:relative; padding-left:14px; }
.tl-item::before{
  content:""; position:absolute; left:0; top:6px; bottom:6px; width:2px; background:rgba(92,64,40,.2);
}
.tl-dot{
  position:absolute; left:-4px; top:0; width:10px; height:10px; border-radius:50%;
  background:var(--accent); box-shadow:0 0 0 4px var(--ring);
}
.tl-item h4{ margin:0 0 6px; font-size:16px; }
.tl-item p{ margin:0; color:var(--mt-brown-2); font-size:14px; }

/* FAQ */
.faq{ margin:14px 0; }
.faq h3{ margin:0 0 10px; font-size: clamp(18px, 2.4vw, 22px); }
.faq details{
  border:1px solid rgba(92,64,40,.14);
  background:#fffdfc;
  border-radius:12px; padding:10px 12px; margin-bottom:10px;
}
.faq summary{
  cursor:pointer; list-style:none; display:flex; align-items:center; justify-content:space-between;
}
.faq summary::after{
  content:""; width:18px; height:18px;
  background:center/contain no-repeat url("data:image/svg+xml;utf8,\
  <svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'>\
  <path fill='%23a1773d' d='M7 10l5 5 5-5'/></svg>");
  transition: transform .2s ease;
}
.faq details[open] summary::after{ transform: rotate(180deg); }
.faq .faq-body{ color:var(--mt-brown-2); margin-top:8px; font-size:14px; }

/* CTA */
.about-cta{
  margin-top:18px; display:flex; align-items:center; justify-content:space-between; gap:16px;
  background: linear-gradient(180deg, rgba(161,119,61,.08), rgba(255,215,0,.06));
  border:1px solid rgba(161,119,61,.35); border-radius:16px; padding:16px;
}
.about-cta h3{ margin:0 0 6px; font-size: clamp(18px, 2.4vw, 22px); }
.about-cta p{ margin:0; color:var(--muted); }
.about-cta .cta-actions{ display:flex; gap:10px; flex-wrap:wrap; }

/* ===== Services (activités) ===== */
.services{
  margin:22px 0; padding:16px; border-radius:16px; background:#fffdfc;
  border:1px solid rgba(92,64,40,.14);
}
.services-grid{
  display:grid; grid-template-columns: repeat(4, minmax(0,1fr)); gap:12px;
}
@media (max-width:1000px){ .services-grid{ grid-template-columns: repeat(2, minmax(0,1fr)); } }
@media (max-width:560px){ .services-grid{ grid-template-columns: 1fr; } }
.service-card{
  border:1px solid rgba(92,64,40,.14); border-radius:14px; padding:14px;
  background:#fff; display:flex; flex-direction:column; gap:8px;
}
.service-card .icon{ font-size:26px; color:var(--accent); }
.service-card h4{ margin:0; font-size:18px; }
.service-card p{ margin:0; font-size:14px; color:var(--mt-brown-2); }
.service-card a{ align-self:flex-start; margin-top:6px; }

/* ===== Valeurs ===== */
.values{
  margin:22px 0; padding:16px; border-radius:16px; background:#fffdfc;
  border:1px solid rgba(92,64,40,.14);
}
.values-grid{
  display:grid; grid-template-columns: repeat(3, minmax(0,1fr)); gap:12px;
}
@media (max-width:860px){ .values-grid{ grid-template-columns: 1fr; } }
.value{
  border:1px solid rgba(92,64,40,.14); border-radius:14px; padding:14px; background:#fff;
}
.value h4{ margin:6px 0 6px; }
.value p{ margin:0; color:var(--mt-brown-2); font-size:14px; }

/* ===== Équipe ===== */
.team{
  margin:22px 0; padding:16px; border-radius:16px; background:#fffdfc;
  border:1px solid rgba(92,64,40,.14);
}
.team-grid{
  display:grid; grid-template-columns: repeat(4, minmax(0,1fr)); gap:12px;
}
@media (max-width:1000px){ .team-grid{ grid-template-columns: repeat(2, minmax(0,1fr)); } }
@media (max-width:560px){ .team-grid{ grid-template-columns: 1fr; } }
.member{
  background:#fff; border:1px solid rgba(92,64,40,.14); border-radius:14px; padding:12px;
  display:flex; flex-direction:column; gap:8px; align-items:center; text-align:center;
}
.member .avatar{
  width:88px; height:88px; border-radius:50%; overflow:hidden; border:2px solid var(--ring); background:#fff;
}
.member .avatar img{ width:100%; height:100%; object-fit:cover; display:block; }
.member h5{ margin:6px 0 0; font-size:16px; }
.member small{ color:var(--muted); }
.member a{ font-weight:700; color:var(--accent); text-decoration:underline dotted; font-size:13px; }

/* Footer */
footer{ margin:40px 0; color:var(--muted); text-align:center; font-size:13px; }
footer a{ color:var(--mt-gold-1)!important; font-weight:600; }

.navbar .navbar-link[aria-current="page"]{
  color: var(--accent);
  opacity: 1;
}