/* ═══════════════════════════════════════════
   PRESSING MAR VIVO — Feuille de style partagée
   ═══════════════════════════════════════════ */

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --w:    #ffffff;
  --off:  #f7f3ee;
  --crm:  #ede7dc;
  --deep: #0c2842;
  --ocn:  #2e6db4;
  --tel:  #2a6bb0;
  --aqv:  #7fb6e6;
  --wrm:  #e6ad5c;
  --tx:   #1c2b36;
  --txm:  #3a5668;
  --txl:  #6b8494;
  --bdr:  #ddd5c8;
  --r:    10px;
  --sh:   0 3px 20px rgba(12,37,52,.08);
  --shl:  0 10px 44px rgba(12,37,52,.15);
  --fd:   'Cormorant Garamond', Georgia, serif;
  --fb:   'DM Sans', system-ui, sans-serif;
  --mx:   1160px;
}

html { scroll-behavior: smooth; }
body { font-family: var(--fb); color: var(--tx); background: var(--w); overflow-x: hidden; line-height: 1.68; }
img  { display: block; max-width: 100%; }
a    { color: inherit; }

/* Accessibilité : focus clavier visible + lien d'évitement */
:focus-visible { outline: 3px solid var(--aqv); outline-offset: 2px; border-radius: 3px; }
.skip {
  position: absolute; left: -999px; top: 0; z-index: 500;
  background: var(--deep); color: #fff; padding: .7rem 1.1rem;
  border-radius: 0 0 8px 0; font-size: .85rem; font-weight: 600; text-decoration: none;
}
.skip:focus { left: 0; }

/* Bouton d'appel flottant (mobile) */
.call-fab { display: none; }
@media (max-width: 768px) {
  .call-fab {
    display: flex; align-items: center; justify-content: center;
    position: fixed; right: 16px; bottom: 16px; z-index: 300;
    width: 58px; height: 58px; border-radius: 50%;
    background: var(--wrm); color: var(--deep);
    box-shadow: 0 7px 22px rgba(12,40,66,.4);
    text-decoration: none;
  }
  .call-fab svg { width: 25px; height: 25px; }
}

/* ── CONTAINER ── */
.ctr { width: 100%; max-width: var(--mx); margin: 0 auto; padding: 0 2rem; }

/* ══════════════════════════════════════════
   NAVIGATION
══════════════════════════════════════════ */
.nav {
  position: sticky; top: 0; z-index: 200;
  background: var(--w);
  border-bottom: 1px solid var(--bdr);
  height: 68px;
}
.nav-in {
  height: 100%;
  display: flex; align-items: center; gap: 1.5rem;
}
.nav-logo {
  font-family: var(--fd); font-size: 1.5rem; font-weight: 600;
  letter-spacing: .02em; color: var(--deep); text-decoration: none;
  flex-shrink: 0; margin-right: auto;
  white-space: nowrap;
  display: flex; align-items: center; gap: .55rem;
}
.nav-logo span { color: var(--tel); }
.nav-logo img  { height: 44px; width: 44px; object-fit: contain; flex-shrink: 0; border-radius: 10px; }

.nav-ul { display: flex; align-items: center; gap: .1rem; list-style: none; }
.nav-ul li a {
  display: block; padding: .48rem 1rem;
  font-size: .835rem; font-weight: 500; letter-spacing: .04em;
  color: var(--txm); text-decoration: none; border-radius: 6px;
  transition: color .22s, background .22s;
  white-space: nowrap;
}
.nav-ul li a:hover,
.nav-ul li a.active { color: var(--ocn); background: rgba(46,109,180,.07); }

.nav-phone {
  display: flex; align-items: center; gap: .42rem; flex-shrink: 0;
  font-size: .835rem; font-weight: 600; letter-spacing: .01em;
  color: var(--ocn); text-decoration: none;
  border: 1.5px solid rgba(46,109,180,.28);
  padding: .42rem 1.05rem; border-radius: 50px;
  transition: all .22s;
}
.nav-phone:hover { background: var(--ocn); color: var(--w); border-color: var(--ocn); }
.nav-phone svg { width: 13px; height: 13px; }

.nav-burger {
  display: none; flex-direction: column; gap: 5px; cursor: pointer;
  padding: 5px; margin-left: auto;
  background: none; border: none; appearance: none;
}
.nav-burger span {
  display: block; width: 22px; height: 2px;
  background: var(--tx); border-radius: 2px; transition: all .3s;
}

/* ══════════════════════════════════════════
   HERO — split éditorial (page d'accueil)
══════════════════════════════════════════ */
.hero { position: relative; overflow: hidden; background: var(--deep); }
.hero-grid {
  display: grid;
  grid-template-columns: 1.06fr 0.94fr;
  min-height: 92vh;
}

