/* Pompage & Assainissement Paris — Depuis 1996
   Heritage urgence : crème ivoire × bordeaux × or jaune × rouge urgence
   Typo : Source Serif 4 (display) + IBM Plex Sans (body) */

:root {
  /* Crème ivoire chaud */
  --bg:        #F7F3E9;
  --bg-2:      #EEE7D2;
  --bg-3:      #E3D9B8;
  --surface:   #FFFFFF;
  --surface-2: #FBF7EE;

  /* Encres warm */
  --ink:       #1A1812;
  --ink-2:     #2D2922;
  --ink-3:     #5A554A;
  --ink-4:     #857F71;
  --ink-5:     #B8B1A0;

  /* Bordeaux profond — couleur d'enseigne historique */
  --bdx:       #6B1F2C;
  --bdx-d:     #4D1520;
  --bdx-l:     #8B2C3C;
  --bdx-soft:  #F0DBDE;
  --bdx-tint:  #FBEFF1;

  /* Or jaune chaud — filets, accents heritage */
  --gold:      #D4A442;
  --gold-d:    #A78230;
  --gold-l:    #E5BC5A;
  --gold-soft: #F6E8C0;
  --gold-tint: #FBF4DD;

  /* Rouge urgence vif — distinctif du bordeaux */
  --urg:       #C9341F;
  --urg-d:     #A02716;
  --urg-l:     #E25C45;

  /* Lignes */
  --line:      #D8CFB7;
  --line-2:    #BFB394;
  --line-soft: #E8DFC5;

  /* Dark */
  --dark:      #1A1812;
  --dark-2:    #2D2922;

  --maxw:      1240px;
  --r-sm:      4px;
  --r:         8px;
  --r-lg:      14px;

  --serif: 'Source Serif 4', Georgia, 'Times New Roman', serif;
  --sans:  'IBM Plex Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', system-ui, sans-serif;
  --mono:  'IBM Plex Mono', ui-monospace, 'SF Mono', Menlo, monospace;

  --shadow-sm:    0 1px 2px 0 rgba(26, 24, 18, .05);
  --shadow:       0 4px 14px -3px rgba(26, 24, 18, .08), 0 2px 6px -2px rgba(26, 24, 18, .04);
  --shadow-md:    0 18px 40px -12px rgba(26, 24, 18, .14), 0 6px 14px -8px rgba(26, 24, 18, .06);
  --shadow-bdx:   0 14px 32px -10px rgba(107, 31, 44, .35);
  --shadow-urg:   0 14px 32px -10px rgba(201, 52, 31, .4);
  --shadow-gold:  0 12px 28px -10px rgba(212, 164, 66, .35);
}

* { box-sizing: border-box; }
*::selection { background: var(--bdx); color: var(--bg); }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; text-rendering: optimizeLegibility; }
body {
  margin: 0;
  font-family: var(--sans);
  background: var(--bg);
  color: var(--ink);
  font-size: 16.5px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}
img, svg { display: block; max-width: 100%; }
img { -webkit-user-drag: none; user-drag: none; user-select: none; }
a { color: inherit; text-decoration: none; }

h1, h2 {
  font-family: var(--serif);
  color: var(--bdx-d);
  margin: 0 0 .55em;
  letter-spacing: -.022em;
  line-height: 1.05;
  font-weight: 500;
  font-variation-settings: 'opsz' 32;
}
h1 { font-size: clamp(2.7rem, 6.2vw, 4.6rem); letter-spacing: -.028em; line-height: 1.02; font-variation-settings: 'opsz' 60; }
h2 { font-size: clamp(2rem, 4vw, 3.3rem); font-variation-settings: 'opsz' 40; }
h1 em, h2 em { color: var(--gold-d); font-style: italic; font-weight: 500; }
h3 { font-family: var(--sans); font-size: clamp(1.16rem, 1.6vw, 1.32rem); font-weight: 600; letter-spacing: -.015em; line-height: 1.3; color: var(--bdx-d); margin: 0 0 .55em; }
h4 { font-family: var(--sans); font-size: .94rem; font-weight: 600; color: var(--ink); }
p  { margin: 0 0 1rem; max-width: 64ch; color: var(--ink-2); }
em { font-style: italic; color: var(--gold-d); font-weight: 500; font-family: var(--serif); }
strong { font-weight: 600; color: var(--ink); }

.wrap { max-width: var(--maxw); margin-inline: auto; padding-inline: 32px; }
.section { padding: clamp(72px, 9vw, 130px) 0; }
.section--alt { background: var(--bg-2); border-block: 1px solid var(--line-soft); }
.section--white { background: var(--surface); border-block: 1px solid var(--line-soft); }
.section--dark { background: var(--dark); color: var(--bg); }
.section--dark h2 { color: var(--bg); }
.section--dark p { color: rgba(247, 243, 233, .72); }

.eyebrow {
  display: inline-flex; align-items: center; gap: .6rem;
  font-family: var(--sans); font-size: .76rem; font-weight: 600;
  color: var(--gold-d); letter-spacing: .14em;
  text-transform: uppercase; margin-bottom: 1.2rem;
}
.eyebrow::before { content: ""; width: 28px; height: 1.5px; background: var(--gold); }
.section--dark .eyebrow { color: var(--gold-l); }
.section--dark .eyebrow::before { background: var(--gold-l); }

