/* ════════════════════════════════════════════════════════════════
   Maison Plomberie 95 — Vert forêt × Crème chaude × Bronze gold
   « Entreprise depuis 1979 »
   Typo : DM Serif Display (titres) + Inter (corps)
   ════════════════════════════════════════════════════════════════ */

:root {
  /* Papiers crème chaude */
  --paper:     #F5F1E8;
  --paper-2:   #EDE6D2;
  --paper-3:   #E2D9BD;
  --surface:   #FFFFFF;
  --surface-2: #FAF6ED;

  /* Encres warm */
  --ink:       #1C2421;
  --ink-2:     #2D3530;
  --ink-3:     #5E635F;
  --ink-4:     #7D827A;
  --ink-5:     #A8AAA0;

  /* Vert forêt premium */
  --green:     #1F4E3F;
  --green-d:   #143A2D;
  --green-l:   #2D6856;
  --green-soft:#E0EBE4;
  --green-tint:#EEF4F0;

  /* Bronze / or vieilli */
  --gold:      #B07A2C;
  --gold-d:    #8E5F1F;
  --gold-l:    #D49E51;
  --gold-soft: #F5E8D3;
  --gold-tint: #FCF6E9;

  /* Lignes */
  --line:      #D9D1BD;
  --line-2:    #C2B796;
  --line-soft: #E8E1CC;

  /* Dark */
  --dark:      #0F1F1A;
  --dark-2:    #0A1410;

  /* Urgence (utilisée parcimonie) */
  --red:       #BF3B2D;

  --maxw:      1240px;
  --r-sm:      6px;
  --r:         10px;
  --r-lg:      16px;

  --serif: 'DM Serif Display', Georgia, 'Times New Roman', serif;
  --sans:  'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', system-ui, sans-serif;

  --shadow-sm:   0 1px 2px 0 rgba(31, 78, 63, .05);
  --shadow:      0 4px 14px -3px rgba(31, 78, 63, .1), 0 2px 6px -2px rgba(31, 78, 63, .05);
  --shadow-md:   0 18px 40px -12px rgba(31, 78, 63, .18), 0 6px 14px -8px rgba(31, 78, 63, .08);
  --shadow-gold: 0 14px 32px -10px rgba(176, 122, 44, .4);
  --shadow-green:0 12px 32px -10px rgba(31, 78, 63, .3);
}

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

/* Typographie */
h1, h2 {
  font-family: var(--serif);
  color: var(--green-d);
  margin: 0 0 .55em;
  letter-spacing: -.015em;
  line-height: 1.08;
  font-weight: 400;
}
h1 { font-size: clamp(2.6rem, 5.8vw, 4.6rem); letter-spacing: -.025em; line-height: 1.02; }
h2 { font-size: clamp(2rem, 3.8vw, 3.1rem); }
h1 em, h2 em { color: var(--gold); font-style: italic; font-weight: 400; }
h3 { font-family: var(--sans); font-size: clamp(1.18rem, 1.7vw, 1.4rem); font-weight: 700; letter-spacing: -.015em; line-height: 1.25; color: var(--green-d); margin: 0 0 .55em; }
h4 { font-family: var(--sans); font-size: 1rem; font-weight: 700; color: var(--green-d); }
p  { margin: 0 0 1rem; max-width: 64ch; color: var(--ink-2); }
em { font-style: italic; color: var(--gold); font-weight: 500; }
strong { font-weight: 700; 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(--paper-2); border-block: 1px solid var(--line-soft); }
.section--cream { background: var(--surface-2); }
.section--dark { background: var(--dark); color: var(--paper); }
.section--dark h2, .section--dark h3 { color: var(--paper); }
.section--dark p { color: rgba(245, 241, 232, .72); }

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

.lead { font-family: var(--serif); font-style: italic; font-weight: 400; font-size: clamp(1.22rem, 1.8vw, 1.55rem); color: var(--ink); line-height: 1.4; max-width: 38ch; margin: 1.4rem 0; }

.ornament, .rule-double, .chapter-no, .scribble::after, .marquee, .photo-strip,
.hero-since, .hero-issue, .hero-stamp { display: none; }

