/* ANDY Élagage & Terrassement 78 — Mobile-first styles */
:root {
  --green: #2D7A3E;
  --green-dark: #1F5C2E;
  --green-light: #4A9E5C;
  --orange: #E8821C;
  --orange-dark: #C86A0E;
  --orange-text: #9C5004; /* orange « texte » assombri pour contraste AA sur fonds clairs */
  --ink: #0E1410;
  --ink-2: #1F2A22;
  --paper: #FAF8F3;
  --paper-2: #F1ECE0;
  --line: #E4DDCC;
  --muted: #5C6557; /* gris-vert assombri (contraste AA sur paper/paper-2) */
  --safety: #F5C518;
}

* { box-sizing: border-box; }
html, body { margin: 0; padding: 0; }
body {
  font-family: 'Inter', system-ui, -apple-system, sans-serif;
  color: var(--ink);
  background: var(--paper);
  -webkit-font-smoothing: antialiased;
  line-height: 1.55;
  overflow-x: hidden;
}
a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; }

/* Typography — mobile-first sizes */
.display, .h1, .h2, .h3, .eyebrow {
  font-family: 'Oswald', 'Arial Narrow', sans-serif;
  font-weight: 700;
  letter-spacing: -0.01em;
  line-height: 1.05;
  text-transform: uppercase;
}
.display { font-size: clamp(36px, 10vw, 92px); line-height: 1.02; }
.h1 { font-size: clamp(30px, 7vw, 60px); }
.h2 { font-size: clamp(26px, 6vw, 44px); }
.h3 { font-size: clamp(18px, 4.5vw, 24px); letter-spacing: 0; }
.eyebrow {
  font-size: 12px;
  letter-spacing: 0.16em;
  font-weight: 600;
  color: var(--green-dark); /* assombri pour contraste AA sur fonds clairs */
}
.mono { font-family: 'JetBrains Mono', ui-monospace, monospace; }

/* Layout — mobile padding */
.container { width: 100%; margin: 0 auto; padding: 0 18px; }
@media (min-width: 768px) {
  .container { padding: 0 28px; }
}
@media (min-width: 1100px) {
  .container { max-width: 1320px; }
}