/* Boutons */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: .5rem;
  padding: .95rem 1.65rem;
  font-family: var(--sans); font-weight: 600; font-size: .95rem;
  letter-spacing: -.005em;
  border: 1.5px solid transparent;
  border-radius: var(--r-sm);
  cursor: pointer;
  transition: transform .12s, background .2s, color .2s, border-color .2s, box-shadow .2s;
  white-space: nowrap;
}
.btn:hover { transform: translateY(-1px); }
.btn-urg { background: var(--urg); color: var(--bg); box-shadow: var(--shadow-urg); font-weight: 700; }
.btn-urg:hover { background: var(--urg-d); }
.btn-bdx { background: var(--bdx); color: var(--bg); box-shadow: var(--shadow-bdx); }
.btn-bdx:hover { background: var(--bdx-d); }
.btn-ghost { background: transparent; color: var(--bdx-d); border-color: var(--bdx-d); }
.btn-ghost:hover { background: var(--bdx-d); color: var(--bg); }
.btn-outline { background: transparent; color: var(--gold-d); border-color: var(--gold-d); }
.btn-outline:hover { background: var(--gold-d); color: var(--bg); }
.btn-cream { background: var(--bg); color: var(--bdx-d); border-color: var(--bg); font-weight: 700; }
.btn-cream:hover { background: var(--urg); color: var(--bg); border-color: var(--urg); }
.btn-ghost-light { background: transparent; color: var(--bg); border-color: rgba(247, 243, 233, .42); }
.btn-ghost-light:hover { background: var(--bg); color: var(--bdx-d); border-color: var(--bg); }
.btn-lg { padding: 1.1rem 1.95rem; font-size: 1.02rem; }
.btn-arrow::after { content: "→"; margin-left: .15rem; transition: transform .25s; }
.btn-arrow:hover::after { transform: translateX(4px); }

/* Topbar URGENCE */
.topbar { background: var(--urg-d); color: var(--bg); font-size: .82rem; padding: .58rem 0; font-variant-numeric: tabular-nums; }
.topbar-inner { display: flex; justify-content: space-between; align-items: center; gap: 1rem; }
.topbar a { color: var(--bg); font-weight: 700; text-decoration: underline; text-decoration-color: rgba(247, 243, 233, .35); text-underline-offset: 3px; }
.topbar a:hover { text-decoration-color: var(--bg); }
.topbar .est { color: var(--bg); font-weight: 700; letter-spacing: -.005em; }
.topbar .glyph { color: rgba(247, 243, 233, .5); margin: 0 .55rem; }
.topbar .pulse { display: inline-block; width: 8px; height: 8px; background: var(--gold-l); border-radius: 50%; margin-right: .55rem; animation: pulseUrg 1.5s infinite; box-shadow: 0 0 8px var(--gold-l); }
@keyframes pulseUrg {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: .55; transform: scale(.85); }
}
@media (prefers-reduced-motion: reduce) { .topbar .pulse { animation: none; } }
@media (max-width: 700px) { .topbar .desktop { display: none; } }

/* Header */
.header { position: sticky; top: 0; z-index: 50; background: rgba(247, 243, 233, .94); backdrop-filter: saturate(150%) blur(14px); border-bottom: 1px solid var(--line); }
.header-inner { display: flex; align-items: center; justify-content: space-between; gap: 1.2rem; min-height: 82px; position: relative; }
.logo { display: flex; align-items: center; gap: .95rem; color: var(--bdx-d); }
.logo-mark {
  width: 48px; height: 48px;
  display: grid; place-items: center;
  background: var(--bdx); color: var(--bg);
  font-family: var(--serif); font-weight: 500; font-style: italic;
  font-size: 1.22rem; letter-spacing: -.03em;
  border-radius: 6px;
  position: relative;
  box-shadow: var(--shadow-bdx);
}
.logo-mark::after {
  content: ""; position: absolute; bottom: -4px; left: 50%; transform: translateX(-50%);
  width: 28px; height: 2px; background: var(--gold);
}
.logo-name { font-family: var(--serif); font-weight: 500; font-size: 1.4rem; line-height: 1.05; letter-spacing: -.025em; color: var(--bdx-d); }
.logo-name small { display: block; font-family: var(--sans); font-weight: 500; font-size: .68rem; letter-spacing: .14em; color: var(--gold-d); margin-top: .35rem; text-transform: uppercase; }