/* Boutons */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: .55rem;
  padding: 1rem 1.7rem;
  font-family: var(--sans); font-weight: 600; font-size: .98rem;
  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-primary  { background: var(--gold); color: var(--paper); box-shadow: var(--shadow-gold); font-weight: 700; border-color: var(--gold-d); }
.btn-primary:hover { background: var(--gold-d); }
.btn-green    { background: var(--green); color: var(--paper); box-shadow: var(--shadow-green); font-weight: 700; }
.btn-green:hover { background: var(--green-d); }
.btn-ghost    { background: transparent; color: var(--green-d); border-color: var(--green-d); }
.btn-ghost:hover { background: var(--green-d); color: var(--paper); }
.btn-outline  { background: transparent; color: var(--gold-d); border-color: var(--gold-d); }
.btn-outline:hover { background: var(--gold-d); color: var(--paper); }
.btn-cream    { background: var(--paper); color: var(--green-d); border-color: var(--paper); font-weight: 700; }
.btn-cream:hover { background: var(--gold); color: var(--paper); border-color: var(--gold); }
.btn-urgent, .btn-gold, .btn-accent { background: var(--gold); color: var(--paper); box-shadow: var(--shadow-gold); }
.btn-urgent:hover, .btn-gold:hover, .btn-accent:hover { background: var(--gold-d); }
.btn-lg { padding: 1.15rem 2rem; font-size: 1.04rem; }
.btn-arrow::after { content: "→"; margin-left: .15rem; transition: transform .25s; }
.btn-arrow:hover::after { transform: translateX(4px); }

/* Topbar — vert profond */
.topbar { background: var(--dark); color: rgba(245, 241, 232, .82); font-size: .82rem; padding: .6rem 0; font-variant-numeric: tabular-nums; border-bottom: 1px solid rgba(176, 122, 44, .2); }
.topbar-inner { display: flex; justify-content: space-between; align-items: center; gap: 1rem; }
.topbar a { color: var(--paper); font-weight: 600; transition: color .2s; }
.topbar a:hover { color: var(--gold-l); }
.topbar .est { color: var(--paper); font-weight: 600; }
.topbar .glyph { color: var(--gold-l); margin: 0 .55rem; }
.topbar .pulse { display: inline-block; width: 8px; height: 8px; background: var(--gold-l); border-radius: 50%; animation: pulse 2.4s infinite; margin-right: .6rem; }
@keyframes pulse { 0% { box-shadow: 0 0 0 0 rgba(212, 158, 81, .65); } 70% { box-shadow: 0 0 0 9px rgba(212, 158, 81, 0); } 100% { box-shadow: 0 0 0 0 rgba(212, 158, 81, 0); } }
@media (prefers-reduced-motion: reduce) { .topbar .pulse { animation: none; } }
@media (max-width: 700px) { .topbar .desktop { display: none; } }

/* Header sticky */
.header { position: sticky; top: 0; z-index: 50; background: rgba(245, 241, 232, .92); 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: 1rem; color: var(--green-d); }
.logo-mark {
  width: 46px; height: 46px;
  display: grid; place-items: center;
  background: var(--green-d); color: var(--paper);
  font-family: var(--serif); font-weight: 400; font-style: italic;
  font-size: 1.05rem; letter-spacing: -.02em;
  border-radius: 8px;
  position: relative;
  box-shadow: var(--shadow-green);
}
.logo-mark::after {
  content: ""; position: absolute; bottom: -4px; left: 50%; transform: translateX(-50%);
  width: 24px; height: 2px; background: var(--gold);
}
.logo-name { font-family: var(--serif); font-weight: 400; font-size: 1.45rem; line-height: 1.05; letter-spacing: -.025em; color: var(--green-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: .94rem; color: var(--ink-3); padding: .4rem 0; position: relative; transition: color .15s ease; }
.nav a:hover { color: var(--green-d); }
.nav a[aria-current="page"] { color: var(--green-d); font-weight: 700; }
.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(--paper); border: 1.5px solid var(--green-d); color: var(--green-d); padding: .55rem .95rem; cursor: pointer; font: 700 .9rem 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(--paper); 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: .55rem; padding: .85rem 1.3rem; background: var(--gold); color: var(--paper); font-family: var(--sans); font-weight: 700; font-size: .98rem; font-variant-numeric: tabular-nums; border-radius: var(--r-sm); box-shadow: var(--shadow-gold); transition: background .2s, transform .12s; }
.header-tel:hover { background: var(--gold-d); transform: translateY(-1px); }
@media (max-width: 540px) { .header-tel .tel-txt { display: none; } }