/* Buttons — generous tap targets */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 10px;
  padding: 16px 22px;
  min-height: 52px;
  font-family: 'Oswald', sans-serif;
  font-weight: 600;
  font-size: 14px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  border: 2px solid transparent;
  cursor: pointer;
  transition: transform .15s ease, background .2s ease, color .2s ease, border-color .2s ease;
  border-radius: 2px;
  white-space: nowrap;
  -webkit-tap-highlight-color: transparent;
}
.btn:active { transform: scale(0.98); }
@media (hover: hover) {
  .btn:hover { transform: translateY(-1px); }
}
.btn-primary { background: var(--orange); color: var(--ink); border-color: var(--orange); } /* texte foncé sur orange vif : contraste 6.78 (AAA) */
.btn-primary:hover { background: var(--orange-dark); border-color: var(--orange-dark); }
.btn-dark { background: var(--ink); color: #fff; border-color: var(--ink); }
.btn-ghost { background: transparent; color: var(--ink); border-color: var(--ink); }
.btn-ghost:hover { background: var(--ink); color: #fff; }
.btn-light { background: #fff; color: var(--ink); border-color: #fff; }
.btn-block { width: 100%; }
@media (min-width: 768px) {
  .btn { padding: 16px 26px; font-size: 15px; }
}

/* Top strip — stacks on mobile */
.top-strip {
  background: var(--ink);
  color: #cfd3cc;
  font-size: 12px;
  padding: 8px 0;
  display: none;
}
@media (min-width: 900px) {
  .top-strip { display: block; font-size: 13px; }
}
.top-strip .row {
  display: flex; justify-content: space-between; align-items: center; gap: 16px;
  flex-wrap: wrap;
}
.top-strip a:hover { color: #fff; }
.top-strip .pill {
  display: inline-flex; align-items: center; gap: 6px;
  background: rgba(45,122,62,.2);
  color: var(--green-light);
  padding: 3px 10px;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 600;
}

/* Mobile emergency banner */
.mobile-urgency {
  background: var(--orange);
  color: var(--ink);
  padding: 8px 0;
  font-size: 13px;
  font-weight: 600;
  text-align: center;
  display: block;
}
.mobile-urgency a {
  font-family: 'Oswald', sans-serif;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  display: inline-flex; align-items: center; gap: 6px;
}
@media (min-width: 900px) { .mobile-urgency { display: none; } }

/* Header */
header.site {
  position: sticky; top: 0; z-index: 50;
  background: var(--paper);
  border-bottom: 1px solid var(--line);
}
header.site .inner {
  display: flex; align-items: center; justify-content: space-between;
  gap: 12px; padding: 12px 0;
}
.brand { display: flex; align-items: center; gap: 10px; min-width: 0; }
.brand img { height: 44px; width: auto; flex-shrink: 0; }
.brand .name {
  font-family: 'Oswald', sans-serif;
  font-weight: 700;
  font-size: 16px;
  line-height: 1;
  text-transform: uppercase;
  letter-spacing: 0.02em;
  min-width: 0;
}
.brand .name small {
  display: block;
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.2em;
  color: var(--muted);
  margin-top: 3px;
}
@media (min-width: 768px) {
  header.site .inner { gap: 24px; padding: 14px 0; }
  .brand img { height: 58px; }
  .brand { gap: 14px; }
  .brand .name { font-size: 20px; }
  .brand .name small { font-size: 11px; letter-spacing: 0.24em; margin-top: 4px; }
}

/* Primary nav — desktop only */
nav.primary { display: none; gap: 4px; }
nav.primary a {
  padding: 10px 14px;
  font-family: 'Oswald', sans-serif;
  font-weight: 500;
  font-size: 14px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--ink-2);
  border-bottom: 2px solid transparent;
  cursor: pointer;
}
nav.primary a:hover, nav.primary a.active {
  color: var(--green);
  border-bottom-color: var(--orange);
}
@media (min-width: 1024px) {
  nav.primary { display: flex; }
}

/* Burger button */
.burger {
  display: flex; flex-direction: column; justify-content: center; gap: 5px;
  width: 44px; height: 44px;
  background: transparent;
  border: 1px solid var(--line);
  cursor: pointer;
  padding: 0;
  align-items: center;
  border-radius: 2px;
  margin-right: 8px;
}
@media (min-width: 480px) { .burger { margin-right: 12px; } }
.burger span {
  display: block;
  width: 20px; height: 2px;
  background: var(--ink);
  transition: transform .2s, opacity .2s;
}
.burger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.burger.open span:nth-child(2) { opacity: 0; }
.burger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }
@media (min-width: 1024px) { .burger { display: none; } }

.header-cta { display: flex; align-items: center; gap: 8px; }
.phone-cta {
  display: none;
  align-items: center; gap: 10px;
  padding: 8px 14px;
  border: 1px solid var(--line);
  border-radius: 2px;
}
.phone-cta .num {
  font-family: 'Oswald', sans-serif;
  font-size: 18px;
  font-weight: 700;
  letter-spacing: 0.04em;
}
.phone-cta .lbl {
  font-size: 11px;
  letter-spacing: 0.14em;
  color: var(--muted);
  text-transform: uppercase;
}
@media (min-width: 1200px) {
  .phone-cta { display: flex; }
}
.header-cta .btn { padding: 10px 14px; min-height: 44px; font-size: 12px; }
.header-cta .btn .arrow-hide { display: none; }
@media (min-width: 768px) {
  .header-cta .btn { padding: 14px 22px; min-height: 48px; font-size: 14px; }
  .header-cta .btn .arrow-hide { display: inline-flex; }
}

/* Mobile drawer menu */
.mobile-drawer {
  position: fixed;
  top: 0; right: 0; bottom: 0;
  width: 88%; max-width: 360px;
  background: var(--ink);
  color: #fff;
  z-index: 100;
  transform: translateX(100%);
  transition: transform .3s cubic-bezier(.2,.8,.2,1);
  display: flex; flex-direction: column;
  box-shadow: -20px 0 40px rgba(0,0,0,.3);
}
.mobile-drawer.open { transform: translateX(0); }
.mobile-drawer-overlay {
  position: fixed; inset: 0;
  background: rgba(0,0,0,.5);
  z-index: 99;
  opacity: 0; pointer-events: none;
  transition: opacity .25s;
}
.mobile-drawer-overlay.on { opacity: 1; pointer-events: auto; }
.mobile-drawer .m-head {
  display: flex; align-items: center; justify-content: space-between;
  padding: 16px 20px;
  border-bottom: 1px solid rgba(255,255,255,.08);
}
.mobile-drawer .m-head img { height: 40px; }
.mobile-drawer .m-close {
  background: transparent; border: 1px solid rgba(255,255,255,.2); color: #fff;
  width: 40px; height: 40px; font-size: 20px; cursor: pointer; border-radius: 2px;
}
.mobile-drawer nav {
  display: flex; flex-direction: column;
  padding: 8px 0;
  flex: 1;
  overflow-y: auto;
}
.mobile-drawer nav a {
  padding: 16px 24px;
  font-family: 'Oswald', sans-serif;
  font-weight: 500;
  font-size: 18px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: #cfd3cc;
  border-bottom: 1px solid rgba(255,255,255,.05);
  display: flex; justify-content: space-between; align-items: center;
}
.mobile-drawer nav a.active { color: var(--orange); }
.mobile-drawer nav a .arr { color: var(--muted); font-size: 14px; }
.mobile-drawer .m-foot {
  padding: 20px;
  border-top: 1px solid rgba(255,255,255,.08);
  display: grid; gap: 10px;
}
.mobile-drawer .m-foot .lbl {
  font-family: 'JetBrains Mono', monospace;
  font-size: 11px; letter-spacing: 0.14em; color: #9aa398;
  margin-bottom: 2px;
}
.mobile-drawer .m-foot .num {
  font-family: 'Oswald', sans-serif;
  font-size: 24px; font-weight: 700; color: #fff;
  letter-spacing: 0.02em;
  margin-bottom: 8px;
}

/* Hero */
.hero {
  position: relative;
  background: var(--ink);
  color: #fff;
  overflow: hidden;
  border-bottom: 6px solid var(--orange);
}
.hero .bg {
  position: absolute; inset: 0;
  background:
    linear-gradient(120deg, rgba(14,20,16,.92) 0%, rgba(14,20,16,.72) 45%, rgba(14,20,16,.35) 100%),
    repeating-linear-gradient(135deg, #1a2219 0 14px, #131a14 14px 28px);
}
.hero .bg::after {
  content: '';
  position: absolute; inset: 0;
  background:
    radial-gradient(circle at 85% 20%, rgba(232,130,28,.22), transparent 45%),
    radial-gradient(circle at 10% 90%, rgba(45,122,62,.28), transparent 50%);
}
.hero .inner {
  position: relative;
  padding: 48px 18px 56px;
  display: grid;
  grid-template-columns: 1fr;
  gap: 36px;
}
@media (min-width: 1024px) {
  .hero .inner {
    padding: 88px 28px 96px;
    grid-template-columns: 1.25fr 1fr;
    gap: 56px;
    align-items: end;
  }
}
.hero .eyebrow { color: var(--orange-text); display: inline-flex; align-items: center; gap: 10px; }
.hero .eyebrow::before {
  content: ''; width: 28px; height: 2px; background: var(--orange);
}
.hero h1 {
  margin: 14px 0 16px;
  color: #fff;
}
.hero h1 .accent-g { color: var(--green-light); }
.hero h1 .accent-o { color: var(--orange); }
.hero .sub {
  font-size: 16px;
  color: #cfd3cc;
  max-width: 560px;
  margin-bottom: 22px;
}
@media (min-width: 768px) {
  .hero .sub { font-size: 18px; margin-bottom: 28px; }
}
.hero .ctas { display: flex; gap: 10px; flex-wrap: wrap; margin-bottom: 28px; }
.hero .ctas .btn { flex: 1 1 auto; min-width: 140px; }
@media (min-width: 768px) {
  .hero .ctas { margin-bottom: 40px; }
  .hero .ctas .btn { flex: 0 0 auto; }
}
.hero .meta-row {
  display: grid; grid-template-columns: 1fr 1fr; gap: 18px 24px;
  border-top: 1px solid rgba(255,255,255,.12);
  padding-top: 22px;
}
@media (min-width: 768px) {
  .hero .meta-row { display: flex; flex-wrap: wrap; gap: 32px; }
}
.hero .meta-item .k {
  font-family: 'Oswald', sans-serif;
  font-size: 26px;
  font-weight: 700;
  color: #fff;
  line-height: 1;
}
@media (min-width: 768px) { .hero .meta-item .k { font-size: 32px; } }
.hero .meta-item .v {
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: #9aa398;
  margin-top: 6px;
}
@media (min-width: 768px) { .hero .meta-item .v { font-size: 12px; letter-spacing: 0.14em; } }

.hero-card {
  background: #fff;
  color: var(--ink);
  padding: 22px;
  border-radius: 2px;
  box-shadow: 0 30px 60px rgba(0,0,0,.35);
  border-top: 6px solid var(--orange);
}
@media (min-width: 768px) { .hero-card { padding: 28px; } }
.hero-card h3 { margin: 0 0 4px; }
.hero-card .sm { color: var(--muted); font-size: 13px; margin-bottom: 18px; }
.hero-card label {
  display: block;
  font-size: 12px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-weight: 600;
  color: var(--ink-2);
  margin-bottom: 6px;
}
.hero-card-cta .sm { margin-bottom: 20px; }
.hero-card-points {
  list-style: none; margin: 0 0 22px; padding: 0;
  display: grid; gap: 12px;
}
.hero-card-points li {
  display: flex; align-items: center; gap: 10px;
  font-size: 14px; color: var(--ink-2);
}
.hero-card-points li svg { flex-shrink: 0; color: var(--green); }
.hero-card .field { margin-bottom: 14px; }
.hero-card input, .hero-card select, .hero-card textarea {
  width: 100%;
  padding: 14px;
  border: 1px solid var(--line);
  border-radius: 2px;
  font-family: inherit;
  font-size: 16px;
  background: var(--paper);
}
.hero-card input:focus, .hero-card select:focus, .hero-card textarea:focus {
  outline: 2px solid var(--green);
  border-color: var(--green);
}
.hero-card .row2 { display: grid; grid-template-columns: 1fr; gap: 12px; }
@media (min-width: 480px) { .hero-card .row2 { grid-template-columns: 1fr 1fr; } }
.hero-card .submit-row {
  display: flex; flex-direction: column; gap: 12px;
  align-items: stretch; margin-top: 6px;
}
.hero-card .submit-row .btn { width: 100%; }
.hero-card .guarantee { font-size: 12px; color: var(--muted); }
@media (min-width: 520px) {
  .hero-card .submit-row { flex-direction: row; align-items: center; justify-content: space-between; }
  .hero-card .submit-row .btn { width: auto; }
  .hero-card .guarantee { max-width: 180px; }
}

/* Ticker */
.ticker {
  background: var(--green);
  color: #fff;
  overflow: hidden;
  border-bottom: 1px solid rgba(0,0,0,.15);
}
.ticker-track {
  display: flex; gap: 40px;
  padding: 12px 0;
  animation: slide 40s linear infinite;
  white-space: nowrap;
}
@media (min-width: 768px) {
  .ticker-track { gap: 56px; padding: 14px 0; }
}
.ticker-track span {
  font-family: 'Oswald', sans-serif;
  font-size: 13px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-weight: 500;
  display: inline-flex; align-items: center; gap: 12px;
}
@media (min-width: 768px) {
  .ticker-track span { font-size: 14px; letter-spacing: 0.14em; }
}
.ticker-track span::after {
  content: '✦'; color: var(--orange); margin-left: 32px;
}
@keyframes slide {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

/* Sections */
section.sec { padding: 56px 0; }
@media (min-width: 768px) { section.sec { padding: 72px 0; } }
@media (min-width: 1024px) { section.sec { padding: 96px 0; } }
section.sec.alt { background: var(--paper-2); }
section.sec.dark { background: var(--ink); color: #fff; }
section.sec.dark .eyebrow { color: var(--orange); }

.sec-head { max-width: 760px; margin-bottom: 32px; }
@media (min-width: 768px) { .sec-head { margin-bottom: 48px; } }
.sec-head .h2 { margin: 10px 0 14px; }
.sec-head p { color: var(--muted); font-size: 16px; }
@media (min-width: 768px) { .sec-head p { font-size: 17px; } }
.sec.dark .sec-head p { color: #b9c0b6; }

/* Services (home — vue simplifiée : 4 pôles renvoyant vers /services) */
.pole-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 12px;
}
@media (min-width: 600px) { .pole-grid { grid-template-columns: 1fr 1fr; } }
@media (min-width: 1024px) { .pole-grid { grid-template-columns: repeat(4, 1fr); gap: 16px; } }
.pole-card {
  --pole-color: var(--green);
  position: relative;
  display: flex; align-items: center;
  gap: 14px;
  padding: 16px 18px;
  background: #fff;
  border: 1px solid var(--line);
  border-left: 3px solid var(--pole-color);
  border-radius: 2px;
  text-decoration: none;
  color: var(--ink);
  transition: transform .15s, box-shadow .15s, border-color .15s;
}
@media (min-width: 768px) { .pole-card { padding: 18px 20px; } }
.pole-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 14px 30px rgba(14, 20, 16, .1);
}
.pole-card-text {
  display: flex; flex-direction: column; gap: 3px;
  min-width: 0;
}
.pole-card-tag {
  font-family: 'JetBrains Mono', monospace;
  font-size: 10px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--ink); /* repli AA pour navigateurs sans color-mix */
  color: color-mix(in srgb, var(--pole-color) 60%, #000); /* teinte du pôle assombrie → contraste AA */
}
.pole-card-title {
  font-family: 'Oswald', sans-serif;
  font-weight: 600;
  font-size: 17px;
  line-height: 1.15;
  margin: 0;
  color: var(--ink);
}
@media (min-width: 768px) { .pole-card-title { font-size: 18px; } }
.pole-card-link {
  margin-left: auto;
  flex-shrink: 0;
  display: inline-flex; align-items: center;
  color: var(--ink);
  color: color-mix(in srgb, var(--pole-color) 60%, #000);
  transition: transform .15s;
}
.pole-card-link svg { width: 18px; height: 18px; }
.pole-card:hover .pole-card-link { transform: translateX(4px); }

.pole-cta { margin-top: 28px; }
@media (min-width: 768px) { .pole-cta { margin-top: 36px; } }

/* Process */
.process-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0;
  border-top: 1px solid var(--line);
  border-left: 1px solid var(--line);
}
@media (min-width: 600px) { .process-grid { grid-template-columns: 1fr 1fr; } }
@media (min-width: 1024px) { .process-grid { grid-template-columns: repeat(4, 1fr); } }
.process-step {
  padding: 26px 22px 30px;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: var(--paper);
  position: relative;
}
@media (min-width: 768px) { .process-step { padding: 32px 24px 36px; } }
.process-step .num {
  font-family: 'Oswald', sans-serif;
  font-size: 56px;
  font-weight: 700;
  color: var(--orange-dark); /* assombri : contraste 3.58 ≥ 3:1 requis pour grand texte */
  line-height: 0.9;
  margin-bottom: 14px;
}
@media (min-width: 768px) { .process-step .num { font-size: 72px; margin-bottom: 16px; } }
.process-step h3 { margin: 0 0 8px; font-family: 'Oswald', sans-serif; font-size: 20px; text-transform: uppercase; letter-spacing: 0.02em; }
@media (min-width: 768px) { .process-step h3 { font-size: 22px; } }
.process-step p { margin: 0; color: var(--muted); font-size: 14px; }
.process-step .tag {
  position: absolute; top: 16px; right: 16px;
  font-family: 'JetBrains Mono', monospace;
  font-size: 11px;
  color: var(--muted);
  letter-spacing: 0.08em;
}

/* Why */
.why-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 12px;
}
@media (min-width: 600px) { .why-grid { grid-template-columns: 1fr 1fr; gap: 16px; } }
@media (min-width: 1024px) { .why-grid { grid-template-columns: 1fr 1fr 1fr; gap: 20px; } }
.why-card {
  background: var(--paper);
  border: 1px solid var(--line);
  padding: 22px;
  border-radius: 2px;
  transition: transform .2s, box-shadow .2s;
}
@media (min-width: 768px) { .why-card { padding: 28px; } }
.why-card:hover { transform: translateY(-3px); box-shadow: 0 12px 30px rgba(0,0,0,.06); }
.why-card .ico {
  width: 44px; height: 44px;
  border: 2px solid var(--ink);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 16px;
}
.why-card h3 { font-family: 'Oswald', sans-serif; font-size: 18px; margin: 0 0 6px; text-transform: uppercase; }
@media (min-width: 768px) { .why-card h3 { font-size: 20px; margin: 0 0 8px; } }
.why-card p { color: var(--muted); font-size: 14px; margin: 0; }

/* Zone */
.zone-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 28px;
  align-items: center;
}
@media (min-width: 1024px) { .zone-grid { grid-template-columns: 1.2fr 1fr; gap: 48px; } }
.zone-map {
  aspect-ratio: 1.15/1;
  background: #0c120e;
  position: relative;
  overflow: hidden;
  border-radius: 2px;
  /* Garde les panneaux/contrôles Leaflet sous le header collant. */
  z-index: 0;
}
.zone-map-canvas {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  background: #aadaff; /* teinte "eau" OSM pendant le chargement des tuiles */
}
.zone-map-noscript {
  position: absolute; inset: 0;
  display: flex; align-items: center; justify-content: center;
  padding: 24px; text-align: center;
  color: #cfd3cc; font-size: 14px;
}
/* Marqueurs de ville (pastille verte de la marque).
   La div marqueur fait 28×28 (cible tactile ≥24px, WCAG 2.5.8) ;
   la pastille visible de 18px est centrée à l'intérieur. */
.andy78-city-marker {
  display: flex; align-items: center; justify-content: center;
  cursor: pointer;
}
.andy78-city-dot {
  display: block; width: 18px; height: 18px;
  border-radius: 50%;
  background: var(--green);
  border: 3px solid #fff;
  box-shadow: 0 1px 4px rgba(0,0,0,.4);
}
.andy78-city-tooltip {
  background: var(--ink); color: #fff;
  border: none; border-radius: 2px;
  font-family: 'Oswald', sans-serif;
  font-size: 12px; letter-spacing: 0.04em;
  padding: 3px 8px;
}
.andy78-city-tooltip::before { display: none; }
.leaflet-popup-content { font-family: 'Inter', sans-serif; }
.andy78-popup-pc {
  font-family: 'JetBrains Mono', monospace;
  font-size: 12px; color: var(--muted);
}
.zone-cities {
  display: grid; grid-template-columns: 1fr; gap: 6px;
}
@media (min-width: 480px) { .zone-cities { grid-template-columns: 1fr 1fr; } }
.zone-cities .city {
  display: flex; align-items: center; justify-content: space-between;
  padding: 12px 14px;
  background: #fff;
  border: 1px solid var(--line);
  font-size: 14px;
}
.zone-cities .city .pc {
  font-family: 'JetBrains Mono', monospace;
  font-size: 12px;
  color: var(--muted);
}

/* Testimonials */
.test-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
}
@media (min-width: 768px) { .test-grid { grid-template-columns: 1fr 1fr; gap: 18px; } }
@media (min-width: 1024px) { .test-grid { grid-template-columns: repeat(3, 1fr); gap: 20px; } }
.test-card {
  background: var(--paper);
  border: 1px solid var(--line);
  padding: 22px;
  border-radius: 2px;
  display: flex; flex-direction: column; gap: 14px;
}
@media (min-width: 768px) { .test-card { padding: 26px; gap: 16px; } }
.stars { color: var(--safety); letter-spacing: 2px; font-size: 16px; }
.test-card blockquote {
  margin: 0;
  font-size: 15px;
  color: var(--ink-2);
  line-height: 1.55;
  text-wrap: pretty;
}
.test-card blockquote::before { content: '“'; font-size: 40px; color: var(--orange); line-height: 0.2; display: block; margin-bottom: 6px; font-family: 'Oswald', sans-serif; }
.test-author { display: flex; align-items: center; gap: 12px; margin-top: auto; padding-top: 14px; border-top: 1px solid var(--line); }
.test-author .av {
  width: 40px; height: 40px; border-radius: 50%;
  background: var(--green);
  color: #fff;
  font-family: 'Oswald', sans-serif;
  font-weight: 700;
  display: flex; align-items: center; justify-content: center;
}
.test-author .n { font-weight: 600; font-size: 14px; }
.test-author .loc { font-size: 12px; color: var(--muted); }

/* Gallery */
.gallery {
  display: grid;
  grid-template-columns: 1fr;
  gap: 10px;
}
@media (min-width: 600px) { .gallery { grid-template-columns: 1fr 1fr; gap: 12px; } }
@media (min-width: 1024px) { .gallery { grid-template-columns: repeat(4, 1fr); } }
.gallery .tile {
  aspect-ratio: 4/3;
  background: #1a2219;
  position: relative;
  overflow: hidden;
  cursor: pointer;
  transition: transform .2s;
}
@media (min-width: 600px) { .gallery .tile { aspect-ratio: 1/1; } }
.gallery .tile:hover { transform: scale(1.015); }
.gallery .tile::before {
  content: '';
  position: absolute; inset: 0;
  background:
    repeating-linear-gradient(45deg, rgba(255,255,255,.03) 0 10px, transparent 10px 20px),
    linear-gradient(180deg, #243028, #0c130e);
}
.gallery .tile .lbl {
  position: absolute; bottom: 0; left: 0; right: 0;
  padding: 12px 14px;
  background: linear-gradient(to top, rgba(0,0,0,.85), transparent);
  color: #fff;
  font-family: 'Oswald', sans-serif;
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  display: flex; justify-content: space-between; gap: 8px;
}
@media (min-width: 768px) { .gallery .tile .lbl { font-size: 13px; letter-spacing: 0.08em; } }
.gallery .tile .lbl .ty { color: var(--orange); font-size: 10px; }
@media (min-width: 1024px) {
  .gallery .tile.wide { grid-column: span 2; aspect-ratio: 2/1; }
}

/* CTA band */
.cta-band {
  background: var(--orange);
  color: var(--ink);
  padding: 44px 0;
  position: relative;
  overflow: hidden;
}
@media (min-width: 768px) { .cta-band { padding: 60px 0; } }
.cta-band::before {
  content: '';
  position: absolute; inset: 0;
  background: repeating-linear-gradient(-45deg, rgba(14,20,16,.06) 0 20px, transparent 20px 40px);
  pointer-events: none;
}
.cta-band .inner {
  position: relative;
  display: flex; flex-direction: column;
  align-items: flex-start; gap: 24px;
}
@media (min-width: 768px) {
  .cta-band .inner { flex-direction: row; align-items: center; justify-content: space-between; gap: 40px; flex-wrap: wrap; }
}
.cta-band .h2 { margin: 0; color: var(--ink); }
.cta-band p { margin: 8px 0 0; color: var(--ink-2); font-size: 15px; }
.cta-band .ctas { display: flex; gap: 10px; flex-wrap: wrap; width: 100%; }
.cta-band .ctas .btn { flex: 1 1 auto; min-width: 160px; }
@media (min-width: 768px) {
  .cta-band .ctas { width: auto; }
  .cta-band .ctas .btn { flex: 0 0 auto; }
}

/* Quote form */
.quote-form {
  display: grid;
  grid-template-columns: 1fr;
  gap: 32px;
  align-items: start;
}
@media (min-width: 1024px) { .quote-form { grid-template-columns: 1fr 1.3fr; gap: 48px; } }
.quote-info h2 { margin: 10px 0 14px; }
.quote-info ul { list-style: none; padding: 0; margin: 20px 0 0; display: grid; gap: 12px; }
.quote-info li { display: flex; gap: 14px; align-items: flex-start; font-size: 15px; }
.quote-info li .num {
  font-family: 'Oswald', sans-serif;
  font-weight: 700;
  color: var(--orange);
  background: var(--ink);
  width: 28px; height: 28px;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
  font-size: 14px;
}
.quote-info .contact-bloc {
  margin-top: 28px;
  padding: 20px;
  background: var(--ink);
  color: #fff;
  border-radius: 2px;
}
.quote-info .contact-bloc .lbl {
  font-family: 'JetBrains Mono', monospace;
  font-size: 11px; letter-spacing: 0.14em;
  color: var(--orange);
  margin-bottom: 6px;
}
.quote-info .contact-bloc .val {
  font-family: 'Oswald', sans-serif;
  font-size: 24px;
  font-weight: 700;
}

.quote-form-box {
  background: #fff;
  border: 1px solid var(--line);
  padding: 22px;
  border-radius: 2px;
  box-shadow: 0 20px 50px rgba(0,0,0,.05);
}
@media (min-width: 768px) { .quote-form-box { padding: 32px; } }
.stepper {
  display: flex; gap: 0;
  margin-bottom: 22px;
}
.stepper .step {
  flex: 1;
  display: flex; align-items: center; gap: 8px;
  padding-bottom: 10px;
  border-bottom: 2px solid var(--line);
  color: var(--muted);
  font-family: 'Oswald', sans-serif;
  font-size: 12px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  cursor: pointer;
}
@media (min-width: 480px) { .stepper .step { gap: 10px; font-size: 13px; letter-spacing: 0.08em; } }
.stepper .step.active { color: var(--ink); border-bottom-color: var(--orange); }
.stepper .step.done { color: var(--green); border-bottom-color: var(--green); }
.stepper .step .i {
  width: 22px; height: 22px;
  border: 1.5px solid currentColor;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 11px;
  flex-shrink: 0;
}
.stepper .step .lbl-text { display: none; }
@media (min-width: 480px) { .stepper .step .lbl-text { display: inline; } }

.service-chips {
  display: grid; grid-template-columns: 1fr; gap: 8px;
  margin-bottom: 8px;
}
@media (min-width: 480px) { .service-chips { grid-template-columns: 1fr 1fr; gap: 10px; } }
.chip {
  display: flex; align-items: center; gap: 10px;
  padding: 14px;
  border: 1px solid var(--line);
  background: var(--paper);
  cursor: pointer;
  font-size: 14px;
  transition: all .15s;
  min-height: 52px;
}
.chip:hover { border-color: var(--ink); }
.chip.sel { border-color: var(--green); background: #fff; box-shadow: inset 0 0 0 1px var(--green); }
.chip .tick {
  width: 18px; height: 18px;
  border: 1.5px solid var(--line);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
  font-size: 11px; color: transparent;
}
.chip.sel .tick { border-color: var(--green); background: var(--green); color: #fff; }
.chip .ic { font-size: 18px; }

.quote-nav { display: flex; justify-content: space-between; gap: 10px; margin-top: 22px; }
.quote-nav .btn { flex: 1; }
@media (min-width: 480px) { .quote-nav .btn { flex: 0 0 auto; } }

/* Make all form inputs mobile-friendly */
input, select, textarea {
  font-size: 16px !important; /* prevents iOS zoom */
}
@media (min-width: 768px) {
  input, select, textarea { font-size: 14px !important; }
}

/* Footer */
footer.site {
  background: #0a0f0b;
  color: #cfd3cc;
  padding: 48px 0 22px;
}
@media (min-width: 768px) { footer.site { padding: 72px 0 28px; } }
footer .grid-f {
  display: grid; grid-template-columns: 1fr;
  gap: 28px;
  padding-bottom: 28px;
  border-bottom: 1px solid rgba(255,255,255,.08);
}
@media (min-width: 600px) { footer .grid-f { grid-template-columns: 1fr 1fr; gap: 32px; } }
@media (min-width: 1024px) { footer .grid-f { grid-template-columns: 1.4fr 1fr 1fr 1fr; gap: 40px; padding-bottom: 40px; } }
footer h3 {
  font-family: 'Oswald', sans-serif;
  font-size: 13px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: #fff;
  margin: 0 0 14px;
}
footer ul { list-style: none; padding: 0; margin: 0; display: grid; gap: 8px; font-size: 14px; }
footer ul a:hover { color: var(--orange); }
footer .f-brand img { height: 60px; margin-bottom: 14px; }
@media (min-width: 768px) { footer .f-brand img { height: 70px; margin-bottom: 16px; } }
footer .f-brand p { font-size: 14px; color: #9aa398; max-width: 320px; }
footer .copy {
  padding-top: 22px;
  display: flex; flex-direction: column; gap: 10px;
  font-size: 12px; color: #9aa398; /* éclairci : contraste AA sur fond foncé du footer */
}
@media (min-width: 768px) {
  footer .copy { flex-direction: row; justify-content: space-between; flex-wrap: wrap; padding-top: 24px; }
}

/* ===== Contact page ===== */
.contact-hero {
  background: var(--ink);
  color: #fff;
  padding: 44px 0 40px;
  position: relative;
  overflow: hidden;
  border-bottom: 6px solid var(--orange);
}
@media (min-width: 768px) { .contact-hero { padding: 64px 0 56px; } }
.contact-hero::before {
  content: '';
  position: absolute; inset: 0;
  background:
    radial-gradient(circle at 90% 10%, rgba(232,130,28,.2), transparent 45%),
    radial-gradient(circle at 5% 95%, rgba(45,122,62,.22), transparent 50%),
    repeating-linear-gradient(135deg, rgba(255,255,255,.025) 0 14px, transparent 14px 28px);
}
.contact-hero .inner { position: relative; }
.contact-hero .crumbs {
  display: flex; gap: 10px; align-items: center;
  font-family: 'JetBrains Mono', monospace;
  font-size: 11px; letter-spacing: 0.1em;
  color: #9aa398;
  margin-bottom: 14px;
}
@media (min-width: 768px) { .contact-hero .crumbs { font-size: 12px; letter-spacing: 0.12em; margin-bottom: 18px; } }
.contact-hero .crumbs a { color: #f2a14c; }
.contact-hero .crumbs span { opacity: 0.5; }
.contact-hero h1 { margin: 0; color: #fff; }
.contact-hero .lede {
  font-size: 16px; color: #cfd3cc; max-width: 620px; margin: 14px 0 0;
}
@media (min-width: 768px) { .contact-hero .lede { font-size: 18px; margin: 18px 0 0; } }

.contact-quick {
  display: grid; grid-template-columns: 1fr 1fr; gap: 0;
  margin-top: 28px;
  border-left: 1px solid rgba(255,255,255,.12);
}
@media (min-width: 768px) { .contact-quick { margin-top: 40px; } }
@media (min-width: 1024px) { .contact-quick { grid-template-columns: repeat(4, 1fr); } }
.contact-quick .q {
  padding: 18px 16px;
  border-right: 1px solid rgba(255,255,255,.12);
  border-top: 1px solid rgba(255,255,255,.12);
  border-bottom: 1px solid rgba(255,255,255,.12);
}
@media (min-width: 768px) { .contact-quick .q { padding: 22px 24px; } }
.contact-quick .q .ic {
  width: 32px; height: 32px;
  display: flex; align-items: center; justify-content: center;
  border: 1.5px solid var(--orange);
  color: var(--orange);
  margin-bottom: 12px;
}
@media (min-width: 768px) { .contact-quick .q .ic { width: 36px; height: 36px; margin-bottom: 14px; } }
.contact-quick .q .k {
  font-family: 'JetBrains Mono', monospace;
  font-size: 10px; letter-spacing: 0.12em;
  color: #9aa398;
  text-transform: uppercase;
  margin-bottom: 6px;
}
@media (min-width: 768px) { .contact-quick .q .k { font-size: 11px; letter-spacing: 0.14em; } }
.contact-quick .q .v {
  font-family: 'Oswald', sans-serif;
  font-size: 17px;
  font-weight: 600;
  color: #fff;
  letter-spacing: 0.01em;
  word-break: break-word;
}
@media (min-width: 768px) { .contact-quick .q .v { font-size: 22px; } }
.contact-quick .q .sub { font-size: 11px; color: #9aa398; margin-top: 4px; }
@media (min-width: 768px) { .contact-quick .q .sub { font-size: 12px; } }

.contact-main {
  display: grid;
  grid-template-columns: 1fr;
  gap: 28px;
  align-items: start;
}
@media (min-width: 1024px) { .contact-main { grid-template-columns: 1.3fr 1fr; gap: 48px; } }

.contact-form-wrap {
  background: #fff;
  border: 1px solid var(--line);
  padding: 22px;
  border-radius: 2px;
  box-shadow: 0 20px 50px rgba(0,0,0,.05);
}
@media (min-width: 768px) { .contact-form-wrap { padding: 36px; } }
.contact-form-wrap h2 { margin: 0 0 8px; }
.contact-form-wrap .hint { color: var(--muted); font-size: 14px; margin-bottom: 20px; }

.channel-switch {
  display: flex; gap: 4px; flex-wrap: wrap;
  background: var(--paper-2);
  padding: 4px;
  border-radius: 2px;
  margin-bottom: 22px;
}
@media (min-width: 480px) { .channel-switch { width: fit-content; flex-wrap: nowrap; gap: 6px; } }
.channel-switch button {
  padding: 10px 14px;
  font-family: 'Oswald', sans-serif;
  font-size: 12px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  background: transparent;
  border: none;
  cursor: pointer;
  color: var(--muted);
  display: inline-flex; align-items: center; gap: 8px;
  flex: 1;
  justify-content: center;
}
@media (min-width: 480px) { .channel-switch button { padding: 10px 16px; font-size: 13px; letter-spacing: 0.08em; flex: 0 0 auto; } }
.channel-switch button.on {
  background: var(--ink);
  color: #fff;
}

.form-grid-2 { display: grid; grid-template-columns: 1fr; gap: 12px; }
@media (min-width: 480px) { .form-grid-2 { grid-template-columns: 1fr 1fr; gap: 14px; } }
.form-grid-3 { display: grid; grid-template-columns: 1fr; gap: 12px; }
@media (min-width: 600px) { .form-grid-3 { grid-template-columns: 2fr 1fr 1fr; gap: 14px; } }

.form-field { margin-bottom: 14px; }
.form-field label {
  display: block;
  font-size: 12px; letter-spacing: 0.1em;
  text-transform: uppercase; font-weight: 600;
  margin-bottom: 6px; color: var(--ink-2);
}
.form-field label .opt { color: var(--muted); font-weight: 400; text-transform: none; letter-spacing: 0; }
.form-field input, .form-field select, .form-field textarea {
  width: 100%;
  padding: 14px;
  border: 1px solid var(--line);
  border-radius: 2px;
  font-family: inherit;
  background: var(--paper);
  transition: border-color .15s, box-shadow .15s;
}
.form-field input:focus, .form-field select:focus, .form-field textarea:focus {
  outline: none;
  border-color: var(--green);
  box-shadow: inset 0 0 0 1px var(--green);
  background: #fff;
}
.form-field .char {
  font-family: 'JetBrains Mono', monospace;
  font-size: 11px; color: var(--muted);
  margin-top: 4px; text-align: right;
}
.contact-subject {
  display: grid; grid-template-columns: 1fr; gap: 8px;
}
@media (min-width: 480px) { .contact-subject { grid-template-columns: 1fr 1fr; } }
@media (min-width: 768px) { .contact-subject { grid-template-columns: repeat(3, 1fr); } }
.contact-subject .sbj {
  padding: 14px;
  border: 1px solid var(--line);
  background: var(--paper);
  text-align: left;
  font-size: 13px;
  cursor: pointer;
  display: flex; flex-direction: column; gap: 4px;
  transition: border-color .15s, background .15s;
  min-height: 64px;
}
.contact-subject .sbj:hover { border-color: var(--ink); }
.contact-subject .sbj.on {
  border-color: var(--green);
  background: #fff;
  box-shadow: inset 0 0 0 1px var(--green);
}
.contact-subject .sbj.disabled {
  opacity: .45;
  cursor: not-allowed;
  pointer-events: none;
}
.contact-subject .sbj .lbl {
  font-family: 'Oswald', sans-serif;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  font-size: 14px;
  font-weight: 600;
}
.contact-subject .sbj .dsc { color: var(--muted); font-size: 12px; }

.drop-zone {
  border: 1.5px dashed var(--line);
  padding: 18px;
  text-align: center;
  background: var(--paper);
  font-size: 13px;
  color: var(--muted);
  cursor: pointer;
  transition: border-color .15s, background .15s;
}
.drop-zone:hover { border-color: var(--green); background: #fff; }
.drop-zone.dragover { border-color: var(--green); background: #fff; }
.drop-zone .big {
  font-family: 'Oswald', sans-serif;
  font-size: 15px; letter-spacing: 0.04em; text-transform: uppercase;
  color: var(--ink); margin-bottom: 4px;
}
.drop-files {
  list-style: none; margin: 12px 0 0; padding: 0;
  display: flex; flex-direction: column; gap: 4px; text-align: left;
}
.drop-files li {
  display: flex; justify-content: space-between; gap: 10px; align-items: baseline;
  font-size: 13px; color: var(--ink);
  padding: 6px 10px; background: #fff; border: 1px solid var(--line);
}
.drop-files li .fn { font-weight: 600; word-break: break-all; margin-right: auto; }
.drop-files li .fs { color: var(--muted); font-size: 12px; white-space: nowrap; }
.drop-files li.err .fs { color: #c83838; }
.drop-files li .rm {
  flex: 0 0 auto;
  border: 0; background: none; padding: 0 2px;
  font-size: 18px; line-height: 1;
  color: var(--muted); cursor: pointer;
  transition: color .15s;
}
.drop-files li .rm:hover { color: #c83838; }
.drop-note { font-size: 12px; color: var(--muted); margin-top: 8px; }

.consent {
  display: flex; gap: 10px; align-items: flex-start;
  font-size: 13px; color: var(--muted);
  margin: 18px 0 22px;
  cursor: pointer;
}
.consent input { accent-color: var(--green); margin-top: 3px; flex-shrink: 0; }

.submit-row-2 {
  display: flex; flex-direction: column;
  gap: 14px;
  padding-top: 18px; border-top: 1px solid var(--line);
}
@media (min-width: 600px) { .submit-row-2 { flex-direction: row; align-items: center; justify-content: space-between; flex-wrap: wrap; } }
.submit-row-2 .note { font-size: 12px; color: var(--muted); max-width: 280px; }
.submit-row-2 .btn { width: 100%; }
@media (min-width: 600px) { .submit-row-2 .btn { width: auto; } }

/* Aside */
.contact-aside { display: grid; gap: 16px; }
@media (min-width: 1024px) { .contact-aside { gap: 20px; position: sticky; top: 90px; } }
.aside-card {
  background: #fff;
  border: 1px solid var(--line);
  padding: 20px;
  border-radius: 2px;
}
@media (min-width: 768px) { .aside-card { padding: 24px; } }
.aside-card.dark {
  background: var(--ink);
  color: #fff;
  border-color: var(--ink);
}
.aside-card h4 {
  font-family: 'Oswald', sans-serif;
  font-size: 13px; letter-spacing: 0.14em;
  text-transform: uppercase;
  font-weight: 600;
  margin: 0 0 12px;
  display: flex; align-items: center; gap: 10px;
  color: var(--green);
}
@media (min-width: 768px) { .aside-card h4 { font-size: 14px; letter-spacing: 0.16em; margin: 0 0 14px; } }
.aside-card.dark h4 { color: var(--orange); }
.aside-row {
  display: flex; justify-content: space-between; align-items: center;
  padding: 9px 0;
  border-bottom: 1px dashed var(--line);
  font-size: 14px;
}
.aside-row:last-child { border-bottom: none; }
.aside-card.dark .aside-row { border-bottom-color: rgba(255,255,255,.1); }
.aside-row .day { font-weight: 500; }
.aside-row .hrs { font-family: 'JetBrains Mono', monospace; font-size: 12px; color: var(--muted); }
@media (min-width: 768px) { .aside-row .hrs { font-size: 13px; } }
.aside-card.dark .aside-row .hrs { color: #9aa398; }
.aside-row.closed .hrs { color: #e88; }

.urgence-card {
  background: var(--orange);
  color: var(--ink);
  padding: 20px;
  border-radius: 2px;
  position: relative;
  overflow: hidden;
}
@media (min-width: 768px) { .urgence-card { padding: 24px; } }
.urgence-card::before {
  content: '';
  position: absolute; inset: 0;
  background: repeating-linear-gradient(-45deg, rgba(14,20,16,.06) 0 14px, transparent 14px 28px);
  pointer-events: none;
}
.urgence-card .content { position: relative; }
.urgence-card .tag {
  font-family: 'JetBrains Mono', monospace;
  font-size: 11px; letter-spacing: 0.14em;
  text-transform: uppercase;
  margin-bottom: 8px;
  display: inline-flex; align-items: center; gap: 6px;
}
.urgence-card .tag::before {
  content: ''; width: 8px; height: 8px; border-radius: 50%;
  background: var(--ink); animation: pulse 1.5s ease-in-out infinite;
}
@keyframes pulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.3; }
}
.urgence-card h4 {
  font-family: 'Oswald', sans-serif;
  font-size: 20px; text-transform: uppercase; letter-spacing: 0.01em;
  margin: 0 0 6px; color: var(--ink);
}
@media (min-width: 768px) { .urgence-card h4 { font-size: 22px; } }
.urgence-card .num {
  font-family: 'Oswald', sans-serif;
  font-size: 28px; font-weight: 700; color: var(--ink);
  letter-spacing: 0.02em;
  margin: 10px 0;
  display: inline-block;
}
@media (min-width: 768px) { .urgence-card .num { font-size: 32px; } }
.urgence-card p { margin: 0; font-size: 13px; color: var(--ink-2); }

.address-map {
  aspect-ratio: 16/10;
  background: #0c120e;
  position: relative;
  overflow: hidden;
  border-radius: 2px;
  margin-bottom: 14px;
}

/* FAQ */
.faq-list { display: grid; gap: 10px; max-width: 900px; margin: 0 auto; }
.faq-item {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 2px;
  overflow: hidden;
}
.faq-q {
  width: 100%;
  padding: 18px 20px;
  background: transparent;
  border: none;
  text-align: left;
  display: flex; justify-content: space-between; align-items: center; gap: 14px;
  cursor: pointer;
  font-family: 'Oswald', sans-serif;
  font-size: 15px;
  text-transform: uppercase;
  letter-spacing: 0.02em;
  color: var(--ink);
  min-height: 60px;
}
@media (min-width: 768px) { .faq-q { padding: 20px 24px; font-size: 17px; gap: 18px; } }
.faq-q:hover { background: var(--paper-2); }
.faq-q .plus {
  width: 24px; height: 24px;
  border: 1.5px solid var(--ink);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
  transition: transform .2s, background .2s, color .2s;
}
.faq-item.open .faq-q .plus {
  background: var(--orange); border-color: var(--orange); color: #fff;
  transform: rotate(45deg);
}
.faq-a {
  max-height: 0;
  overflow: hidden;
  transition: max-height .25s ease;
}
.faq-item.open .faq-a { max-height: 500px; }
.faq-a-inner {
  padding: 0 20px 20px;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.6;
}
@media (min-width: 768px) { .faq-a-inner { padding: 0 24px 22px; font-size: 15px; } }

/* Team block */
.team-grid { display: grid; grid-template-columns: 1fr; gap: 28px; align-items: center; }
@media (min-width: 1024px) { .team-grid { grid-template-columns: 1fr 1fr; gap: 40px; } }
.team-photo {
  aspect-ratio: 5/4;
  background: #1a2219;
  position: relative;
  overflow: hidden;
  border-radius: 2px;
}
.team-photo::before {
  content: '';
  position: absolute; inset: 0;
  background:
    repeating-linear-gradient(45deg, rgba(255,255,255,.03) 0 10px, transparent 10px 20px),
    linear-gradient(180deg, #2d3a30, #0c130e);
}
.team-photo::after {
  content: attr(data-label);
  position: absolute; bottom: 14px; left: 14px;
  font-family: 'JetBrains Mono', monospace;
  font-size: 11px; color: rgba(255,255,255,.4); letter-spacing: 0.1em;
}
.team-sig {
  display: flex; gap: 18px; align-items: center;
  margin-top: 22px; padding-top: 22px;
  border-top: 1px solid var(--line);
}
@media (min-width: 768px) { .team-sig { gap: 24px; margin-top: 24px; padding-top: 24px; } }
.team-sig .av {
  width: 52px; height: 52px; border-radius: 50%;
  background: var(--green); color: #fff;
  font-family: 'Oswald', sans-serif;
  font-weight: 700; font-size: 20px;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
@media (min-width: 768px) { .team-sig .av { width: 56px; height: 56px; font-size: 22px; } }
.team-sig .r {
  font-family: 'Oswald', sans-serif; text-transform: uppercase;
  font-size: 17px; letter-spacing: 0.02em;
}
@media (min-width: 768px) { .team-sig .r { font-size: 18px; } }
.team-sig .t { font-size: 13px; color: var(--muted); }

/* Mobile sticky phone CTA — thumb-reachable */
.mobile-sticky-cta {
  position: fixed;
  bottom: 0; left: 0; right: 0;
  z-index: 40;
  background: var(--ink);
  color: #fff;
  padding: 10px 14px calc(10px + env(safe-area-inset-bottom));
  display: grid; grid-template-columns: 1fr 1fr; gap: 8px;
  border-top: 2px solid var(--orange);
  box-shadow: 0 -10px 30px rgba(0,0,0,.15);
}
.mobile-sticky-cta .btn { min-height: 48px; font-size: 13px; padding: 12px 14px; }
@media (min-width: 1024px) {
  .mobile-sticky-cta { display: none; }
}
/* add bottom padding to body on mobile so content doesn't hide under sticky */
@media (max-width: 1023px) {
  body { padding-bottom: 76px; }
}


/* ============================================================
   SERVICES PAGE
   ============================================================ */

/* Hero (dark, same DNA as home hero but focused on services) */
.services-hero {
  position: relative;
  background: var(--ink);
  color: #fff;
  overflow: hidden;
  border-bottom: 6px solid var(--orange);
}
.services-hero .bg {
  position: absolute; inset: 0;
  background:
    radial-gradient(circle at 85% 15%, rgba(232,130,28,.22), transparent 55%),
    radial-gradient(circle at 10% 85%, rgba(45,122,62,.25), transparent 55%),
    repeating-linear-gradient(135deg, #1a2219 0 14px, #131a14 14px 28px);
}
.services-hero .inner {
  position: relative;
  padding: 32px 18px 44px;
}
@media (min-width: 768px) {
  .services-hero .inner { padding: 56px 28px 64px; }
}
@media (min-width: 1024px) {
  .services-hero .inner { padding: 80px 28px 96px; max-width: 1120px; }
}

.services-hero .crumbs {
  display: flex; gap: 10px; align-items: center;
  font-family: 'Oswald', sans-serif;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-size: 11px;
  color: rgba(255,255,255,.55);
  margin-bottom: 20px;
}
.services-hero .crumbs a {
  color: rgba(255,255,255,.75);
  text-decoration: none;
  border-bottom: 1px dotted rgba(255,255,255,.3);
  padding-bottom: 1px;
}
.services-hero .crumbs a:hover { color: var(--orange); border-color: var(--orange); }

.services-hero h1 { margin: 14px 0 16px; color: #fff; }
.services-hero h1 .accent-g { color: var(--green-light); }
.services-hero h1 .accent-o { color: var(--orange); }
.services-hero .sub {
  font-size: 16px;
  color: #cfd3cc;
  max-width: 720px;
  margin-bottom: 28px;
}
@media (min-width: 768px) {
  .services-hero .sub { font-size: 18px; margin-bottom: 36px; }
}

/* Pole anchor grid — quick-jump chips */
.pole-anchors {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}
@media (min-width: 680px) {
  .pole-anchors { grid-template-columns: repeat(4, 1fr); gap: 14px; }
}
.pole-anchor {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 14px;
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.12);
  color: #fff;
  text-decoration: none;
  transition: all .2s ease;
  min-height: 64px;
}
.pole-anchor:hover {
  background: rgba(255,255,255,.1);
  border-color: var(--orange);
  transform: translateY(-2px);
}
.pole-anchor .num {
  font-family: 'Oswald', sans-serif;
  font-size: 22px;
  font-weight: 700;
  color: var(--orange);
  line-height: 1;
}
.pole-anchor .nm {
  font-size: 13px;
  font-weight: 500;
  line-height: 1.2;
}
@media (min-width: 768px) {
  .pole-anchor .nm { font-size: 14px; }
}

/* Poles accordion stack */
.services-poles { background: var(--paper); }

.pole-stack {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-top: 28px;
}
@media (min-width: 768px) { .pole-stack { gap: 16px; margin-top: 36px; } }

.pole-block {
  background: #fff;
  border: 1px solid var(--line);
  overflow: hidden;
  scroll-margin-top: 80px;
}
.pole-block.is-open { border-color: var(--ink); box-shadow: 0 6px 0 -2px var(--orange); }

.pole-head {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 16px 16px;
  background: transparent;
  border: none;
  cursor: pointer;
  text-align: left;
  font-family: inherit;
  color: inherit;
  min-height: 72px;
}
@media (min-width: 768px) { .pole-head { padding: 22px 24px; } }
.pole-head:hover { background: rgba(45,122,62,.04); }

.pole-head-l {
  display: flex; align-items: center; gap: 14px;
  flex: 1; min-width: 0;
}
@media (min-width: 768px) { .pole-head-l { gap: 20px; } }

.pole-num {
  width: 44px; height: 44px;
  display: inline-flex; align-items: center; justify-content: center;
  background: var(--green);
  color: #fff;
  font-family: 'Oswald', sans-serif;
  font-weight: 700;
  font-size: 18px;
  flex-shrink: 0;
  border-radius: 2px;
}
@media (min-width: 768px) { .pole-num { width: 56px; height: 56px; font-size: 22px; } }

.pole-head-txt { min-width: 0; }
.pole-tag {
  font-family: 'Oswald', sans-serif;
  font-size: 10px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 4px;
}
@media (min-width: 768px) { .pole-tag { font-size: 11px; } }
.pole-head h2.h2 {
  margin: 0;
  font-size: 20px;
  letter-spacing: 0.01em;
}
@media (min-width: 480px) { .pole-head h2.h2 { font-size: 24px; } }
@media (min-width: 768px) { .pole-head h2.h2 { font-size: 30px; } }

.pole-chev {
  width: 40px; height: 40px;
  display: inline-flex; align-items: center; justify-content: center;
  color: var(--ink);
  flex-shrink: 0;
  transition: transform .25s ease;
}
.pole-chev.up { transform: rotate(180deg); }

.pole-body {
  padding: 0 16px 20px;
  border-top: 1px solid var(--line);
}
@media (min-width: 768px) { .pole-body { padding: 0 24px 28px; } }

.pole-intro {
  padding: 20px 0 18px;
  border-bottom: 1px dashed var(--line);
}
.pole-intro p {
  margin: 0 0 14px;
  color: #3a3f36;
  font-size: 15px;
  line-height: 1.55;
  max-width: 760px;
}
@media (min-width: 768px) { .pole-intro p { font-size: 16px; } }
.pole-feats {
  display: flex; flex-wrap: wrap; gap: 6px;
}
.pole-feat {
  display: inline-block;
  padding: 5px 10px;
  background: var(--paper);
  border: 1px solid var(--line);
  font-size: 11px;
  font-family: 'Oswald', sans-serif;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--ink);
}
@media (min-width: 768px) { .pole-feat { font-size: 12px; padding: 6px 12px; } }

.pole-groups {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
  padding: 22px 0;
}
@media (min-width: 720px) {
  .pole-groups { grid-template-columns: 1fr 1fr; gap: 28px 36px; }
}
@media (min-width: 1100px) {
  .pole-groups { grid-template-columns: 1fr 1fr 1fr; }
}

.pole-group { min-width: 0; }
.group-title {
  font-family: 'Oswald', sans-serif;
  font-weight: 600;
  font-size: 12px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--green);
  margin: 0 0 12px;
  padding-bottom: 8px;
  border-bottom: 2px solid var(--green);
  display: inline-block;
}

.presta-list {
  list-style: none;
  padding: 0;
  margin: 0;
}
.presta-row {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 12px;
  padding: 10px 0;
  border-bottom: 1px dotted rgba(0,0,0,.08);
}
.presta-row:last-child { border-bottom: none; }
.presta-name {
  font-size: 14px;
  color: var(--ink);
  line-height: 1.35;
  flex: 1; min-width: 0;
}
@media (min-width: 768px) { .presta-name { font-size: 15px; } }
.presta-price {
  font-family: 'JetBrains Mono', monospace;
  font-size: 11px;
  color: var(--muted);
  white-space: nowrap;
  text-align: right;
  flex-shrink: 0;
  font-weight: 500;
}
@media (min-width: 768px) { .presta-price { font-size: 12px; } }

.pole-foot {
  margin-top: 8px;
  padding-top: 22px;
  border-top: 3px solid var(--orange);
  display: flex;
  flex-direction: column;
  gap: 16px;
}
@media (min-width: 768px) {
  .pole-foot {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    gap: 32px;
  }
}
.pole-foot-txt { max-width: 560px; }
.pole-foot .k {
  font-family: 'Oswald', sans-serif;
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--orange);
  margin-bottom: 4px;
  font-weight: 600;
}
.pole-foot p {
  margin: 0;
  font-size: 13px;
  color: var(--muted);
  line-height: 1.5;
}
.pole-foot .btn { flex-shrink: 0; width: 100%; }
@media (min-width: 768px) { .pole-foot .btn { width: auto; } }

/* ============================================================
   BEFORE / AFTER GALLERY
   ============================================================ */
.ba-section { background: var(--ink); color: #fff; }
.ba-section .sec-head .eyebrow { color: var(--orange-text); }
.ba-section .sec-head .eyebrow::before {
  content: ''; width: 28px; height: 2px; background: var(--orange);
  display: inline-block; margin-right: 10px; vertical-align: middle;
}
.ba-section h2.h1 { color: #fff; }
.ba-section .sub { color: rgba(255,255,255,.7); }

.ba-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
  margin-top: 28px;
}
@media (min-width: 720px) { .ba-grid { grid-template-columns: 1fr 1fr; gap: 28px; } }
@media (min-width: 1100px) { .ba-grid { gap: 36px; } }

.ba-card {
  background: #0f1511;
  border: 1px solid rgba(255,255,255,.08);
}
.ba-viewer {
  position: relative;
  width: 100%;
  aspect-ratio: 4/3;
  overflow: hidden;
  user-select: none;
  touch-action: pan-y;
}

.ba-img {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}
.ba-before {
  background:
    repeating-linear-gradient(45deg, #3d3225 0 20px, #332a1e 20px 40px);
}
.ba-after {
  background:
    repeating-linear-gradient(45deg, #2d5c3c 0 20px, #234d30 20px 40px);
}

.ba-placeholder {
  font-family: 'JetBrains Mono', monospace;
  font-size: 11px;
  color: rgba(255,255,255,.4);
  padding: 8px 12px;
  background: rgba(0,0,0,.45);
  border: 1px dashed rgba(255,255,255,.2);
}

.ba-label {
  position: absolute;
  top: 14px; left: 14px;
  font-family: 'Oswald', sans-serif;
  font-weight: 700;
  font-size: 11px;
  letter-spacing: 0.16em;
  color: #fff;
  padding: 5px 10px;
  background: rgba(0,0,0,.6);
  border: 1px solid rgba(255,255,255,.3);
  z-index: 2;
}
.ba-label-r {
  left: auto; right: 14px;
  background: var(--orange);
  border-color: var(--orange);
}

.ba-slider-line {
  position: absolute;
  top: 0; bottom: 0;
  width: 2px;
  background: #fff;
  transform: translateX(-1px);
  z-index: 3;
  pointer-events: none;
  box-shadow: 0 0 0 1px rgba(0,0,0,.3);
}
.ba-slider-handle {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 48px; height: 48px;
  background: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--ink);
  box-shadow: 0 4px 14px rgba(0,0,0,.5);
  border: 3px solid var(--ink);
}

.ba-range {
  position: absolute;
  inset: 0;
  width: 100%; height: 100%;
  opacity: 0;
  cursor: ew-resize;
  margin: 0;
  z-index: 4;
}

.ba-caption {
  padding: 16px 18px 18px;
  border-top: 3px solid var(--orange);
}
.ba-pole {
  font-family: 'Oswald', sans-serif;
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  font-weight: 600;
  margin-bottom: 4px;
}
.ba-title {
  font-family: 'Oswald', sans-serif;
  font-weight: 600;
  font-size: 17px;
  color: #fff;
  margin-bottom: 4px;
  line-height: 1.25;
}
@media (min-width: 768px) { .ba-title { font-size: 19px; } }
.ba-loc {
  font-size: 12px;
  color: rgba(255,255,255,.55);
  font-family: 'JetBrains Mono', monospace;
}


/* ============================================================
   REALISATIONS PAGE
   ============================================================ */

.real-hero {
  position: relative;
  background: var(--ink);
  color: #fff;
  overflow: hidden;
  border-bottom: 6px solid var(--orange);
}
.real-hero .bg {
  position: absolute; inset: 0;
  background:
    radial-gradient(circle at 75% 20%, rgba(232,130,28,.22), transparent 55%),
    radial-gradient(circle at 15% 90%, rgba(45,122,62,.22), transparent 55%),
    repeating-linear-gradient(135deg, #1a2219 0 14px, #131a14 14px 28px);
}
.real-hero .inner {
  position: relative;
  padding: 32px 18px 44px;
}
@media (min-width: 768px) { .real-hero .inner { padding: 56px 28px 64px; } }
@media (min-width: 1024px) { .real-hero .inner { padding: 80px 28px 96px; max-width: 1120px; } }

.real-hero .crumbs {
  display: flex; gap: 10px; align-items: center;
  font-family: 'Oswald', sans-serif;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-size: 11px;
  color: rgba(255,255,255,.55);
  margin-bottom: 20px;
}
.real-hero .crumbs a {
  color: rgba(255,255,255,.75);
  text-decoration: none;
  border-bottom: 1px dotted rgba(255,255,255,.3);
  padding-bottom: 1px;
}
.real-hero .crumbs a:hover { color: var(--orange); border-color: var(--orange); }

.real-hero h1 { margin: 14px 0 16px; color: #fff; }
.real-hero h1 .accent-g { color: var(--green-light); }
.real-hero h1 .accent-o { color: var(--orange); }
.real-hero .sub {
  font-size: 16px;
  color: #cfd3cc;
  max-width: 720px;
  margin: 0;
}
@media (min-width: 768px) { .real-hero .sub { font-size: 18px; } }

/* Filter chips */
.realisations { background: var(--paper); }

.real-filters {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 24px 0 28px;
}
@media (min-width: 768px) { .real-filters { gap: 10px; margin: 32px 0 40px; } }

.real-filter {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 10px 14px;
  background: #fff;
  border: 1.5px solid var(--line);
  color: var(--ink);
  font-family: 'Oswald', sans-serif;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-size: 12px;
  font-weight: 500;
  cursor: pointer;
  transition: all .2s ease;
  min-height: 44px;
}
@media (min-width: 768px) {
  .real-filter { font-size: 13px; padding: 11px 18px; }
}
.real-filter:hover { border-color: var(--ink); }
.real-filter.active {
  color: #fff;
  font-weight: 600;
}
.real-filter-count {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 22px;
  height: 22px;
  padding: 0 6px;
  background: rgba(0,0,0,.08);
  border-radius: 11px;
  font-size: 11px;
  font-weight: 600;
  font-family: 'JetBrains Mono', monospace;
}
.real-filter.active .real-filter-count {
  background: rgba(255,255,255,.25);
}

/* Project grid */
.proj-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 18px;
}
@media (min-width: 600px) { .proj-grid { grid-template-columns: 1fr 1fr; gap: 20px; } }
@media (min-width: 1000px) { .proj-grid { grid-template-columns: 1fr 1fr 1fr; gap: 24px; } }

.proj-card {
  background: #fff;
  border: 1px solid var(--line);
  cursor: pointer;
  transition: all .25s ease;
  display: flex;
  flex-direction: column;
  outline: none;
}
.proj-card:hover {
  border-color: var(--ink);
  transform: translateY(-3px);
  box-shadow: 0 12px 30px rgba(0,0,0,.08);
}
.proj-card:focus-visible { outline: 2px solid var(--orange); outline-offset: 3px; }

.proj-cover {
  position: relative;
  aspect-ratio: 4/3;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  background-image:
    repeating-linear-gradient(45deg, rgba(0,0,0,.06) 0 12px, transparent 12px 24px);
}
.proj-cover-ph {
  font-family: 'JetBrains Mono', monospace;
  font-size: 10px;
  padding: 6px 10px;
  background: rgba(255,255,255,.8);
  border: 1px dashed rgba(0,0,0,.2);
  color: var(--ink);
}
@media (min-width: 768px) { .proj-cover-ph { font-size: 11px; } }

.proj-pole-badge {
  position: absolute;
  top: 12px; left: 12px;
  padding: 5px 10px;
  font-family: 'Oswald', sans-serif;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  font-size: 10px;
  font-weight: 600;
  color: #fff;
}
@media (min-width: 768px) { .proj-pole-badge { font-size: 11px; padding: 6px 12px; } }

.proj-body {
  padding: 16px;
  flex: 1;
  display: flex;
  flex-direction: column;
}
@media (min-width: 768px) { .proj-body { padding: 20px; } }

.proj-meta {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px;
  font-family: 'JetBrains Mono', monospace;
  font-size: 11px;
  color: var(--muted);
  margin-bottom: 10px;
}
.proj-meta .dot { opacity: 0.4; }

.proj-title {
  font-family: 'Oswald', sans-serif;
  font-weight: 600;
  font-size: 18px;
  line-height: 1.25;
  margin: 0 0 14px;
  color: var(--ink);
  flex: 1;
}
@media (min-width: 768px) { .proj-title { font-size: 20px; } }

.proj-link {
  font-family: 'Oswald', sans-serif;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-size: 12px;
  font-weight: 600;
  color: var(--green);
  margin-top: auto;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding-top: 12px;
  border-top: 1px solid var(--line);
}
.proj-card:hover .proj-link { color: var(--orange); }
.proj-link .arr { transition: transform .2s ease; }
.proj-card:hover .proj-link .arr { transform: translateX(4px); }

.proj-empty {
  padding: 60px 20px;
  text-align: center;
  color: var(--muted);
  background: #fff;
  border: 1px dashed var(--line);
}

/* ============================================================
   PROJECT MODAL
   ============================================================ */
.proj-modal {
  position: fixed;
  inset: 0;
  z-index: 8000;
  display: flex;
  align-items: flex-start;
  justify-content: center;
  padding: 0;
  overflow-y: auto;
}
@media (min-width: 768px) {
  .proj-modal { padding: 40px 20px; align-items: flex-start; }
}

.proj-modal-backdrop {
  position: fixed;
  inset: 0;
  background: rgba(10,12,10,.7);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
  z-index: 0;
}

.proj-modal-panel {
  position: relative;
  z-index: 1;
  background: #fff;
  width: 100%;
  max-width: 980px;
  min-height: 100vh;
  animation: proj-modal-in .3s ease-out;
}
@media (min-width: 768px) {
  .proj-modal-panel {
    min-height: 0;
    border: 1px solid var(--line);
    box-shadow: 0 40px 80px rgba(0,0,0,.3);
  }
}
@keyframes proj-modal-in {
  from { opacity: 0; transform: translateY(20px); }
  to   { opacity: 1; transform: translateY(0); }
}

.proj-modal-close {
  position: fixed;
  top: 12px; right: 12px;
  z-index: 5;
  width: 44px; height: 44px;
  background: var(--ink);
  color: #fff;
  border: none;
  cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  border-radius: 50%;
  box-shadow: 0 4px 14px rgba(0,0,0,.3);
  transition: background .2s ease;
}
.proj-modal-close:hover { background: var(--orange); }
@media (min-width: 768px) {
  .proj-modal-close {
    position: absolute;
    top: -14px; right: -14px;
    width: 48px; height: 48px;
  }
}

.proj-modal-head {
  padding: 24px 18px 22px;
  border-bottom: 4px solid var(--orange);
}
@media (min-width: 768px) { .proj-modal-head { padding: 36px 40px 28px; } }

.proj-modal-pole {
  font-family: 'Oswald', sans-serif;
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  font-weight: 600;
}
@media (min-width: 768px) { .proj-modal-pole { font-size: 12px; } }

.proj-modal-head h2.h2 { font-size: 24px; }
@media (min-width: 480px) { .proj-modal-head h2.h2 { font-size: 28px; } }
@media (min-width: 768px) { .proj-modal-head h2.h2 { font-size: 34px; } }

.proj-modal-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  margin-top: 14px;
  padding-top: 14px;
  border-top: 1px dashed var(--line);
  font-size: 13px;
  color: var(--ink);
}
.proj-modal-meta strong {
  font-family: 'Oswald', sans-serif;
  font-size: 10px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--muted);
  margin-right: 8px;
  font-weight: 600;
}

.proj-modal-body {
  padding: 24px 18px 32px;
}
@media (min-width: 768px) { .proj-modal-body { padding: 32px 40px 40px; } }

.proj-section {
  padding: 18px 0;
  border-bottom: 1px solid var(--line);
}
.proj-section:last-of-type { border-bottom: none; padding-bottom: 0; }

.proj-section-t {
  font-family: 'Oswald', sans-serif;
  font-size: 12px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--orange);
  margin: 0 0 16px;
  padding-bottom: 8px;
  border-bottom: 2px solid var(--orange);
  display: inline-block;
  font-weight: 600;
}
@media (min-width: 768px) { .proj-section-t { font-size: 13px; } }

.proj-problem {
  margin: 0;
  font-size: 15px;
  line-height: 1.6;
  color: #2a2f26;
  max-width: 780px;
}
@media (min-width: 768px) { .proj-problem { font-size: 16px; } }

/* Tasks list */
.proj-tasks {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.proj-tasks li {
  display: flex;
  gap: 14px;
  align-items: flex-start;
  padding: 12px 14px;
  background: var(--paper);
  border-left: 3px solid var(--green);
  font-size: 14px;
  line-height: 1.5;
}
@media (min-width: 768px) { .proj-tasks li { font-size: 15px; padding: 14px 18px; } }
.proj-task-num {
  font-family: 'JetBrains Mono', monospace;
  font-size: 12px;
  color: var(--green);
  font-weight: 600;
  flex-shrink: 0;
  padding-top: 1px;
}

/* Photos */
.proj-photos {
  display: grid;
  grid-template-columns: 1fr;
  gap: 14px;
}
@media (min-width: 600px) { .proj-photos { grid-template-columns: 1fr 1fr 1fr; gap: 16px; } }

.proj-photo {
  margin: 0;
  display: flex;
  flex-direction: column;
}
.proj-photo-img {
  aspect-ratio: 4/3;
  display: flex;
  align-items: center;
  justify-content: center;
  background-image:
    repeating-linear-gradient(45deg, rgba(0,0,0,.04) 0 12px, transparent 12px 24px);
}
.proj-photo-ph {
  font-family: 'JetBrains Mono', monospace;
  font-size: 10px;
  padding: 5px 9px;
  background: rgba(255,255,255,.85);
  border: 1px dashed rgba(0,0,0,.2);
  color: var(--ink);
}
.proj-photo figcaption {
  margin-top: 8px;
  font-size: 12px;
  color: var(--muted);
  line-height: 1.4;
}

/* B/A in modal */
.proj-section-ba .ba-card {
  background: #0f1511;
}
.proj-ba-hint {
  margin-top: 10px;
  font-family: 'Oswald', sans-serif;
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--muted);
  text-align: center;
}

/* Modal footer CTA */
.proj-modal-foot {
  margin-top: 22px;
  padding: 22px;
  background: var(--ink);
  color: #fff;
  display: flex;
  flex-direction: column;
  gap: 16px;
}
@media (min-width: 720px) {
  .proj-modal-foot {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    gap: 32px;
  }
}
.proj-foot-k {
  font-family: 'Oswald', sans-serif;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.02em;
}
@media (min-width: 768px) { .proj-foot-k { font-size: 18px; } }
.proj-foot-p {
  font-size: 13px;
  color: rgba(255,255,255,.7);
  margin-top: 4px;
}
.proj-modal-foot .btn { flex-shrink: 0; width: 100%; }
@media (min-width: 720px) { .proj-modal-foot .btn { width: auto; } }


/* ==================== REALISATION DETAIL PAGE ==================== */

.proj-page-hero {
  position: relative;
  background: #0E1714;
  color: #fff;
  padding: 100px 0 48px;
  overflow: hidden;
  isolation: isolate;
}
.proj-page-hero .bg {
  position: absolute; inset: 0;
  background:
    radial-gradient(1100px 560px at 85% 20%, rgba(232,130,28,0.18) 0%, transparent 60%),
    radial-gradient(900px 460px at 10% 85%, rgba(45,122,62,0.22) 0%, transparent 55%),
    linear-gradient(180deg, #0B1512 0%, #0E1714 100%);
  z-index: -1;
}
.proj-page-hero .inner { padding: 0 20px; }

.proj-page-hero .crumbs {
  font-family: 'JetBrains Mono', monospace;
  font-size: 11px;
  letter-spacing: 0.06em;
  color: rgba(255,255,255,0.55);
  display: flex;
  gap: 8px;
  align-items: center;
  flex-wrap: wrap;
  margin-bottom: 20px;
}
.proj-page-hero .crumbs a {
  color: rgba(255,255,255,0.7);
  text-decoration: none;
}
.proj-page-hero .crumbs a:hover { color: var(--orange); }
.proj-page-hero .crumbs span:not(:has(a)) { color: rgba(255,255,255,0.3); }

.proj-page-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 7px 14px;
  border-radius: 999px;
  font-family: 'Oswald', sans-serif;
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-weight: 600;
  color: #fff;
}

.proj-page-hero .display {
  font-family: 'Oswald', sans-serif;
  font-weight: 700;
  font-size: clamp(32px, 7vw, 64px);
  line-height: 1.05;
  letter-spacing: -0.01em;
  max-width: 16ch;
}

.proj-page-meta {
  margin-top: 32px;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px 24px;
  padding-top: 26px;
  border-top: 1px solid rgba(255,255,255,0.12);
  max-width: 720px;
}
@media (min-width: 720px) {
  .proj-page-meta { grid-template-columns: repeat(4, 1fr); gap: 24px; }
}
.ppm-item { display: flex; flex-direction: column; gap: 6px; }
.ppm-item .k {
  font-family: 'JetBrains Mono', monospace;
  font-size: 10px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.5);
}
.ppm-item .v {
  font-family: 'Oswald', sans-serif;
  font-size: 16px;
  font-weight: 500;
  color: #fff;
}
@media (min-width: 768px) { .ppm-item .v { font-size: 18px; } }

/* Body layout */
.proj-page-body { padding-top: 48px; padding-bottom: 60px; }
.proj-page-layout {
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px;
}
@media (min-width: 960px) {
  .proj-page-layout {
    grid-template-columns: minmax(0, 1fr) 320px;
    gap: 56px;
  }
}
.ppl-main { min-width: 0; }
.ppl-main .proj-section { padding: 28px 0; }
.ppl-main .proj-section:first-child { padding-top: 0; }
.ppl-main .proj-problem { max-width: none; }

/* Sidebar */
.ppl-aside {
  display: flex;
  flex-direction: column;
  gap: 24px;
}
@media (min-width: 960px) {
  .ppl-aside {
    position: sticky;
    top: 92px;
    align-self: start;
    max-height: calc(100vh - 112px);
    overflow-y: auto;
  }
}

.ppl-card {
  background: var(--ink);
  color: #fff;
  padding: 22px;
  border-radius: 2px;
}
.ppl-card-k {
  font-family: 'Oswald', sans-serif;
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  font-weight: 600;
}
.ppl-card-t {
  font-family: 'Oswald', sans-serif;
  font-size: 22px;
  font-weight: 700;
  margin: 8px 0 10px;
  line-height: 1.1;
}
.ppl-card-p {
  font-size: 14px;
  line-height: 1.55;
  color: rgba(255,255,255,0.72);
  margin: 0;
}
.ppl-card .btn-ghost {
  background: transparent;
  border: 1px solid rgba(255,255,255,0.22);
  color: #fff;
}
.ppl-card .btn-ghost:hover {
  background: rgba(255,255,255,0.08);
  border-color: rgba(255,255,255,0.35);
}
.btn-block { width: 100%; justify-content: center; }

/* Other projects sidebar */
.ppl-others {
  background: var(--bg);
  border: 1px solid var(--line);
  padding: 18px;
  border-radius: 2px;
}
.ppl-others-t {
  font-family: 'Oswald', sans-serif;
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  font-weight: 600;
  color: var(--muted);
  padding-bottom: 12px;
  border-bottom: 1px solid var(--line);
  margin-bottom: 12px;
}
.ppl-others-list { display: flex; flex-direction: column; gap: 10px; }
.ppl-other {
  display: flex;
  gap: 12px;
  padding: 10px;
  text-decoration: none;
  color: inherit;
  border-radius: 2px;
  transition: background .15s;
}
.ppl-other:hover { background: #fff; box-shadow: 0 2px 8px rgba(0,0,0,0.05); }
.ppl-other-cover {
  width: 58px;
  height: 58px;
  flex-shrink: 0;
  border-radius: 2px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}
.ppl-other-dot {
  width: 10px; height: 10px; border-radius: 50%;
}
.ppl-other-txt { min-width: 0; flex: 1; display: flex; flex-direction: column; gap: 3px; }
.ppl-other-pole {
  font-family: 'Oswald', sans-serif;
  font-size: 10px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  font-weight: 600;
}
.ppl-other-title {
  font-family: 'Oswald', sans-serif;
  font-size: 14px;
  font-weight: 600;
  color: var(--ink);
  line-height: 1.25;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.ppl-other-loc {
  font-size: 11px;
  color: var(--muted);
}
.ppl-all-link {
  display: block;
  margin-top: 12px;
  padding-top: 12px;
  border-top: 1px solid var(--line);
  font-family: 'Oswald', sans-serif;
  font-size: 12px;
  letter-spacing: 0.06em;
  font-weight: 600;
  color: var(--orange);
  text-decoration: none;
}
.ppl-all-link:hover { color: var(--orange-dark, #c26c14); }

/* Card cursor on realisations list */
.proj-card { cursor: pointer; text-decoration: none; color: inherit; display: block; }

/* ==========================================================================
   Gutenberg / contenu libre — intégration des blocs WP standards
   ========================================================================== */
.andy78-free-content { padding: 40px 0; }
@media (min-width: 768px) { .andy78-free-content { padding: 56px 0; } }

.andy78-free-content .entry-content { max-width: 820px; margin: 0 auto; font-size: 17px; line-height: 1.65; }
.andy78-free-content .entry-content > * + * { margin-top: 1.1em; }

.andy78-free-content .entry-content h1,
.andy78-free-content .entry-content h2,
.andy78-free-content .entry-content h3,
.andy78-free-content .entry-content h4 {
	font-family: 'Oswald', sans-serif;
	text-transform: uppercase;
	letter-spacing: -0.01em;
	line-height: 1.1;
	margin-top: 1.6em;
}
.andy78-free-content .entry-content h2 { font-size: clamp(24px, 5vw, 36px); }
.andy78-free-content .entry-content h3 { font-size: clamp(20px, 4vw, 28px); }
.andy78-free-content .entry-content h4 { font-size: 18px; letter-spacing: 0.06em; }

.andy78-free-content .entry-content a { color: var(--green); text-decoration: underline; text-underline-offset: 3px; }
.andy78-free-content .entry-content a:hover { color: var(--orange); }
.andy78-free-content .entry-content strong { color: var(--ink); }

.andy78-free-content .entry-content blockquote {
	border-left: 4px solid var(--orange);
	padding: 4px 0 4px 18px;
	margin: 1.6em 0;
	font-family: 'Oswald', sans-serif;
	font-size: clamp(18px, 2.5vw, 22px);
	font-weight: 500;
	color: var(--ink-2);
}

.andy78-free-content .entry-content ul,
.andy78-free-content .entry-content ol { padding-left: 22px; }
.andy78-free-content .entry-content li + li { margin-top: 6px; }

.andy78-free-content .entry-content img,
.andy78-free-content .entry-content figure { border-radius: 2px; }
.andy78-free-content .entry-content figcaption { font-size: 13px; color: var(--muted); margin-top: 6px; text-align: center; }

/* Alignement Gutenberg : alignwide / alignfull dépassent du conteneur 820px */
.andy78-free-content .entry-content .alignwide  { max-width: 1100px; margin-left: auto; margin-right: auto; }
.andy78-free-content .entry-content .alignfull  { max-width: none; margin-left: calc(50% - 50vw); margin-right: calc(50% - 50vw); width: 100vw; }
.andy78-free-content .entry-content .alignleft  { float: left; margin: 0 24px 18px 0; max-width: 50%; }
.andy78-free-content .entry-content .alignright { float: right; margin: 0 0 18px 24px; max-width: 50%; }
.andy78-free-content .entry-content .aligncenter { display: block; margin-left: auto; margin-right: auto; }

/* Boutons natifs Gutenberg → look thème */
.andy78-free-content .entry-content .wp-block-button__link {
	background: var(--orange);
	color: #fff;
	font-family: 'Oswald', sans-serif;
	font-weight: 600;
	letter-spacing: 0.08em;
	text-transform: uppercase;
	border-radius: 2px;
	padding: 14px 22px;
	text-decoration: none;
}
.andy78-free-content .entry-content .wp-block-button__link:hover { background: var(--orange-dark); color: #fff; }
.andy78-free-content .entry-content .is-style-outline .wp-block-button__link {
	background: transparent;
	color: var(--ink);
	border: 2px solid var(--ink);
}

/* =========================================================
   Pages légales (mentions légales, politique de confidentialité)
   ========================================================= */
.legal-hero {
  position: relative;
  background: var(--ink);
  color: #fff;
  overflow: hidden;
  border-bottom: 6px solid var(--green);
}
.legal-hero .bg {
  position: absolute; inset: 0;
  background:
    radial-gradient(circle at 85% 15%, rgba(45,122,62,.22), transparent 55%),
    radial-gradient(circle at 10% 85%, rgba(232,130,28,.18), transparent 55%),
    repeating-linear-gradient(135deg, #1a2219 0 14px, #131a14 14px 28px);
}
.legal-hero .inner {
  position: relative;
  padding: 32px 18px 40px;
}
@media (min-width: 768px) { .legal-hero .inner { padding: 56px 28px 60px; } }
@media (min-width: 1024px) { .legal-hero .inner { padding: 72px 28px 80px; max-width: 1120px; } }

.legal-hero .crumbs {
  display: flex; gap: 10px; align-items: center;
  font-family: 'Oswald', sans-serif;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-size: 11px;
  color: rgba(255,255,255,.55);
  margin-bottom: 20px;
}
.legal-hero .crumbs a {
  color: rgba(255,255,255,.75);
  text-decoration: none;
  border-bottom: 1px dotted rgba(255,255,255,.3);
  padding-bottom: 1px;
}
.legal-hero .crumbs a:hover { color: var(--orange); border-color: var(--orange); }
.legal-hero h1 { margin: 0; color: #fff; }
.legal-hero .lede {
  font-size: 16px;
  color: #cfd3cc;
  max-width: 760px;
  margin: 16px 0 0;
}
@media (min-width: 768px) { .legal-hero .lede { font-size: 18px; margin-top: 18px; } }
.legal-hero .legal-updated {
  margin-top: 18px;
  font-family: 'JetBrains Mono', monospace;
  font-size: 12px;
  color: rgba(255,255,255,.55);
  letter-spacing: 0.04em;
}

.legal-page .container {
  display: grid;
  gap: 32px;
  grid-template-columns: 1fr;
}
@media (min-width: 960px) {
  .legal-page .container {
    grid-template-columns: 260px minmax(0, 1fr);
    gap: 56px;
    align-items: start;
  }
}

.legal-toc {
  background: #f7f6f1;
  border: 1px solid #e6e3d8;
  border-left: 4px solid var(--green);
  padding: 20px 22px;
  border-radius: 4px;
  font-size: 14px;
}
@media (min-width: 960px) {
  .legal-toc { position: sticky; top: 96px; }
}
.legal-toc-title {
  font-family: 'Oswald', sans-serif;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-size: 12px;
  color: var(--green-dark, #1f5a2c);
  margin-bottom: 12px;
}
.legal-toc ol {
  list-style: decimal inside;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.legal-toc ol li { color: #6b7268; }
.legal-toc ol a {
  color: var(--ink);
  text-decoration: none;
  border-bottom: 1px dotted #c8c5b8;
}
.legal-toc ol a:hover { color: var(--green); border-color: var(--green); }

.legal-body { max-width: 760px; }
.legal-section { margin-bottom: 36px; scroll-margin-top: 100px; }
.legal-section:last-child { margin-bottom: 0; }
.legal-section h2 {
  font-family: 'Oswald', sans-serif;
  font-size: 22px;
  letter-spacing: 0.01em;
  color: var(--ink);
  margin: 0 0 14px;
  padding-bottom: 10px;
  border-bottom: 2px solid var(--green);
}
@media (min-width: 768px) { .legal-section h2 { font-size: 26px; } }
.legal-section p,
.legal-section li { font-size: 15.5px; line-height: 1.7; color: #2a2d28; }
.legal-section p { margin: 0 0 14px; }
.legal-section ul { padding-left: 22px; margin: 0 0 16px; }
.legal-section ul li { margin-bottom: 6px; }
.legal-section strong { color: var(--ink); }
.legal-section a {
  color: var(--green-dark, #1f5a2c);
  text-decoration: underline;
  text-underline-offset: 3px;
}
.legal-section a:hover { color: var(--orange); }