.nav { display: flex; align-items: center; gap: 1.8rem; }
.nav a { font-family: var(--sans); font-weight: 500; font-size: .92rem; color: var(--ink-3); padding: .4rem 0; position: relative; transition: color .15s ease; }
.nav a:hover { color: var(--bdx-d); }
.nav a[aria-current="page"] { color: var(--bdx-d); font-weight: 600; }
.nav a[aria-current="page"]::after { content: ""; position: absolute; left: 0; bottom: -3px; width: 100%; height: 1.5px; background: var(--gold); }
.nav-toggle { display: none; background: var(--bg); border: 1.5px solid var(--bdx-d); color: var(--bdx-d); padding: .55rem .95rem; cursor: pointer; font: 600 .88rem var(--sans); border-radius: var(--r-sm); }
@media (max-width: 1040px) {
  .nav { display: none; }
  .nav.is-open { display: flex; flex-direction: column; position: absolute; top: 100%; left: -32px; right: -32px; background: var(--bg); border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); padding: 1rem 32px 1.4rem; gap: 0; align-items: stretch; z-index: 49; }
  .nav.is-open a { padding: .95rem 0; border-bottom: 1px solid var(--line-soft); font-size: 1rem; }
  .nav.is-open a:last-child { border-bottom: 0; }
  .nav-toggle { display: inline-flex; }
}

.header-tel { display: inline-flex; align-items: center; gap: .5rem; padding: .85rem 1.3rem; background: var(--urg); color: var(--bg); font-family: var(--sans); font-weight: 700; font-size: .96rem; font-variant-numeric: tabular-nums; border-radius: var(--r-sm); box-shadow: var(--shadow-urg); transition: background .2s, transform .12s; }
.header-tel:hover { background: var(--urg-d); transform: translateY(-1px); }
@media (max-width: 540px) { .header-tel .tel-txt { display: none; } }

/* Hero — clair heritage urgence */
.hero {
  background: var(--bg);
  padding: clamp(72px, 9vw, 130px) 0 clamp(56px, 7vw, 110px);
  position: relative; overflow: hidden;
}
.hero::before { content: ""; position: absolute; top: -260px; right: -180px; width: 720px; height: 720px; background: radial-gradient(circle, rgba(212, 164, 66, .18) 0%, transparent 60%); pointer-events: none; z-index: 0; }
.hero::after { content: ""; position: absolute; bottom: -200px; left: -150px; width: 540px; height: 540px; background: radial-gradient(circle, rgba(107, 31, 44, .1) 0%, transparent 60%); pointer-events: none; z-index: 0; }
.hero-inner { display: grid; grid-template-columns: 1.05fr .95fr; gap: clamp(2.5rem, 5vw, 5.5rem); align-items: center; position: relative; z-index: 1; }
.hero-text { max-width: 640px; }

/* Stamp "Depuis 1996" — signature heritage */
.hero-stamp {
  display: inline-flex; align-items: center; gap: .7rem;
  padding: .55rem 1.1rem;
  background: var(--bdx);
  color: var(--bg);
  border-radius: 2px;
  font-family: var(--sans);
  font-size: .76rem;
  font-weight: 700;
  letter-spacing: .14em;
  text-transform: uppercase;
  margin-bottom: 1.4rem;
  position: relative;
  border-left: 3px solid var(--gold);
}
.hero-stamp .year { color: var(--gold-l); font-family: var(--serif); font-weight: 600; font-style: italic; font-size: 1.05rem; letter-spacing: -.01em; text-transform: none; line-height: 1; }

.hero-badge-urg {
  display: inline-flex; align-items: center; gap: .55rem;
  padding: .42rem .9rem;
  background: var(--urg);
  color: var(--bg);
  border-radius: 999px;
  font-family: var(--sans); font-size: .76rem; font-weight: 700;
  margin-bottom: 1.6rem;
  margin-left: .8rem;
  letter-spacing: -.005em;
  text-transform: uppercase;
  vertical-align: middle;
}
.hero-badge-urg .dot { width: 6px; height: 6px; background: var(--bg); border-radius: 50%; animation: pulseUrg 1.5s infinite; }

.hero h1 { color: var(--bdx-d); max-width: 15ch; margin: 0 0 .4em; }
.hero h1 em { color: var(--gold-d); font-style: italic; }
.hero-lead { font-family: var(--serif); font-style: italic; font-weight: 400; font-size: clamp(1.2rem, 1.8vw, 1.45rem); color: var(--ink); line-height: 1.45; margin: 1.3rem 0 0; max-width: 42ch; font-variation-settings: 'opsz' 24; }
.hero-cta { display: flex; gap: .8rem; flex-wrap: wrap; margin-top: 2.4rem; }
.hero-meta { display: flex; align-items: center; gap: 1.8rem; margin-top: 2.6rem; padding-top: 2rem; border-top: 1px solid var(--line); font-family: var(--sans); font-size: .88rem; color: var(--ink-3); flex-wrap: wrap; }
.hero-meta > span { display: inline-flex; align-items: center; gap: .55rem; }
.hero-meta strong { color: var(--ink); font-weight: 600; font-variant-numeric: tabular-nums; }
.hero-meta .ic-check { color: var(--urg); font-weight: 700; }

.hero-photo {
  position: relative;
  aspect-ratio: 4/5;
  background: var(--bg-2);
  overflow: hidden;
  border-radius: var(--r-lg);
  box-shadow: 0 32px 64px -20px rgba(26, 24, 18, .25), 0 12px 24px -10px rgba(26, 24, 18, .1);
  border: 1px solid var(--line-soft);
}
.hero-photo img { width: 100%; height: 100%; object-fit: cover; filter: saturate(.95) contrast(1.05); }