/* Hero — fond crème avec halo gold + green */
.hero {
  background: var(--paper);
  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(176, 122, 44, .15) 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(31, 78, 63, .12) 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; }
.hero-badge {
  display: inline-flex; align-items: center; gap: .55rem;
  padding: .5rem 1rem;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 999px;
  font-family: var(--sans); font-size: .8rem; font-weight: 600;
  color: var(--green-d); margin-bottom: 1.6rem;
  box-shadow: var(--shadow-sm);
}
.hero-badge .dot { width: 7px; height: 7px; background: var(--gold); border-radius: 50%; }
.hero-badge .est { color: var(--gold-d); font-weight: 700; }

.hero h1 { max-width: 14ch; margin: 0 0 .45em; color: var(--green-d); }
.hero-lead { font-family: var(--serif); font-style: italic; font-weight: 400; font-size: clamp(1.25rem, 1.85vw, 1.55rem); color: var(--ink); line-height: 1.4; margin: 1.4rem 0 0; max-width: 36ch; }
.hero-sub { font-family: var(--sans); font-size: 1.06rem; color: var(--ink-3); line-height: 1.6; margin: 1.4rem 0 0; max-width: 54ch; font-weight: 400; }
.hero-cta { display: flex; gap: .8rem; flex-wrap: wrap; margin-top: 2.4rem; }
.hero-meta { display: flex; align-items: center; gap: 2rem; 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: 700; font-variant-numeric: tabular-nums; }
.hero-meta .ic-check { color: var(--gold); }

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

.floating-tag { position: absolute; left: 16px; bottom: 16px; background: var(--paper); 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: .82rem; font-weight: 600; border: 1px solid var(--line); }
.floating-tag .ic { width: 34px; height: 34px; background: var(--gold-soft); color: var(--gold-d); border-radius: var(--r-sm); display: grid; place-items: center; }
.floating-tag .lbl { color: var(--ink-3); font-weight: 500; font-size: .72rem; display: block; text-transform: uppercase; letter-spacing: .06em; }
.floating-tag .val { font-family: var(--serif); font-weight: 400; color: var(--green-d); font-size: 1.18rem; font-variant-numeric: tabular-nums; letter-spacing: -.02em; display: block; }
.floating-stat { position: absolute; right: 16px; top: 16px; background: var(--green-d); color: var(--paper); padding: .95rem 1.2rem; border-radius: var(--r); box-shadow: var(--shadow-md); text-align: right; }
.floating-stat .big { font-family: var(--serif); font-size: 1.5rem; font-weight: 400; color: var(--paper); line-height: 1; letter-spacing: -.02em; font-variant-numeric: tabular-nums; }
.floating-stat .big .star { color: var(--gold-l); margin-right: .15rem; }
.floating-stat .sub { font-family: var(--sans); font-size: .72rem; color: rgba(245, 241, 232, .7); font-weight: 500; margin-top: .25rem; }

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

/* Process */
.process { background: var(--surface-2); 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.2rem, 4vw, 3.2rem) clamp(1.6rem, 2.5vw, 2.4rem); display: flex; gap: 1.4rem; 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: 3px; background: transparent; transition: background .2s; }
.process-step:hover::before { background: var(--gold); }
.process-step:hover { background: var(--paper); }
.process-step .step-no { font-family: var(--serif); font-weight: 400; font-style: italic; font-size: 2.4rem; color: var(--gold); font-variant-numeric: tabular-nums; letter-spacing: -.02em; line-height: 1; min-width: 62px; }
.process-step h3 { margin: 0 0 .4rem; font-size: 1.18rem; font-weight: 700; color: var(--green-d); }
.process-step p { margin: 0; font-size: .96rem; color: var(--ink-3); line-height: 1.6; 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; } }