/* ── Panneau gauche (océan) ── */
.hero-copy {
  position: relative; z-index: 2;
  display: flex; flex-direction: column; justify-content: center;
  padding: 5rem clamp(2rem, 5.5vw, 5.5rem) 7rem;
  background: linear-gradient(158deg, var(--deep) 0%, #1a4c7e 54%, #2e6db4 100%);
}
.hero-copy::before {
  content: '';
  position: absolute; inset: 0;
  background: radial-gradient(ellipse 90% 60% at 25% 25%, rgba(127,182,230,.20) 0%, transparent 70%);
  pointer-events: none;
}
.hero-copy > * { position: relative; }

.hero-badge {
  display: inline-flex; align-items: center; gap: .55rem; align-self: flex-start;
  background: rgba(255,255,255,.08); border: 1px solid rgba(255,255,255,.22);
  border-radius: 50px; padding: .4rem 1.1rem;
  font-size: .7rem; font-weight: 600; letter-spacing: .15em; text-transform: uppercase;
  color: rgba(255,255,255,.85); margin-bottom: 2rem;
  opacity: 0; animation: au .7s ease .1s forwards;
}
.hero-badge svg { width: 14px; height: 14px; color: var(--aqv); }

.hero-h1 {
  font-family: var(--fd);
  font-size: clamp(2.9rem, 5.2vw, 4.9rem);
  font-weight: 300; color: var(--w); line-height: 1.04; letter-spacing: -.015em;
  margin-bottom: 1.3rem;
  opacity: 0; animation: au .7s ease .25s forwards;
}
.hero-h1 em { font-style: italic; font-weight: 400; color: var(--aqv); }

.hero-p {
  font-size: clamp(1rem, 1.5vw, 1.12rem);
  font-weight: 300; line-height: 1.75;
  color: rgba(255,255,255,.72); max-width: 30rem; margin-bottom: 2.4rem;
  opacity: 0; animation: au .7s ease .4s forwards;
}
.hero-p strong { color: var(--aqv); font-weight: 600; }

.hero-btns {
  display: flex; flex-wrap: wrap; gap: 1rem;
  opacity: 0; animation: au .7s ease .55s forwards;
}

.hero-trust {
  display: flex; gap: 2.4rem; margin-top: 3rem;
  padding-top: 2.2rem; border-top: 1px solid rgba(255,255,255,.12);
  opacity: 0; animation: au .7s ease .7s forwards;
}
.hero-trust div { display: flex; flex-direction: column; gap: .15rem; }
.hero-trust strong {
  font-family: var(--fd); font-size: 1.5rem; font-weight: 500; color: var(--aqv); line-height: 1;
}
.hero-trust span {
  font-size: .72rem; font-weight: 500; letter-spacing: .08em; text-transform: uppercase;
  color: rgba(255,255,255,.74);
}

/* ── Panneau droite (image) ── */
.hero-visual { position: relative; z-index: 3; }
.hero-visual img {
  position: absolute; inset: 0; width: 100%; height: 100%;
  object-fit: cover; object-position: center;
  opacity: 0; animation: heroimg 1.2s ease .15s forwards;
}
@keyframes heroimg { from { opacity:0; } to { opacity:1; } }

/* Carte avis flottante */
.hero-rating {
  position: absolute; left: -56px; bottom: 12%; z-index: 3;
  display: flex; flex-direction: column; gap: .5rem;
  max-width: 270px; padding: 1.3rem 1.5rem;
  background: rgba(255,255,255,.92); backdrop-filter: blur(8px);
  border-radius: 14px; box-shadow: var(--shl);
  opacity: 0; animation: au .8s ease .95s forwards;
}
.hero-rating-stars { display: flex; gap: .15rem; color: var(--wrm); }
.hero-rating-stars svg { width: 16px; height: 16px; }
.hero-rating-ico { width: 44px; height: 44px; border-radius: 12px; background: rgba(46,109,180,.12); display: flex; align-items: center; justify-content: center; }
.hero-rating-ico svg { width: 23px; height: 23px; color: var(--ocn); }
.hero-rating p { font-family: var(--fd); font-size: 1.18rem; font-weight: 500; color: var(--deep); line-height: 1.3; }
.hero-rating p em { font-style: italic; color: var(--ocn); }
.hero-rating span { font-size: .72rem; font-weight: 600; letter-spacing: .06em; text-transform: uppercase; color: var(--txl); }

.hero-wave { position: absolute; bottom: -1px; left: 0; right: 0; z-index: 4; overflow: hidden; line-height: 0; pointer-events: none; }
.hero-wave svg { display: block; width: 100%; }

@keyframes au   { from { opacity:0; transform:translateY(20px); } to { opacity:1; transform:none; } }

@media (max-width: 860px) {
  .hero-grid { grid-template-columns: 1fr; min-height: auto; }
  .hero-copy { padding: 4.5rem 2rem 5.5rem; }
  .hero-visual { height: 56vh; min-height: 360px; }
  .hero-visual img { position: relative; }
  .hero-rating { left: 50%; transform: translateX(-50%); bottom: 1.5rem; }
  .hero-rating { animation: auc .8s ease .95s forwards; }
  @keyframes auc { from { opacity:0; transform: translate(-50%, 20px); } to { opacity:1; transform: translateX(-50%); } }
}

/* ══════════════════════════════════════════
   EN-TÊTE DE PAGE (pages internes)
══════════════════════════════════════════ */
.pghead {
  background: linear-gradient(150deg, var(--deep) 0%, #1a4c7e 60%, #2e6db4 100%);
  padding: 5rem 2rem 6.5rem;
  text-align: center; position: relative; overflow: hidden;
}
.pghead::before {
  content: ''; position: absolute; inset: 0;
  background: radial-gradient(ellipse 70% 60% at 50% 18%, rgba(127,182,230,.20) 0%, transparent 70%);
  pointer-events: none;
}
/* Filigrane cintre */
.pghead::after {
  content: ''; position: absolute; right: -30px; top: 50%; transform: translateY(-50%) rotate(-8deg);
  width: 300px; height: 300px; opacity: .06; pointer-events: none;
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 120 96' fill='none' stroke='%23ffffff' stroke-width='4' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M60 26 V15 a5 5 0 1 1 5 5'/%3E%3Cpath d='M60 26 L20 60 a4 4 0 0 0 2.6 7 H97.4 a4 4 0 0 0 2.6 -7 Z'/%3E%3C/svg%3E") no-repeat center / contain;
}
.pghead-wave { position: absolute; bottom: -1px; left: 0; right: 0; z-index: 2; overflow: hidden; line-height: 0; }
.pghead-wave svg { display: block; width: 100%; }

.pghead-inner { position: relative; z-index: 1; }

.pghead-crumb {
  display: inline-flex; align-items: center;
  font-size: .7rem; font-weight: 600; letter-spacing: .16em; text-transform: uppercase;
  color: rgba(255,255,255,.5); margin-bottom: 1.1rem;
}
.pghead-crumb a { color: var(--aqv); text-decoration: none; transition: color .2s; }
.pghead-crumb a:hover { color: var(--w); }
.pghead-crumb a::after { content: '/'; color: rgba(255,255,255,.3); margin: 0 .55rem; }

.pghead h1 {
  font-family: var(--fd);
  font-size: clamp(2.3rem, 5vw, 3.5rem);
  font-weight: 300; color: var(--w);
  letter-spacing: -.015em; line-height: 1.12;
}
.pghead h1 em { font-style: italic; color: var(--aqv); }
.pghead-sub {
  font-size: clamp(.92rem, 1.4vw, 1.02rem);
  font-weight: 400; color: rgba(255,255,255,.85);
  max-width: 30rem; margin: 1.1rem auto 0; line-height: 1.7;
}
.pghead-rule { display: block; width: 46px; height: 2px; margin: 1.4rem auto 0; border-radius: 2px; background: linear-gradient(90deg, var(--tel), var(--aqv)); }

/* ══════════════════════════════════════════
   SECTIONS
══════════════════════════════════════════ */
.sec      { padding: 5.5rem 0; }
.sec-grey { background: var(--off); }
.sec-crm  { background: var(--crm); }
.sec-dark { background: var(--deep); }

.sec-lbl {
  display: block; font-size: .69rem; font-weight: 600;
  letter-spacing: .22em; text-transform: uppercase;
  color: var(--tel); margin-bottom: .8rem;
}
.sec-ttl {
  font-family: var(--fd);
  font-size: clamp(1.85rem, 3.4vw, 2.75rem);
  font-weight: 400; color: var(--deep); line-height: 1.2;
}
.sec-ttl em { font-style: italic; color: var(--ocn); }
.sec-rule { display: block; width: 40px; height: 2px; background: linear-gradient(90deg,var(--tel),var(--aqv)); border-radius: 2px; margin-top: .8rem; }
.sec-hdr { margin-bottom: 3.2rem; }
.sec-hdr.ctr-txt { text-align: center; }
.sec-hdr.ctr-txt .sec-rule { margin-left: auto; margin-right: auto; }

/* ══════════════════════════════════════════
   BOUTONS
══════════════════════════════════════════ */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: .5rem;
  padding: .85rem 2.1rem; border-radius: 7px;
  font-family: var(--fb); font-size: .875rem; font-weight: 500; letter-spacing: .03em;
  text-decoration: none; cursor: pointer; border: none; line-height: 1;
  transition: all .24s;
}
.btn-pri  { background: var(--wrm); color: var(--deep); font-weight: 600; box-shadow: 0 4px 18px rgba(207,146,79,.34); }
.btn-pri:hover  { background: #d89f5e; transform: translateY(-1px); box-shadow: 0 7px 24px rgba(207,146,79,.44); }
.btn-sec  { background: var(--w); color: var(--ocn); border: 1.5px solid rgba(46,109,180,.28); }
.btn-sec:hover  { border-color: var(--ocn); background: rgba(46,109,180,.04); }
.btn-gst  { background: rgba(255,255,255,.1); color: var(--w); border: 1.5px solid rgba(255,255,255,.3); }
.btn-gst:hover  { background: rgba(255,255,255,.2); border-color: rgba(255,255,255,.55); }
.btn-tel  { background: var(--tel); color: var(--w); }
.btn-tel:hover  { background: #235a96; }
.btn-sm   { padding: .6rem 1.35rem; font-size: .82rem; }

/* ══════════════════════════════════════════
   CARTES SERVICES (Accueil)
══════════════════════════════════════════ */
.svc-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.4rem;
}
.svc-card {
  background: var(--w); border: 1px solid var(--bdr);
  border-radius: var(--r); overflow: hidden;
  box-shadow: var(--sh);
  transition: transform .32s, box-shadow .32s;
  display: flex; flex-direction: column;
}
.svc-card:hover { transform: translateY(-6px); box-shadow: var(--shl); }

.svc-img {
  height: 172px; position: relative; overflow: hidden;
  display: flex; align-items: center; justify-content: center;
}
.svc-img-sec   { background: linear-gradient(140deg, #0d2534, #1a5a74); }
.svc-img-blanc { background: linear-gradient(140deg, #0f2e3e, #1e6f82); }
.svc-img-ret   { background: linear-gradient(140deg, #1a2e28, #227060); }
.svc-img-cuir  { background: linear-gradient(140deg, #2a1e18, #5c3828); }
.svc-img svg   { width: 52px; height: 52px; color: rgba(255,255,255,.3); }
.svc-img img   { width: 100%; height: 100%; object-fit: cover; transition: transform .5s ease; }
.svc-card:hover .svc-img img { transform: scale(1.07); }

.svc-body { padding: 1.5rem 1.4rem; flex: 1; display: flex; flex-direction: column; }
.svc-body h3 {
  font-family: var(--fd); font-size: 1.28rem; font-weight: 500;
  color: var(--deep); margin-bottom: .45rem;
}
.svc-body p { font-size: .865rem; color: var(--txl); line-height: 1.7; flex: 1; margin-bottom: 1.1rem; }
.svc-lnk {
  font-size: .81rem; font-weight: 600; letter-spacing: .04em;
  color: var(--ocn); text-decoration: none;
  display: inline-flex; align-items: center; gap: .35rem;
  transition: gap .2s, color .2s;
}
.svc-lnk:hover { color: var(--tel); gap: .6rem; }
.svc-lnk svg { width: 14px; height: 14px; }

/* ══════════════════════════════════════════
   BANDE STATS
══════════════════════════════════════════ */
.stats-band { background: var(--deep); padding: 3rem 0; }
.stats-grid { display: grid; grid-template-columns: repeat(3,1fr); text-align: center; }
.stat-item  { padding: 1.6rem; border-right: 1px solid rgba(255,255,255,.07); }
.stat-item:last-child { border: none; }
.stat-n { font-family: var(--fd); font-size: 2.8rem; font-weight: 300; color: var(--aqv); line-height: 1; margin-bottom: .4rem; }
.stat-l { font-size: .75rem; font-weight: 500; letter-spacing: .12em; text-transform: uppercase; color: rgba(255,255,255,.45); }

/* ══════════════════════════════════════════
   TÉMOIGNAGE
══════════════════════════════════════════ */
.testi { background: var(--off); padding: 5.5rem 0; }
.testi-in { max-width: 680px; margin: 0 auto; text-align: center; }
.testi-q { display: block; font-family: var(--fd); font-size: 4.5rem; line-height: .6; color: var(--tel); opacity: .45; margin-bottom: 1.2rem; }
.testi-txt {
  font-family: var(--fd);
  font-size: clamp(1.2rem, 2.4vw, 1.6rem);
  font-style: italic; font-weight: 300;
  color: var(--deep); line-height: 1.65; margin-bottom: 1.4rem;
}
.testi-by { font-size: .73rem; font-weight: 600; letter-spacing: .2em; text-transform: uppercase; color: var(--tel); }

/* ══════════════════════════════════════════
   CTA BAND
══════════════════════════════════════════ */
.cta-band { background: linear-gradient(108deg, var(--ocn), var(--tel)); padding: 4.5rem 2rem; text-align: center; }
.cta-band h2 { font-family: var(--fd); font-size: clamp(1.8rem,3.5vw,2.6rem); font-weight: 300; color: var(--w); margin-bottom: .6rem; }
.cta-band h2 em { font-style: italic; }
.cta-band p { font-size: .95rem; color: rgba(255,255,255,.7); margin-bottom: 2.2rem; }
.btn-row { display: flex; flex-wrap: wrap; gap: 1rem; justify-content: center; }

/* ══════════════════════════════════════════
   SECTION PREMIUM / SUR-MESURE
══════════════════════════════════════════ */
.prem {
  background: linear-gradient(160deg, var(--deep) 0%, #173f66 100%);
  padding: 5.5rem 0; position: relative; overflow: hidden;
}
.prem::before {
  content: ''; position: absolute; inset: 0;
  background: radial-gradient(ellipse 60% 50% at 85% 15%, rgba(127,182,230,.14) 0%, transparent 70%);
  pointer-events: none;
}
.prem .ctr { position: relative; }
.prem-hdr { max-width: 620px; margin-bottom: 3.2rem; }
.prem-hdr .sec-lbl { color: var(--aqv); }
.prem-hdr h2 {
  font-family: var(--fd); font-size: clamp(1.85rem,3.4vw,2.7rem);
  font-weight: 400; color: var(--w); line-height: 1.2; margin-bottom: .9rem;
}
.prem-hdr h2 em { font-style: italic; color: var(--aqv); }
.prem-hdr p { font-size: .95rem; color: rgba(255,255,255,.6); line-height: 1.75; }

.prem-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 1.2rem; }
.prem-card {
  background: rgba(255,255,255,.04);
  border: 1px solid rgba(255,255,255,.1);
  border-radius: var(--r); padding: 1.8rem 1.5rem;
  transition: background .3s, border-color .3s, transform .3s;
}
.prem-card:hover { background: rgba(255,255,255,.07); border-color: rgba(127,182,230,.4); transform: translateY(-4px); }
.prem-ico {
  width: 46px; height: 46px; margin-bottom: 1.1rem;
  border-radius: 11px; background: rgba(127,182,230,.14);
  display: flex; align-items: center; justify-content: center;
}
.prem-ico svg { width: 22px; height: 22px; color: var(--aqv); }
.prem-card h4 { font-family: var(--fd); font-size: 1.22rem; font-weight: 500; color: var(--w); margin-bottom: .4rem; }
.prem-card p { font-size: .83rem; color: rgba(255,255,255,.55); line-height: 1.65; }

/* ══════════════════════════════════════════
   PAGE PRESTATIONS — tableaux de tarifs
══════════════════════════════════════════ */
.prest-sec { padding: 3.5rem 0; border-bottom: 1px solid var(--bdr); }
.prest-sec:last-of-type { border-bottom: none; }

.tarif-banner {
  display: flex; align-items: center; gap: 1.4rem;
  background: linear-gradient(100deg, rgba(46,109,180,.07), rgba(127,182,230,.12));
  border: 1px solid rgba(46,109,180,.2); border-radius: var(--r);
  padding: 1.4rem 1.7rem; margin-bottom: 2.8rem;
}
.tarif-banner-ico {
  width: 54px; height: 54px; flex-shrink: 0; border-radius: 13px;
  background: var(--ocn); display: flex; align-items: center; justify-content: center;
  box-shadow: 0 5px 16px rgba(46,109,180,.3);
}
.tarif-banner-ico svg { width: 26px; height: 26px; color: #fff; }
.tarif-banner-txt { flex: 1; }
.tarif-banner-txt strong { display: block; font-family: var(--fd); font-size: 1.25rem; font-weight: 500; color: var(--deep); margin-bottom: .25rem; }
.tarif-banner-txt span { font-size: .85rem; color: var(--txm); line-height: 1.6; }
.tarif-banner .btn { flex-shrink: 0; }
@media (max-width: 680px) {
  .tarif-banner { flex-direction: column; text-align: center; }
}

/* Encart Express le jour même */
.express-banner {
  display: flex; align-items: center; gap: 1.4rem;
  background: linear-gradient(100deg, rgba(230,173,92,.12), rgba(230,173,92,.05));
  border: 1px solid rgba(230,173,92,.45); border-radius: var(--r);
  padding: 1.3rem 1.7rem; margin-bottom: 2.8rem;
}
.express-ico {
  width: 54px; height: 54px; flex-shrink: 0; border-radius: 13px;
  background: var(--wrm); display: flex; align-items: center; justify-content: center;
  box-shadow: 0 5px 16px rgba(230,173,92,.45);
}
.express-ico svg { width: 26px; height: 26px; color: var(--deep); }
.express-txt { flex: 1; }
.express-head { display: flex; align-items: center; gap: .7rem; margin-bottom: .25rem; flex-wrap: wrap; }
.express-head strong { font-family: var(--fd); font-size: 1.25rem; font-weight: 500; color: var(--deep); }
.express-badge { font-size: .72rem; font-weight: 700; letter-spacing: .03em; color: var(--deep); background: var(--wrm); padding: .16rem .55rem; border-radius: 5px; }
.express-txt p { font-size: .85rem; color: var(--txm); line-height: 1.6; }
@media (max-width: 680px) {
  .express-banner { flex-direction: column; text-align: center; }
  .express-head { justify-content: center; }
}

/* Slogan + aperçu par catégories */
.prest-tagline {
  font-family: var(--fd); font-size: clamp(1.15rem, 2vw, 1.55rem);
  font-style: italic; font-weight: 300; color: var(--ocn);
  text-align: center; max-width: 660px; margin: 0 auto 2.8rem; line-height: 1.5;
}
.cat-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 1.2rem; margin-bottom: 1.6rem; }
.cat-card {
  background: var(--w); border: 1px solid var(--bdr); border-radius: var(--r);
  padding: 1.6rem 1.4rem; box-shadow: var(--sh);
  display: flex; flex-direction: column; transition: transform .3s, box-shadow .3s;
}
.cat-card:hover { transform: translateY(-4px); box-shadow: var(--shl); }
.cat-ico {
  width: 46px; height: 46px; border-radius: 11px; margin-bottom: 1rem;
  background: linear-gradient(135deg, rgba(46,109,180,.12), rgba(127,182,230,.14));
  display: flex; align-items: center; justify-content: center;
}
.cat-ico svg { width: 23px; height: 23px; color: var(--ocn); }
.cat-card h3 { font-family: var(--fd); font-size: 1.22rem; font-weight: 500; color: var(--deep); margin-bottom: .35rem; }
.cat-card p { font-size: .82rem; color: var(--txl); line-height: 1.6; flex: 1; margin-bottom: 1.1rem; }
.cat-meta { display: flex; align-items: flex-end; justify-content: flex-end; border-top: 1px solid var(--bdr); padding-top: .85rem; }
.cat-delai { font-size: .68rem; font-weight: 600; letter-spacing: .06em; text-transform: uppercase; color: var(--txm); }
.cat-price { font-family: var(--fd); font-size: 1.15rem; font-weight: 600; color: var(--ocn); text-align: right; line-height: 1.1; }
.cat-price small { display: block; font-family: var(--fb); font-size: .58rem; font-weight: 600; letter-spacing: .1em; text-transform: uppercase; color: var(--txl); margin-bottom: .15rem; }
.cat-note { font-size: .76rem; color: var(--txl); font-style: italic; margin-bottom: 2.6rem; }
@media (max-width: 1024px) { .cat-grid { grid-template-columns: repeat(2,1fr); } }
@media (max-width: 560px)  { .cat-grid { grid-template-columns: 1fr; } }

.prest-hdr {
  display: grid; grid-template-columns: 56px 1fr; gap: 1.4rem;
  align-items: flex-start; margin-bottom: 1.8rem;
}
.prest-ico {
  width: 56px; height: 56px;
  background: linear-gradient(135deg,rgba(46,109,180,.13),rgba(127,182,230,.13));
  border-radius: 14px;
  display: flex; align-items: center; justify-content: center; flex-shrink: 0;
}
.prest-ico svg { width: 24px; height: 24px; color: var(--tel); }
.prest-hdr-txt h2 { font-family: var(--fd); font-size: 1.7rem; font-weight: 500; color: var(--deep); margin-bottom: .3rem; }
.prest-hdr-txt p  { font-size: .875rem; color: var(--txl); line-height: 1.7; }

.ptable { width: 100%; border-collapse: collapse; margin-top: 1.5rem; }
.ptable thead th {
  background: var(--deep); color: rgba(255,255,255,.9);
  font-family: var(--fb); font-size: .74rem; font-weight: 600; letter-spacing: .12em; text-transform: uppercase;
  padding: .85rem 1.3rem; text-align: left;
}
.ptable thead th:last-child { text-align: right; }
.ptable tbody tr:nth-child(even) { background: var(--off); }
.ptable tbody tr:hover { background: var(--crm); }
.ptable td {
  padding: .65rem 1.3rem; font-size: .9rem;
  color: var(--tx); border-bottom: 1px solid var(--bdr);
}
.ptable td:last-child {
  text-align: right; white-space: nowrap;
  font-family: var(--fd); font-size: 1rem; font-weight: 500;
  color: var(--ocn);
}
.ptable-note { font-size: .8rem; color: var(--txl); font-style: italic; margin-top: 1rem; }

/* ══════════════════════════════════════════
   PAGE À PROPOS
══════════════════════════════════════════ */
.about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; align-items: center; }
.about-vis {
  border-radius: var(--r); overflow: hidden; height: 430px;
  background: linear-gradient(140deg, var(--deep), #155169);
  display: flex; align-items: center; justify-content: center;
  position: relative;
}
.about-vis::after {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(180deg, transparent 60%, rgba(12,37,52,.6));
}
.about-vis svg { width: 80px; height: 80px; color: rgba(255,255,255,.18); }
.about-vis img { width: 100%; height: 100%; object-fit: cover; object-position: center; display: block; }
.about-txt h2 { font-family: var(--fd); font-size: clamp(1.9rem,3.2vw,2.6rem); font-weight: 400; color: var(--deep); margin-bottom: 1.2rem; }
.about-txt h2 em { font-style: italic; color: var(--ocn); }
.about-txt p { font-size: .9rem; color: var(--txm); line-height: 1.8; margin-bottom: 1rem; }
.about-txt p:last-of-type { margin-bottom: 0; }

.eng-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 1.4rem; }
.eng-card {
  background: var(--w); border: 1px solid var(--bdr);
  border-radius: var(--r); padding: 2rem 1.5rem;
  box-shadow: var(--sh); transition: transform .3s;
}
.eng-card:hover { transform: translateY(-4px); }
.eng-num { font-family: var(--fd); font-size: 2.6rem; font-weight: 300; color: var(--aqv); line-height: 1; margin-bottom: .45rem; }
.eng-card h4 { font-family: var(--fd); font-size: 1.18rem; font-weight: 500; color: var(--deep); margin-bottom: .4rem; }
.eng-card p  { font-size: .865rem; color: var(--txl); line-height: 1.7; }

.partner-box {
  background: var(--w); border: 1px solid var(--bdr);
  border-radius: var(--r); padding: 2.5rem;
  box-shadow: var(--sh);
  display: grid; grid-template-columns: auto 1fr; gap: 2rem; align-items: center;
}
.partner-ico {
  width: 72px; height: 72px; flex-shrink: 0;
  background: linear-gradient(135deg, rgba(46,109,180,.12), rgba(127,182,230,.1));
  border-radius: 18px;
  display: flex; align-items: center; justify-content: center;
}
.partner-ico svg { width: 34px; height: 34px; color: var(--tel); }
.partner-txt h3 { font-family: var(--fd); font-size: 1.45rem; font-weight: 500; color: var(--deep); margin-bottom: .4rem; }
.partner-txt p  { font-size: .875rem; color: var(--txl); line-height: 1.7; margin-bottom: .8rem; }
.partner-txt a  { font-size: .82rem; font-weight: 600; color: var(--ocn); text-decoration: none; display: inline-flex; align-items: center; gap: .35rem; transition: gap .2s; }
.partner-txt a:hover { gap: .6rem; color: var(--tel); }
.partner-txt a svg { width: 13px; height: 13px; }

/* ══════════════════════════════════════════
   PAGE CONTACT
══════════════════════════════════════════ */
.info-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 1.4rem; margin-bottom: 3rem; }
.info-card {
  background: var(--w); border: 1px solid var(--bdr);
  border-radius: var(--r); padding: 2rem 1.5rem; text-align: center;
  box-shadow: var(--sh); transition: transform .3s, box-shadow .3s;
}
.info-card:hover { transform: translateY(-4px); box-shadow: var(--shl); }
.info-card-ico {
  width: 52px; height: 52px; margin: 0 auto 1rem;
  background: linear-gradient(135deg,rgba(46,109,180,.12),rgba(127,182,230,.1));
  border-radius: 50%; display: flex; align-items: center; justify-content: center;
}
.info-card-ico svg { width: 22px; height: 22px; color: var(--tel); }
.info-card h3 { font-family: var(--fd); font-size: 1.12rem; font-weight: 500; color: var(--deep); margin-bottom: .35rem; }
.info-card p, .info-card a { font-size: .875rem; color: var(--txl); text-decoration: none; line-height: 1.65; }
.info-card a:hover { color: var(--ocn); }

.contact-bot { display: grid; grid-template-columns: 1fr 1fr; gap: 2.5rem; margin-bottom: 3.5rem; }

.hours-block h3 { font-family: var(--fd); font-size: 1.4rem; font-weight: 500; color: var(--deep); margin-bottom: 1.2rem; }
.htable { width: 100%; border-collapse: collapse; }
.htable tr { border-bottom: 1px solid var(--bdr); }
.htable tr:last-child { border: none; }
.htable td { padding: .7rem 0; font-size: .9rem; }
.htable td:first-child { color: var(--txl); }
.htable td:last-child  { font-weight: 500; text-align: right; color: var(--tx); }
.htable .closed td     { color: var(--txl); opacity: .55; }
.htable .ns { font-size: .62rem; font-weight: 600; letter-spacing: .08em; text-transform: uppercase; color: var(--tel); background: rgba(46,109,180,.1); padding: .12rem .42rem; border-radius: 5px; margin-left: .4rem; vertical-align: middle; }

.map-card {
  background: linear-gradient(148deg, #cce6ef, #b3dae6);
  border-radius: var(--r); overflow: hidden;
  display: flex; flex-direction: column;
  align-items: center; justify-content: center;
  gap: 1.3rem; padding: 2.5rem;
  text-align: center; text-decoration: none;
  transition: background .3s;
  min-height: 240px;
}
.map-card:hover { background: linear-gradient(148deg, #bcdfe9, #9fcfde); }
.map-pin {
  width: 50px; height: 50px;
  background: var(--wrm); border-radius: 50% 50% 50% 0; transform: rotate(-45deg);
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 5px 16px rgba(207,146,79,.35);
}
.map-pin::after { content: ''; width: 16px; height: 16px; background: var(--w); border-radius: 50%; transform: rotate(45deg); }
.map-card strong { display: block; font-size: .94rem; color: var(--deep); margin-bottom: .25rem; }
.map-card span   { font-size: .8rem; color: var(--txm); }
.map-card .btn   { margin-top: .3rem; }

/* Carte intégrée (OpenStreetMap) */
.map-col { display: flex; flex-direction: column; }
.map-embed { border-radius: var(--r); overflow: hidden; flex: 1; min-height: 300px; box-shadow: var(--sh); border: 1px solid var(--bdr); }
.map-embed iframe { width: 100%; height: 100%; min-height: 300px; border: 0; display: block; }
.map-dir { align-self: flex-start; margin-top: .9rem; }
.mv-pin span {
  display: block; width: 22px; height: 22px; margin: 2px;
  border-radius: 50% 50% 50% 0; background: var(--ocn);
  border: 2px solid #fff; box-shadow: 0 3px 8px rgba(12,40,66,.4);
  transform: rotate(-45deg);
}
.leaflet-container { font-family: var(--fb); }

/* Formulaire */
.contact-form-wrap { background: var(--off); border-radius: var(--r); padding: 2.5rem; }
.contact-form-wrap h3 { font-family: var(--fd); font-size: 1.5rem; font-weight: 500; color: var(--deep); margin-bottom: 1.5rem; }
.fgrp { margin-bottom: 1.15rem; }
.fgrp label { display: block; font-size: .74rem; font-weight: 600; letter-spacing: .1em; text-transform: uppercase; color: var(--txm); margin-bottom: .45rem; }
.fgrp input,
.fgrp textarea {
  width: 100%; padding: .75rem 1rem;
  border: 1.5px solid var(--bdr); border-radius: 6px;
  font-family: var(--fb); font-size: .9rem; color: var(--tx); background: var(--w);
  outline: none; transition: border-color .22s;
}
.fgrp input:focus,
.fgrp textarea:focus { border-color: var(--tel); }
.fgrp textarea { resize: vertical; min-height: 108px; }
.fgrp-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }

/* ══════════════════════════════════════════
   FOOTER
══════════════════════════════════════════ */
.footer { background: var(--deep); padding: 4.5rem 0 2rem; }
.footer-g { display: grid; grid-template-columns: 1.5fr 1fr 1.2fr; gap: 3rem; margin-bottom: 3rem; }

.foot-logo { font-family: var(--fd); font-size: 1.45rem; font-weight: 600; color: var(--w); letter-spacing: .02em; margin-bottom: .65rem; display: flex; align-items: center; gap: .5rem; }
.foot-logo img { height: 38px; width: 38px; object-fit: contain; border-radius: 9px; }
.foot-logo span { color: var(--aqv); }
.foot-tag  { font-size: .82rem; color: rgba(255,255,255,.62); line-height: 1.75; margin-bottom: 1.4rem; }
.foot-soc  { display: flex; gap: .6rem; }
.foot-soc a {
  width: 36px; height: 36px; border-radius: 8px;
  background: rgba(255,255,255,.08);
  display: flex; align-items: center; justify-content: center;
  text-decoration: none; transition: all .22s;
}
.foot-soc a:hover { background: var(--tel); }
.foot-soc a svg { width: 16px; height: 16px; color: rgba(255,255,255,.65); }
.foot-soc a:hover svg { color: var(--w); }

.foot-col h4 {
  font-size: .69rem; font-weight: 600; letter-spacing: .2em; text-transform: uppercase;
  color: rgba(255,255,255,.55); margin-bottom: 1.2rem;
}
.foot-ul { list-style: none; }
.foot-ul li { margin-bottom: .55rem; }
.foot-ul a { font-size: .86rem; color: rgba(255,255,255,.66); text-decoration: none; transition: color .22s; }
.foot-ul a:hover { color: var(--aqv); }

.foot-ci { display: flex; align-items: flex-start; gap: .65rem; margin-bottom: .85rem; }
.foot-ci svg { width: 13px; height: 13px; color: var(--aqv); margin-top: 4px; flex-shrink: 0; }
.foot-ci span, .foot-ci a { font-size: .86rem; color: rgba(255,255,255,.66); text-decoration: none; line-height: 1.6; }
.foot-ci a:hover { color: var(--aqv); }

.foot-bot {
  border-top: 1px solid rgba(255,255,255,.07);
  padding-top: 1.8rem;
  display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: .5rem;
}
.foot-bot p { font-size: .77rem; color: rgba(255,255,255,.5); }

/* ══════════════════════════════════════════
   SCROLL REVEAL
══════════════════════════════════════════ */
html.js .rv { opacity: 0; transform: translateY(24px); transition: opacity .6s ease, transform .6s ease; }
html.js .rv.in { opacity: 1; transform: none; }
.d1 { transition-delay: .1s; }
.d2 { transition-delay: .2s; }
.d3 { transition-delay: .3s; }
.d4 { transition-delay: .4s; }

/* Respect des préférences de mouvement réduit */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: .001ms !important; animation-iteration-count: 1 !important;
    transition-duration: .001ms !important; scroll-behavior: auto !important;
  }
  .rv,
  .hero-badge, .hero-h1, .hero-p, .hero-btns, .hero-trust,
  .hero-visual img, .hero-rating {
    opacity: 1 !important; transform: none !important;
  }
}

/* ══════════════════════════════════════════
   RESPONSIVE
══════════════════════════════════════════ */
@media (max-width: 1024px) {
  .svc-grid  { grid-template-columns: repeat(2,1fr); }
  .prem-grid { grid-template-columns: repeat(2,1fr); }
  .footer-g  { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 768px) {
  .nav-ul    { display: none; }
  .nav-ul.open {
    display: flex; flex-direction: column; gap: .35rem;
    position: fixed; top: 68px; left: 0; right: 0; bottom: 0;
    background: var(--w); padding: 1.5rem 2rem;
    border-top: 1px solid var(--bdr); overflow-y: auto;
  }
  .nav-ul.open li a { font-size: 1rem; padding: .7rem 1rem; color: var(--txm); }
  .nav-phone { display: none; }
  .nav-burger { display: flex; }

  .about-grid  { grid-template-columns: 1fr; }
  .about-vis   { height: 240px; }
  .prem-grid   { grid-template-columns: 1fr; }
  .eng-grid    { grid-template-columns: 1fr; }
  .info-grid   { grid-template-columns: 1fr; }
  .contact-bot { grid-template-columns: 1fr; }
  .fgrp-row    { grid-template-columns: 1fr; }
  .partner-box { grid-template-columns: 1fr; text-align: center; justify-items: center; }
  .stats-grid  { grid-template-columns: 1fr 1fr; }
  .footer-g    { grid-template-columns: 1fr; gap: 2rem; }
  .foot-bot    { flex-direction: column; text-align: center; }
  .prest-hdr   { grid-template-columns: 1fr; }
}

@media (max-width: 560px) {
  .sec       { padding: 4rem 0; }
  .svc-grid  { grid-template-columns: 1fr; }
  .hero-btns { flex-direction: column; align-items: center; }
  .stats-grid{ grid-template-columns: 1fr; }
  .stat-item { border-right: none; border-bottom: 1px solid rgba(255,255,255,.07); }
  .stat-item:last-child { border: none; }
}