.floating-tag { position: absolute; left: 14px; bottom: 14px; background: var(--bg); padding: .9rem 1.15rem; border-radius: var(--r); box-shadow: var(--shadow-md); display: flex; align-items: center; gap: .7rem; font-family: var(--sans); font-size: .8rem; font-weight: 600; border: 1px solid var(--line); }
.floating-tag .ic { width: 36px; height: 36px; background: var(--gold-soft); color: var(--gold-d); border-radius: 5px; display: grid; place-items: center; }
.floating-tag .lbl { color: var(--ink-3); font-weight: 500; font-size: .7rem; display: block; text-transform: uppercase; letter-spacing: .06em; }
.floating-tag .val { font-family: var(--serif); font-weight: 500; color: var(--bdx-d); font-size: 1.18rem; font-variant-numeric: tabular-nums; letter-spacing: -.02em; display: block; }
.floating-stat { position: absolute; right: 14px; top: 14px; background: var(--bdx); color: var(--bg); padding: .95rem 1.2rem; border-radius: var(--r); box-shadow: var(--shadow-md); text-align: right; border-left: 3px solid var(--gold); }
.floating-stat .big { font-family: var(--serif); font-size: 1.55rem; font-weight: 500; color: var(--bg); line-height: 1; letter-spacing: -.02em; font-variant-numeric: tabular-nums; font-style: italic; }
.floating-stat .sub { font-family: var(--sans); font-size: .72rem; color: rgba(247, 243, 233, .82); font-weight: 500; margin-top: .3rem; letter-spacing: .04em; text-transform: uppercase; }

@media (max-width: 980px) { .hero-inner { grid-template-columns: 1fr; gap: 2.6rem; } .hero-photo { aspect-ratio: 4/3; max-width: 580px; } }

/* Heritage strip — depuis 1996 */
.heritage-strip {
  background: var(--bdx-d);
  color: var(--bg);
  padding: clamp(24px, 3.5vw, 38px) 0;
  border-block: 1.5px solid var(--gold);
}
.heritage-strip-inner { display: flex; align-items: center; justify-content: center; gap: clamp(2rem, 5vw, 5rem); flex-wrap: wrap; text-align: center; }
.hs-item { display: flex; flex-direction: column; align-items: center; }
.heritage-strip .hs-num { font-family: var(--serif); font-size: clamp(2rem, 3.2vw, 2.8rem); color: var(--gold-l); font-weight: 500; font-style: italic; line-height: 1; font-variant-numeric: tabular-nums; letter-spacing: -.02em; font-variation-settings: 'opsz' 36; }
.heritage-strip .hs-num em { font-style: italic; }
.heritage-strip .hs-lbl { font-family: var(--sans); font-size: .76rem; color: rgba(247, 243, 233, .8); margin-top: .35rem; text-transform: uppercase; letter-spacing: .14em; font-weight: 600; }
.heritage-strip .hs-sep { width: 1px; height: 44px; background: rgba(212, 164, 66, .4); }
@media (max-width: 760px) { .heritage-strip .hs-sep { display: none; } }