/* Trust */
.trust { background: var(--paper-2); border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.trust-inner { display: grid; grid-template-columns: repeat(4, 1fr); padding: clamp(36px, 5vw, 60px) 0; gap: 1rem; }
.stat { padding: 0 1.4rem; text-align: center; }
.stat .num { font-family: var(--serif); font-weight: 400; font-size: clamp(2rem, 3.4vw, 3rem); color: var(--green-d); line-height: 1; letter-spacing: -.025em; font-variant-numeric: tabular-nums; }
.stat .num em { font-style: italic; color: var(--gold); }
.stat .lbl { font-family: var(--sans); font-weight: 500; font-size: .82rem; color: var(--ink-3); margin-top: .8rem; letter-spacing: .06em; }
.stat + .stat { border-left: 1px solid var(--line-2); }
@media (max-width: 760px) { .trust-inner { grid-template-columns: repeat(2, 1fr); gap: 1.8rem 0; } .stat:nth-child(3), .stat:nth-child(4) { border-top: 1px solid var(--line-2); padding-top: 1.8rem; } .stat:nth-child(3) { border-left: 0; } }

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

/* Grilles */
.grid { display: grid; gap: clamp(1rem, 1.8vw, 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; } }

/* Cartes */
.card {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  padding: clamp(1.8rem, 2.4vw, 2.4rem);
  transition: transform .2s, box-shadow .25s, border-color .2s;
  display: flex; flex-direction: column;
  min-height: 290px;
  position: relative;
  overflow: hidden;
}
.card::before { content: ""; position: absolute; left: 0; top: 0; height: 100%; width: 3px; background: transparent; transition: background .25s; }
.card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); border-color: var(--green); }
.card:hover::before { background: var(--gold); }
.card .ic { display: grid; place-items: center; width: 54px; height: 54px; background: var(--green-soft); color: var(--green-d); border-radius: var(--r-sm); margin-bottom: 1.3rem; transition: background .2s, color .2s; }
.card:hover .ic { background: var(--green-d); color: var(--paper); }
.card h3 { margin: 0 0 .6rem; font-family: var(--serif); font-size: 1.32rem; font-weight: 400; letter-spacing: -.02em; line-height: 1.2; color: var(--green-d); }
.card p { margin: 0; color: var(--ink-3); font-size: .98rem; line-height: 1.65; max-width: none; }
.card a.card-cta { margin-top: auto; padding-top: 1.5rem; font-family: var(--sans); font-weight: 700; font-size: .82rem; color: var(--gold-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 équipement */
.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(--green); }
.feature-img { margin: 0; aspect-ratio: 16/10; overflow: hidden; background: var(--paper-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.02) hue-rotate(-3deg); }
.feature-tile:hover .feature-img img { transform: scale(1.05); }
.feature-body { padding: clamp(1.7rem, 2.4vw, 2.2rem); }
.feature-body h3 { margin: 0 0 .6rem; font-family: var(--serif); font-size: 1.42rem; font-weight: 400; letter-spacing: -.02em; color: var(--green-d); }
.feature-body p { margin: 0 0 1.4rem; color: var(--ink-3); font-size: .98rem; line-height: 1.65; max-width: none; }

/* CTA band — vert profond avec gold */
.cta-band { background: linear-gradient(135deg, var(--green-d) 0%, var(--dark) 100%); color: var(--paper); 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(176, 122, 44, .25), transparent 50%), radial-gradient(circle at 5% 100%, rgba(212, 158, 81, .12), 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(--paper); font-size: clamp(1.6rem, 2.4vw, 2.2rem); margin: 0; font-weight: 400; max-width: 28ch; letter-spacing: -.02em; }
.cta-band p { color: rgba(245, 241, 232, .82); margin: .35rem 0 0; max-width: 50ch; font-size: 1rem; }
.cta-band .btn-cream { background: var(--gold); color: var(--paper); border-color: var(--gold); }
.cta-band .btn-cream:hover { background: var(--paper); color: var(--green-d); border-color: var(--paper); }

/* Story split */
.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(--paper-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.02) hue-rotate(-3deg); }
.story-img::after { content: "Maison · 1979"; position: absolute; left: 14px; bottom: 14px; background: var(--gold); color: var(--paper); padding: .5rem .9rem; border-radius: var(--r-sm); font-family: var(--sans); font-size: .76rem; font-weight: 700; letter-spacing: .14em; text-transform: uppercase; }
.story-text p { font-size: 1.05rem; color: var(--ink-2); line-height: 1.75; max-width: 56ch; }
.story-text p.lead { font-family: var(--serif); font-style: italic; font-weight: 400; font-size: clamp(1.32rem, 1.95vw, 1.7rem); color: var(--green-d); margin-bottom: 1.4rem; line-height: 1.35; max-width: 30ch; }
.drop-cap::first-letter { font-family: var(--serif); font-size: 4.2rem; float: left; line-height: .85; padding: .15rem .55rem 0 0; color: var(--gold); font-weight: 400; }

/* Timeline */
.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(--green-d); }
.tl-step { padding: 2.2rem 1.7rem 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: 400;
  font-size: 2.2rem; color: var(--gold);
  font-variant-numeric: tabular-nums;
  letter-spacing: -.025em; line-height: 1;
  display: inline-block; margin-bottom: 1.2rem;
}
.tl-step .num::before { content: "0" counter(step); }
.tl-step h3 { margin: 0 0 .6rem; font-family: var(--serif); font-size: 1.22rem; font-weight: 400; color: var(--green-d); }
.tl-step p { margin: 0; color: var(--ink-3); font-size: .95rem; line-height: 1.65; max-width: none; }
.tl-step::after { display: 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.02) hue-rotate(-3deg); }
.photo-band figcaption { position: absolute; left: clamp(24px, 5vw, 50px); bottom: clamp(24px, 5vw, 44px); background: var(--green-d); color: var(--paper); 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: 700; margin-right: .45rem; }

/* Zones grid */
.zones-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 0; border-top: 1px solid var(--green-d); font-family: var(--serif); font-size: 1.1rem; font-weight: 400; }
@media (max-width: 760px) { .zones-grid { grid-template-columns: repeat(2, 1fr); } }
.zones-grid a { display: flex; justify-content: space-between; align-items: baseline; border-bottom: 1px solid var(--line); padding: 1.05rem 1.2rem 1.05rem 0; color: var(--green-d); transition: background .15s, padding .25s, color .15s; letter-spacing: -.015em; }
.zones-grid a:hover { color: var(--gold-d); padding-left: .8rem; background: var(--gold-tint); }
.zones-grid a small { font-family: var(--sans); font-size: .78rem; color: var(--ink-4); font-weight: 500; font-variant-numeric: tabular-nums; letter-spacing: .04em; }

/* Reviews — pull quote éditorial */
.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.2rem 0 0; background: transparent; border: 0; display: flex; flex-direction: column; }
.review::before { content: "“"; font-family: var(--serif); font-style: italic; position: absolute; top: -.5rem; left: -.4rem; font-size: 5.5rem; line-height: 1; color: var(--gold); font-weight: 400; background: transparent; width: auto; height: auto; padding: 0; }
.review-txt { font-family: var(--serif); font-style: italic; font-weight: 400; font-size: 1.18rem; color: var(--ink); line-height: 1.5; margin: 1.6rem 0 1.4rem; }
.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: 700; font-size: .92rem; color: var(--green-d); display: block; letter-spacing: -.005em; }
.review-where { font-family: var(--sans); font-size: .82rem; color: var(--ink-3); margin-top: .2rem; display: block; }

/* FAQ */
.faq { max-width: 840px; margin: 0 auto; }
.faq details { background: var(--surface); border: 1px solid var(--line); border-radius: var(--r); margin-bottom: .8rem; padding: 0 1.6rem; 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(176, 122, 44, .25); }
.faq summary { list-style: none; cursor: pointer; display: flex; justify-content: space-between; align-items: center; gap: 1rem; padding: 1.3rem 0; font-family: var(--serif); font-weight: 400; font-size: clamp(1.1rem, 1.5vw, 1.25rem); color: var(--green-d); line-height: 1.35; letter-spacing: -.015em; }
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after { content: "+"; font-family: var(--serif); font-style: italic; font-size: 1.7rem; font-weight: 400; color: var(--gold); 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.65; max-width: none; }