/* Process / 3 piliers */
.process { background: var(--surface); border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.process-inner { display: grid; grid-template-columns: repeat(3, 1fr); gap: 0; }
.process-step { padding: clamp(2.4rem, 4vw, 3.4rem) clamp(1.8rem, 2.5vw, 2.4rem); display: flex; gap: 1.3rem; align-items: flex-start; transition: background .2s ease; border-right: 1px solid var(--line); position: relative; }
.process-step:last-child { border-right: 0; }
.process-step::before { content: ""; position: absolute; left: 0; top: 0; bottom: 0; width: 2.5px; background: transparent; transition: background .25s; }
.process-step:hover::before { background: var(--gold); }
.process-step:hover { background: var(--bg); }
.process-step .step-no { font-family: var(--serif); font-weight: 500; font-style: italic; font-size: 2.4rem; color: var(--gold-d); font-variant-numeric: tabular-nums; letter-spacing: -.025em; line-height: 1; min-width: 56px; }
.process-step h3 { margin: 0 0 .55rem; font-size: 1.22rem; font-weight: 600; color: var(--bdx-d); }
.process-step p { margin: 0; font-size: .96rem; color: var(--ink-3); line-height: 1.65; max-width: none; }
@media (max-width: 880px) { .process-inner { grid-template-columns: 1fr; } .process-step { border-right: 0; border-bottom: 1px solid var(--line); } .process-step:last-child { border-bottom: 0; } }

/* Section head */
.section-head { max-width: 760px; margin: 0 0 clamp(2.8rem, 4vw, 4rem); }
.section-head.center { text-align: center; margin-inline: auto; }
.section-head p { color: var(--ink-2); font-size: 1.04rem; line-height: 1.65; max-width: 60ch; }
.section-head.center p { margin-inline: auto; }

/* Grilles */
.grid { display: grid; gap: clamp(1rem, 1.6vw, 1.4rem); }
.grid-2 { grid-template-columns: repeat(2, 1fr); }
.grid-3 { grid-template-columns: repeat(3, 1fr); }
.grid-4 { grid-template-columns: repeat(4, 1fr); }
@media (max-width: 980px) { .grid-4, .grid-3 { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 620px) { .grid-2, .grid-3, .grid-4 { grid-template-columns: 1fr; } }

/* Cards */
.card {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  padding: clamp(1.8rem, 2.3vw, 2.3rem);
  transition: transform .2s, box-shadow .25s, border-color .2s;
  display: flex; flex-direction: column;
  min-height: 320px;
  position: relative;
  overflow: hidden;
}
.card::after { content: ""; position: absolute; left: 0; bottom: 0; height: 3px; width: 0%; background: var(--gold); transition: width .35s; }
.card:hover { transform: translateY(-3px); box-shadow: var(--shadow-md); border-color: var(--bdx); }
.card:hover::after { width: 100%; }
.card .ic { display: grid; place-items: center; width: 54px; height: 54px; background: var(--bdx-soft); color: var(--bdx-d); border-radius: 8px; margin-bottom: 1.3rem; transition: background .2s, color .2s; }
.card:hover .ic { background: var(--bdx); color: var(--bg); }
.card h3 { margin: 0 0 .6rem; font-family: var(--serif); font-size: 1.4rem; font-weight: 500; letter-spacing: -.02em; line-height: 1.2; color: var(--bdx-d); font-variation-settings: 'opsz' 32; }
.card p { margin: 0; color: var(--ink-3); font-size: .96rem; line-height: 1.65; max-width: none; }
.card .keywords { margin-top: 1rem; font-family: var(--mono); font-size: .76rem; color: var(--gold-d); letter-spacing: .02em; line-height: 1.5; }
.card a.card-cta { margin-top: auto; padding-top: 1.4rem; font-family: var(--sans); font-weight: 700; font-size: .78rem; color: var(--urg-d); display: inline-flex; align-items: center; gap: .4rem; letter-spacing: .1em; text-transform: uppercase; }
.card a.card-cta::after { content: "→"; transition: transform .2s; }
.card a.card-cta:hover::after { transform: translateX(4px); }

/* Feature tile */
.feature-tile { background: var(--surface); border: 1px solid var(--line); border-radius: var(--r-lg); overflow: hidden; display: flex; flex-direction: column; transition: transform .25s, box-shadow .25s, border-color .25s; }
.feature-tile:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); border-color: var(--bdx); }
.feature-img { margin: 0; aspect-ratio: 16/10; overflow: hidden; background: var(--bg-2); }
.feature-img img { width: 100%; height: 100%; object-fit: cover; transition: transform .6s cubic-bezier(.22,.61,.36,1); filter: saturate(.95) contrast(1.05); }
.feature-tile:hover .feature-img img { transform: scale(1.05); }
.feature-body { padding: clamp(1.6rem, 2.2vw, 2.1rem); }
.feature-body h3 { margin: 0 0 .55rem; font-family: var(--serif); font-size: 1.5rem; font-weight: 500; letter-spacing: -.02em; color: var(--bdx-d); font-variation-settings: 'opsz' 36; }
.feature-body p { margin: 0 0 1.3rem; color: var(--ink-3); font-size: .98rem; line-height: 1.65; max-width: none; }

/* CTA band — urgence */
.cta-band { background: linear-gradient(135deg, var(--bdx-d) 0%, var(--dark) 100%); color: var(--bg); padding: clamp(48px, 6vw, 80px) 0; position: relative; overflow: hidden; }
.cta-band::before { content: ""; position: absolute; inset: 0; background-image: radial-gradient(circle at 95% 30%, rgba(212, 164, 66, .22), transparent 50%), radial-gradient(circle at 5% 100%, rgba(201, 52, 31, .15), transparent 50%); pointer-events: none; }
.cta-band-inner { display: flex; align-items: center; justify-content: space-between; gap: 2.4rem; flex-wrap: wrap; position: relative; z-index: 1; }
.cta-band h3 { font-family: var(--serif); color: var(--bg); font-size: clamp(1.55rem, 2.4vw, 2.15rem); margin: 0; font-weight: 500; max-width: 30ch; letter-spacing: -.02em; font-style: italic; font-variation-settings: 'opsz' 32; }
.cta-band p { color: rgba(247, 243, 233, .82); margin: .35rem 0 0; max-width: 50ch; font-size: 1rem; }