/* CTA dark */
.cta-dark { background: var(--dark); color: var(--paper); 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(176, 122, 44, .22), transparent 55%), radial-gradient(circle at 100% 100%, rgba(31, 78, 63, .3), 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(--paper); max-width: 20ch; margin: 0 auto .5rem; font-size: clamp(2.2rem, 4.6vw, 3.6rem); letter-spacing: -.025em; font-style: italic; }
.cta-dark p { color: rgba(245, 241, 232, .76); max-width: 56ch; margin: 0 auto 1.6rem; font-size: 1.05rem; }
.cta-tel {
  display: inline-block; font-family: var(--serif); font-weight: 400; font-style: italic;
  font-size: clamp(2.8rem, 7.2vw, 5.2rem);
  color: var(--paper); letter-spacing: -.03em; margin: 2rem 0 1.4rem;
  font-variant-numeric: tabular-nums; transition: color .2s ease;
  position: relative;
}
.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-2); color: rgba(245, 241, 232, .68); padding: clamp(64px, 7vw, 92px) 0 clamp(28px, 4vw, 40px); font-family: var(--sans); font-size: .92rem; border-top: 1px solid rgba(176, 122, 44, .2); }
.footer h4 { color: var(--paper); font-family: var(--sans); font-size: .78rem; text-transform: uppercase; letter-spacing: .14em; margin-bottom: 1.2rem; font-weight: 700; }
.footer a { color: rgba(245, 241, 232, .78); transition: color .15s; }
.footer a:hover { color: var(--gold-l); }
.footer-grid { display: grid; grid-template-columns: 1.7fr 1fr 1fr 1fr; gap: 2.6rem; }
.footer ul { list-style: none; margin: 0; padding: 0; display: grid; gap: .55rem; }
.footer .footer-brand { color: var(--paper); font-family: var(--serif); font-size: 1.5rem; line-height: 1.05; letter-spacing: -.022em; font-weight: 400; }
.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(245, 241, 232, .1); display: flex; justify-content: space-between; flex-wrap: wrap; gap: .6rem; font-size: .78rem; color: rgba(245, 241, 232, .45); letter-spacing: .02em; }
@media (max-width: 880px) { .footer-grid { grid-template-columns: 1fr 1fr; gap: 2rem; } }
@media (max-width: 540px) { .footer-grid { grid-template-columns: 1fr; } }

/* Floating */
.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(--gold); color: var(--paper); box-shadow: var(--shadow-gold); transition: transform .2s, background .2s; }
.fab:hover { transform: translateY(-3px) scale(1.04); background: var(--gold-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; } }

/* 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; } }

/* Reveal */
.reveal { opacity: 0; transform: translateY(16px); transition: opacity .7s cubic-bezier(.22,.61,.36,1), transform .7s cubic-bezier(.22,.61,.36,1); }
.reveal.in { opacity: 1; transform: none; }

/* Heritage band — element distinctif "depuis 1979" */
.heritage-band { background: var(--green-d); color: var(--paper); padding: clamp(28px, 4vw, 44px) 0; border-block: 2px solid var(--gold); position: relative; }
.heritage-band-inner { display: flex; align-items: center; justify-content: center; gap: clamp(2rem, 5vw, 5rem); flex-wrap: wrap; text-align: center; }
.heritage-band .hb-num { font-family: var(--serif); font-size: clamp(2.2rem, 3.5vw, 3rem); color: var(--gold-l); font-weight: 400; line-height: 1; font-variant-numeric: tabular-nums; letter-spacing: -.02em; }
.heritage-band .hb-num em { font-style: italic; }
.heritage-band .hb-lbl { font-family: var(--sans); font-size: .82rem; color: rgba(245, 241, 232, .75); margin-top: .35rem; text-transform: uppercase; letter-spacing: .14em; font-weight: 600; }
.heritage-band .hb-item { display: flex; flex-direction: column; align-items: center; }
.heritage-band .hb-sep { width: 1px; height: 48px; background: rgba(176, 122, 44, .35); }
@media (max-width: 760px) { .heritage-band .hb-sep { display: none; } }