/* Histoire / Story */
.story { display: grid; grid-template-columns: 5fr 7fr; gap: clamp(2.4rem, 5vw, 5rem); align-items: start; }
@media (max-width: 920px) { .story { grid-template-columns: 1fr; } .story-img { order: -1; max-width: 500px; } }
.story-img { overflow: hidden; aspect-ratio: 4/5; background: var(--bg-2); border-radius: var(--r-lg); box-shadow: var(--shadow-md); position: relative; }
.story-img img { width: 100%; height: 100%; object-fit: cover; filter: saturate(.95) contrast(1.05) sepia(.05); }
.story-img::after { content: "Fondée en 1996"; position: absolute; left: 14px; bottom: 14px; background: var(--bdx); color: var(--bg); padding: .55rem .95rem; border-radius: 3px; font-family: var(--sans); font-size: .74rem; font-weight: 700; letter-spacing: .14em; text-transform: uppercase; border-left: 3px solid var(--gold); }
.story-text p { font-size: 1.05rem; color: var(--ink-2); line-height: 1.78; max-width: 56ch; }
.story-text p.lead { font-family: var(--serif); font-style: italic; font-weight: 400; font-size: clamp(1.3rem, 1.9vw, 1.65rem); color: var(--bdx-d); margin-bottom: 1.4rem; line-height: 1.4; max-width: 32ch; font-variation-settings: 'opsz' 24; }
.drop-cap::first-letter { font-family: var(--serif); font-style: italic; font-size: 4.4rem; float: left; line-height: .85; padding: .15rem .55rem 0 0; color: var(--gold-d); font-weight: 500; font-variation-settings: 'opsz' 60; }

/* Frise chronologique 1996→2026 */
.timeline-history {
  margin-top: clamp(2.6rem, 4.5vw, 4rem);
  border-top: 1.5px solid var(--bdx);
  padding-top: 2.2rem;
}
.timeline-history-grid {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 0; counter-reset: yr;
}
@media (max-width: 760px) { .timeline-history-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 480px) { .timeline-history-grid { grid-template-columns: 1fr; } }
.th-item { padding: 0 1.3rem 1.5rem 0; border-right: 1px solid var(--line); position: relative; }
.th-item:last-child { border-right: 0; }
.th-item .yr {
  font-family: var(--serif); font-style: italic; font-weight: 500;
  font-size: 1.95rem; color: var(--gold-d);
  font-variant-numeric: tabular-nums;
  letter-spacing: -.025em; line-height: 1;
  display: inline-block; margin-bottom: 1rem;
  font-variation-settings: 'opsz' 30;
}
.th-item h4 { margin: 0 0 .35rem; font-family: var(--sans); font-size: .94rem; font-weight: 600; color: var(--bdx-d); }
.th-item p { margin: 0; font-size: .88rem; color: var(--ink-3); line-height: 1.55; max-width: none; }

/* Timeline intervention */
.timeline { display: grid; grid-template-columns: repeat(4, 1fr); gap: 0; counter-reset: step; margin-top: clamp(2.4rem, 4vw, 3.6rem); border-top: 1.5px solid var(--bdx); list-style: none; padding: 0; }
.tl-step { padding: 2.2rem 1.6rem 1.8rem 0; position: relative; counter-increment: step; border-right: 1px solid var(--line); }
.tl-step:last-child { border-right: 0; }
.tl-step .num {
  font-family: var(--serif); font-style: italic; font-weight: 500;
  font-size: 2.2rem; color: var(--gold-d);
  font-variant-numeric: tabular-nums;
  letter-spacing: -.025em; line-height: 1;
  display: inline-block; margin-bottom: 1.1rem;
  font-variation-settings: 'opsz' 30;
}
.tl-step .num::before { content: "0" counter(step); }
.tl-step h3 { margin: 0 0 .55rem; font-family: var(--serif); font-size: 1.28rem; font-weight: 500; color: var(--bdx-d); letter-spacing: -.015em; font-variation-settings: 'opsz' 28; }
.tl-step p { margin: 0; color: var(--ink-3); font-size: .94rem; line-height: 1.65; max-width: none; }
@media (max-width: 880px) { .timeline { grid-template-columns: 1fr; } .tl-step { border-right: 0; border-bottom: 1px solid var(--line); padding: 1.8rem 0; } .tl-step:last-child { border-bottom: 0; } }

/* Photo band */
.photo-band { display: block; position: relative; margin: 0; overflow: hidden; aspect-ratio: 21/9; }
@media (max-width: 760px) { .photo-band { aspect-ratio: 4/3; } }
.photo-band img { width: 100%; height: 100%; object-fit: cover; filter: saturate(.95) contrast(1.05); }
.photo-band figcaption { position: absolute; left: clamp(24px, 5vw, 50px); bottom: clamp(24px, 5vw, 44px); background: var(--bdx); color: var(--bg); padding: 1rem 1.4rem; border-radius: var(--r); font-family: var(--sans); font-size: .92rem; font-weight: 500; max-width: 56ch; border-left: 3px solid var(--gold); }
.photo-band figcaption strong { color: var(--gold-l); font-weight: 600; margin-right: .45rem; }

/* Pédagogie / Comprendre */
.peda { background: var(--surface-2); }
.peda-grid { display: grid; grid-template-columns: 6fr 5fr; gap: clamp(2.4rem, 5vw, 5rem); align-items: start; }
@media (max-width: 920px) { .peda-grid { grid-template-columns: 1fr; } }
.peda-text p { font-size: 1.03rem; color: var(--ink-2); line-height: 1.78; max-width: 60ch; }
.peda-sidebar {
  background: var(--bg); border: 1px solid var(--line);
  border-left: 4px solid var(--bdx);
  border-radius: var(--r-lg);
  padding: clamp(1.6rem, 2.4vw, 2.2rem);
}
.peda-sidebar h3 { margin-top: 0; font-family: var(--sans); font-size: .82rem; font-weight: 600; color: var(--bdx-d); text-transform: uppercase; letter-spacing: .12em; margin-bottom: 1.2rem; }
.peda-sidebar ul { list-style: none; padding: 0; margin: 0; display: grid; gap: .8rem; }
.peda-sidebar li { padding-left: 1.4rem; position: relative; font-size: .94rem; color: var(--ink-2); line-height: 1.55; }
.peda-sidebar li::before { content: "—"; position: absolute; left: 0; color: var(--gold-d); font-weight: 700; }
.peda-sidebar strong { color: var(--bdx-d); font-weight: 600; }

/* Zones — 20 arrondissements */
.zones-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 0; border-top: 1px solid var(--bdx); font-family: var(--serif); font-size: 1.1rem; font-weight: 500; font-variation-settings: 'opsz' 28; }
@media (max-width: 880px) { .zones-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 540px) { .zones-grid { grid-template-columns: 1fr; } }
.zones-grid a { display: flex; justify-content: space-between; align-items: baseline; border-bottom: 1px solid var(--line); padding: 1.05rem 1.15rem 1.05rem 0; color: var(--bdx-d); transition: background .15s, padding .25s, color .15s; letter-spacing: -.015em; font-style: italic; }
.zones-grid a:hover { color: var(--urg-d); padding-left: .8rem; background: var(--gold-tint); }
.zones-grid a small { font-family: var(--mono); font-style: normal; font-size: .76rem; color: var(--ink-4); font-weight: 500; font-variant-numeric: tabular-nums; letter-spacing: .04em; }

/* Reviews */
.reviews { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2rem; }
@media (max-width: 920px) { .reviews { grid-template-columns: 1fr; } }
.review { position: relative; padding: 2.4rem 0 0; display: flex; flex-direction: column; }
.review::before { content: "“"; font-family: var(--serif); font-style: italic; position: absolute; top: -.6rem; left: -.4rem; font-size: 5.5rem; line-height: 1; color: var(--gold-d); font-weight: 500; font-variation-settings: 'opsz' 72; }
.review-txt { font-family: var(--serif); font-style: italic; font-weight: 400; font-size: 1.2rem; color: var(--ink); line-height: 1.5; margin: 1.4rem 0 1.4rem; font-variation-settings: 'opsz' 24; }
.review .stars { color: var(--gold); display: flex; gap: .15rem; margin-bottom: 1rem; font-size: 1rem; letter-spacing: .12rem; }
.review-who { font-family: var(--sans); font-weight: 600; font-size: .92rem; color: var(--bdx-d); display: block; }
.review-where { font-family: var(--sans); font-size: .8rem; color: var(--ink-3); margin-top: .25rem; display: block; }

/* FAQ */
.faq { max-width: 880px; margin: 0 auto; }
.faq details { background: var(--surface); border: 1px solid var(--line); border-radius: var(--r); margin-bottom: .7rem; padding: 0 1.7rem; transition: border-color .2s, box-shadow .2s; }
.faq details:hover { border-color: var(--line-2); }
.faq details[open] { border-color: var(--gold); box-shadow: 0 8px 24px -10px rgba(212, 164, 66, .25); }
.faq summary { list-style: none; cursor: pointer; display: flex; justify-content: space-between; align-items: center; gap: 1rem; padding: 1.25rem 0; font-family: var(--serif); font-weight: 500; font-size: clamp(1.05rem, 1.4vw, 1.2rem); color: var(--bdx-d); line-height: 1.35; letter-spacing: -.015em; font-variation-settings: 'opsz' 22; }
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after { content: "+"; font-family: var(--serif); font-style: italic; font-size: 1.8rem; font-weight: 500; color: var(--gold-d); transition: transform .25s; flex: 0 0 auto; line-height: 1; }
.faq details[open] summary::after { content: "−"; }
.faq details p { color: var(--ink-2); margin: 0 0 1.3rem; font-size: 1rem; line-height: 1.7; max-width: none; }

/* Glossaire */
.glossary { display: grid; grid-template-columns: repeat(2, 1fr); gap: .8rem 2rem; }
@media (max-width: 760px) { .glossary { grid-template-columns: 1fr; } }
.glossary dt { font-family: var(--serif); font-weight: 600; color: var(--bdx-d); font-size: 1.05rem; margin-top: 1.2rem; letter-spacing: -.005em; font-variation-settings: 'opsz' 24; }
.glossary dt:first-of-type { margin-top: 0; }
.glossary dd { margin: .3rem 0 0; padding: 0; font-size: .95rem; color: var(--ink-3); line-height: 1.65; }

/* CTA dark */
.cta-dark { background: var(--bdx-d); color: var(--bg); text-align: center; padding: clamp(80px, 10vw, 140px) 0; position: relative; overflow: hidden; }
.cta-dark::before { content: ""; position: absolute; inset: 0; background-image: radial-gradient(circle at 50% 0%, rgba(212, 164, 66, .25), transparent 55%), radial-gradient(circle at 100% 100%, rgba(201, 52, 31, .2), transparent 55%); pointer-events: none; }
.cta-dark .eyebrow { color: var(--gold-l); }
.cta-dark .eyebrow::before { background: var(--gold-l); }
.cta-dark h2 { color: var(--bg); max-width: 22ch; margin: 0 auto .5rem; font-size: clamp(2.2rem, 4.6vw, 3.6rem); letter-spacing: -.025em; font-style: italic; font-variation-settings: 'opsz' 60; }
.cta-dark p { color: rgba(247, 243, 233, .76); max-width: 56ch; margin: 0 auto 1.6rem; font-size: 1.05rem; }
.cta-tel {
  display: inline-block; font-family: var(--serif); font-weight: 500; font-style: italic;
  font-size: clamp(2.8rem, 7.2vw, 5.2rem);
  color: var(--bg); letter-spacing: -.03em; margin: 2rem 0 1.4rem;
  font-variant-numeric: tabular-nums; transition: color .2s ease;
  position: relative;
  font-variation-settings: 'opsz' 72;
}
.cta-tel::after { content: ""; position: absolute; left: 50%; bottom: -10px; transform: translateX(-50%); width: 64px; height: 2px; background: var(--gold); }
.cta-tel:hover { color: var(--gold-l); }

/* Footer */
.footer { background: var(--dark); color: rgba(247, 243, 233, .68); padding: clamp(64px, 7vw, 92px) 0 clamp(28px, 4vw, 40px); font-family: var(--sans); font-size: .9rem; border-top: 1px solid rgba(212, 164, 66, .25); }
.footer h4 { color: var(--bg); font-family: var(--sans); font-size: .76rem; text-transform: uppercase; letter-spacing: .14em; margin-bottom: 1.2rem; font-weight: 600; }
.footer a { color: rgba(247, 243, 233, .78); transition: color .15s; }
.footer a:hover { color: var(--gold-l); }
.footer-grid { display: grid; grid-template-columns: 1.6fr 1fr 1fr 1fr; gap: 2.6rem; }
.footer ul { list-style: none; margin: 0; padding: 0; display: grid; gap: .55rem; }
.footer .footer-brand { color: var(--bg); font-family: var(--serif); font-size: 1.55rem; line-height: 1.05; letter-spacing: -.025em; font-weight: 500; font-variation-settings: 'opsz' 36; }
.footer .footer-brand small { display: block; font-family: var(--sans); font-size: .7rem; letter-spacing: .12em; color: var(--gold-l); margin-top: .4rem; text-transform: uppercase; font-weight: 600; }
.footer-bottom { margin-top: 3rem; padding-top: 1.4rem; border-top: 1px solid rgba(247, 243, 233, .1); display: flex; justify-content: space-between; flex-wrap: wrap; gap: .6rem; font-size: .76rem; color: rgba(247, 243, 233, .45); letter-spacing: .02em; }
.footer-legal { color: rgba(247, 243, 233, .35); font-size: .72rem; font-variant-numeric: tabular-nums; }
@media (max-width: 880px) { .footer-grid { grid-template-columns: 1fr 1fr; gap: 2rem; } }
@media (max-width: 540px) { .footer-grid { grid-template-columns: 1fr; } }

/* Floating FAB */
.floating { position: fixed; right: 22px; bottom: 22px; z-index: 60; display: flex; flex-direction: column; gap: .8rem; align-items: flex-end; }
.fab { width: 60px; height: 60px; border-radius: 50%; display: grid; place-items: center; background: var(--urg); color: var(--bg); box-shadow: var(--shadow-urg); transition: transform .2s, background .2s; }
.fab:hover { transform: translateY(-3px) scale(1.04); background: var(--urg-d); }
@media (max-width: 540px) { .floating { left: 16px; right: 16px; bottom: 16px; flex-direction: row; align-items: stretch; } .floating .fab { display: none; } .floating .btn-mobile { display: flex; flex: 1; } body { padding-bottom: 88px; } }
@media (min-width: 541px) { .floating .btn-mobile { display: none; } }

/* Breadcrumb */
.breadcrumb { background: var(--bg-2); border-bottom: 1px solid var(--line-soft); padding: .8rem 0; font-size: .82rem; font-family: var(--sans); color: var(--ink-3); }
.breadcrumb-inner { display: flex; align-items: center; gap: .5rem; flex-wrap: wrap; }
.breadcrumb a { color: var(--ink-3); }
.breadcrumb a:hover { color: var(--bdx-d); }
.breadcrumb span[aria-current] { color: var(--bdx-d); font-weight: 600; }
.breadcrumb .sep { color: var(--ink-4); }

/* A11y */
:focus-visible { outline: 2px solid var(--gold); outline-offset: 3px; border-radius: 2px; }
.sr-only { position: absolute; width: 1px; height: 1px; padding: 0; overflow: hidden; clip: rect(0,0,0,0); white-space: nowrap; border: 0; }
@media (prefers-reduced-motion: reduce) { *, *::before, *::after { animation-duration: .01ms !important; transition-duration: .01ms !important; } }
