/* ============================================================
   SKY RENOV — Premium clair & aéré
   Cormorant Garamond (display) + Poppins (texte)
   ============================================================ */

:root {
  --ivory:      #F7F4EF;
  --ivory-deep: #EFEAE1;
  --paper:      #FCFAF6;
  --ink:        #1B1A17;
  --ink-soft:   #565248;
  --ink-faint:  #8C877B;
  --line:       #E4DDD1;
  --line-soft:  #EDE7DC;
  --accent:     #009FE3;   /* bleu de marque, accent ponctuel */
  --accent-ink: #0a3a4d;
  --shadow:     0 24px 60px -28px rgba(40, 34, 22, .35);
  --shadow-sm:  0 12px 30px -18px rgba(40, 34, 22, .30);
  --serif: "Cormorant Garamond", Georgia, "Times New Roman", serif;
  --sans:  "Poppins", ui-sans-serif, system-ui, -apple-system, "Segoe UI", Roboto, sans-serif;
  --maxw: 1240px;
  --gap: clamp(1.25rem, 4vw, 3rem);
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  font-family: var(--sans);
  color: var(--ink);
  background: var(--ivory);
  line-height: 1.65;
  font-weight: 300;
  font-size: 16px;
  overflow-x: hidden;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
::selection { background: var(--accent); color: #fff; }

/* ---------- Typo ---------- */
h1, h2, h3 { font-family: var(--serif); font-weight: 400; line-height: 1.04; letter-spacing: -.01em; }
.display { font-size: clamp(2.6rem, 5vw, 4.6rem); font-weight: 300; }
h2.title { font-size: clamp(2rem, 4.6vw, 3.6rem); font-weight: 400; }
.lead { font-size: clamp(1.05rem, 1.6vw, 1.22rem); color: var(--ink-soft); font-weight: 300; }
.eyebrow {
  font-family: var(--sans); font-size: .72rem; font-weight: 500;
  letter-spacing: .28em; text-transform: uppercase; color: var(--accent);
  display: inline-flex; align-items: center; gap: .7rem;
}
.eyebrow::before { content: ""; width: 28px; height: 1px; background: var(--accent); opacity: .6; }
.eyebrow.center::after { content: ""; width: 28px; height: 1px; background: var(--accent); opacity: .6; }
em.serif-em { font-style: italic; color: var(--accent-ink); }

/* ---------- Layout ---------- */
.wrap { max-width: var(--maxw); margin-inline: auto; padding-inline: clamp(1.25rem, 5vw, 3.5rem); }
section { padding-block: clamp(4.5rem, 10vw, 8.5rem); position: relative; }
.section-head { max-width: 760px; margin-bottom: clamp(2.5rem, 5vw, 4rem); }
.section-head .title { margin-top: 1.1rem; }
.section-head .lead { margin-top: 1.3rem; }
.center { text-align: center; margin-inline: auto; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex; align-items: center; gap: .6rem;
  font-family: var(--sans); font-size: .82rem; font-weight: 500;
  letter-spacing: .12em; text-transform: uppercase;
  padding: 1.05rem 1.9rem; border: 1px solid var(--ink);
  background: var(--ink); color: var(--ivory);
  border-radius: 2px; cursor: pointer; transition: all .35s cubic-bezier(.2,.7,.3,1);
}
.btn:hover { background: transparent; color: var(--ink); }
.btn--ghost { background: transparent; color: var(--ink); border-color: var(--line); }
.btn--ghost:hover { border-color: var(--ink); }
.btn--accent { background: var(--accent); border-color: var(--accent); color: #fff; }
.btn--accent:hover { background: transparent; color: var(--accent); }
.btn--light { background: transparent; color: var(--ivory); border-color: rgba(247,244,239,.4); }
.btn--light:hover { background: var(--ivory); color: var(--ink); border-color: var(--ivory); }
.link-arrow { font-family: var(--sans); font-size: .8rem; font-weight: 500; letter-spacing: .12em; text-transform: uppercase; display: inline-flex; gap: .5rem; align-items: center; border-bottom: 1px solid currentColor; padding-bottom: 3px; transition: gap .3s; }
.link-arrow:hover { gap: .9rem; }

/* ---------- Header ---------- */
.header {
  position: fixed; inset: 0 0 auto 0; z-index: 100;
  padding-block: 1.4rem; transition: all .4s ease;
}
.header__inner { display: flex; align-items: center; justify-content: space-between; gap: 2rem; }
.header__logo img { height: 38px; width: auto; transition: opacity .3s; }
.header__logo .logo-light { display: none; }
.nav { display: flex; align-items: center; gap: 2.4rem; }
.nav a { font-size: .82rem; font-weight: 400; letter-spacing: .04em; color: var(--ink); position: relative; }
.nav a::after { content: ""; position: absolute; left: 0; bottom: -6px; width: 0; height: 1px; background: var(--accent); transition: width .3s; }
.nav a:hover::after { width: 100%; }
.header .btn { padding: .8rem 1.4rem; }
.header.scrolled { background: rgba(247,244,239,.85); backdrop-filter: blur(14px); box-shadow: 0 1px 0 var(--line); padding-block: .9rem; }
.burger { display: none; flex-direction: column; gap: 5px; background: none; border: 0; cursor: pointer; padding: 8px; }
.burger span { width: 26px; height: 1.5px; background: var(--ink); transition: .3s; }

/* ---------- Hero ---------- */
.hero { padding-top: clamp(6rem, 10vh, 7.5rem); padding-bottom: clamp(3rem, 6vw, 5rem); }
.hero__grid { display: grid; grid-template-columns: 1.05fr .95fr; gap: clamp(2rem, 5vw, 5rem); align-items: center; }
.hero__text .display { margin-top: 1.3rem; }
.hero__text .lead { margin-top: 1.4rem; max-width: 31em; }
.hero__cta { display: flex; flex-wrap: wrap; gap: 1rem; margin-top: 2rem; }
.hero__cta .btn { padding: 1.1rem 2rem; }
.hero__assure { display: flex; flex-wrap: wrap; gap: 1rem 1.6rem; margin-top: 1.9rem; list-style: none; }
.hero__assure li { font-size: .86rem; color: var(--ink-soft); display: flex; align-items: center; gap: .5rem; }
.hero__assure li::before { content: "✓"; color: var(--accent); font-weight: 600; font-size: .9rem; }
.hero__assure strong { color: var(--ink); font-weight: 500; }
.hero__tel { margin-top: 1.1rem; font-size: .9rem; color: var(--ink-faint); }
.hero__tel a { color: var(--ink); border-bottom: 1px solid var(--accent); font-weight: 500; padding-bottom: 1px; }
.hero__tel a:hover { color: var(--accent); }
.hero__trust { display: flex; align-items: center; gap: 1rem; margin-top: 2.6rem; color: var(--ink-soft); font-size: .9rem; }
.hero__stars { color: var(--accent); letter-spacing: 2px; }
.hero__media { position: relative; }
.hero__media img { width: 100%; height: clamp(440px, 72vh, 670px); object-fit: cover; object-position: center; border-radius: 3px; box-shadow: var(--shadow); display: block; }
.hero__media::after { content: ""; position: absolute; inset: 14px -14px -14px 14px; border: 1px solid var(--line); border-radius: 3px; z-index: -1; }
.hero__badge {
  position: absolute; left: -28px; bottom: 38px; background: var(--paper);
  padding: 1.1rem 1.4rem; box-shadow: var(--shadow-sm); border-radius: 2px; max-width: 230px;
}
.hero__badge .k { font-family: var(--serif); font-size: 2rem; line-height: 1; color: var(--ink); }
.hero__badge .v { font-size: .76rem; letter-spacing: .05em; color: var(--ink-soft); margin-top: .35rem; }

/* ---------- Stats strip ---------- */
.stats { border-block: 1px solid var(--line); }
.stats .wrap { display: grid; grid-template-columns: repeat(4, 1fr); }
.stat { padding: clamp(2rem,4vw,3rem) 1.5rem; text-align: center; border-left: 1px solid var(--line); }
.stat:first-child { border-left: 0; }
.stat .k { font-family: var(--serif); font-size: clamp(1.8rem, 3vw, 2.6rem); }
.stat .v { font-size: .76rem; letter-spacing: .16em; text-transform: uppercase; color: var(--ink-faint); margin-top: .5rem; }

/* ---------- Manifesto ---------- */
.manifesto { background: var(--paper); }
.manifesto__grid { display: grid; grid-template-columns: .9fr 1.1fr; gap: clamp(2rem,6vw,6rem); align-items: center; }
.manifesto p + p { margin-top: 1.2rem; }
.manifesto .big { font-family: var(--serif); font-size: clamp(1.5rem,2.6vw,2.1rem); line-height: 1.3; color: var(--ink); font-weight: 400; }
.manifesto .sig { margin-top: 2rem; font-size: .85rem; color: var(--ink-faint); letter-spacing: .03em; }

/* ---------- Gallery ---------- */
.filters { display: flex; flex-wrap: wrap; gap: .6rem; margin-bottom: 2.6rem; }
.filter {
  font-family: var(--sans); font-size: .76rem; font-weight: 400; letter-spacing: .08em;
  padding: .62rem 1.2rem; border: 1px solid var(--line); background: transparent;
  border-radius: 100px; cursor: pointer; color: var(--ink-soft); transition: all .3s;
}
.filter:hover { border-color: var(--ink); color: var(--ink); }
.filter.active { background: var(--ink); border-color: var(--ink); color: var(--ivory); }
.masonry { columns: 3; column-gap: 1.1rem; }
.tile {
  break-inside: avoid; margin-bottom: 1.1rem; position: relative;
  overflow: hidden; border-radius: 3px; cursor: pointer; background: var(--ivory-deep);
}
.tile img { width: 100%; height: auto; transition: transform 1.1s cubic-bezier(.2,.7,.3,1); }
.tile:hover img { transform: scale(1.05); }
.tile__overlay {
  position: absolute; inset: 0; display: flex; flex-direction: column; justify-content: flex-end;
  padding: 1.3rem; opacity: 0; transition: opacity .4s;
  background: linear-gradient(to top, rgba(20,18,14,.7) 0%, rgba(20,18,14,.05) 55%, transparent 100%);
}
.tile:hover .tile__overlay { opacity: 1; }
.tile__cat { font-size: .68rem; letter-spacing: .2em; text-transform: uppercase; color: #fff; opacity: .85; }
.tile__name { font-family: var(--serif); font-size: 1.35rem; color: #fff; margin-top: .2rem; }
.tile__zoom { position: absolute; top: 1rem; right: 1rem; width: 38px; height: 38px; border-radius: 50%; background: rgba(252,250,246,.9); display: grid; place-items: center; opacity: 0; transform: translateY(-6px); transition: .4s; }
.tile:hover .tile__zoom { opacity: 1; transform: none; }
.tile.hide { display: none; }

/* ---------- Savoir-faire ---------- */
.expertise { background: var(--paper); }
.exp-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1px; background: var(--line); border: 1px solid var(--line); }
.exp {
  background: var(--paper); padding: clamp(2rem,3vw,2.8rem); transition: background .4s;
}
.exp:hover { background: var(--ivory); }
.exp__n { font-family: var(--serif); font-size: 1.1rem; color: var(--accent); }
.exp h3 { font-size: 1.7rem; margin: .8rem 0 .7rem; }
.exp p { font-size: .94rem; color: var(--ink-soft); }

/* ---------- Process ---------- */
.steps { display: grid; grid-template-columns: repeat(4, 1fr); gap: clamp(1.5rem,3vw,2.4rem); counter-reset: s; }
.step { counter-increment: s; }
.step__n { font-family: var(--serif); font-size: 3.2rem; color: var(--line); line-height: 1; }
.step__n::before { content: "0" counter(s); }
.step h3 { font-size: 1.4rem; margin: .6rem 0 .6rem; }
.step p { font-size: .9rem; color: var(--ink-soft); }

/* ---------- Zones ---------- */
.zones { background: var(--ink); color: var(--ivory); }
.zones .eyebrow { color: #6fd0f5; }
.zones .eyebrow::before { background: #6fd0f5; }
.zones .title { color: var(--ivory); }
.zones .lead { color: rgba(247,244,239,.7); }
.zones__grid { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(2rem,5vw,5rem); align-items: center; margin-top: 1rem; }
.zone-list { display: grid; grid-template-columns: 1fr 1fr; gap: .2rem 2rem; margin-top: 2rem; }
.zone-list li { list-style: none; padding: .9rem 0; border-bottom: 1px solid rgba(247,244,239,.12); font-size: .95rem; display: flex; justify-content: space-between; }
.zone-list .dep { color: #6fd0f5; font-size: .8rem; letter-spacing: .05em; }
.zones__note { font-size: .9rem; color: rgba(247,244,239,.6); margin-top: 1.8rem; }

/* ---------- Contact ---------- */
.contact__grid { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(2.5rem,6vw,6rem); }
.contact__aside .big-tel { font-family: var(--serif); font-size: clamp(2rem,4vw,3rem); display: inline-block; margin-top: 1rem; }
.contact__aside .big-tel:hover { color: var(--accent); }
.contact__points { margin-top: 2.2rem; }
.contact__points li { list-style: none; padding: 1rem 0; border-top: 1px solid var(--line); font-size: .95rem; color: var(--ink-soft); display: flex; gap: .8rem; }
.contact__points li::before { content: ""; width: 6px; height: 6px; margin-top: .55rem; border-radius: 50%; background: var(--accent); flex: none; }
form .row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.field { margin-bottom: 1rem; }
.field label { display: block; font-size: .74rem; letter-spacing: .12em; text-transform: uppercase; color: var(--ink-faint); margin-bottom: .5rem; }
.field input, .field textarea, .field select {
  width: 100%; font-family: var(--sans); font-size: .95rem; font-weight: 300; color: var(--ink);
  padding: .85rem 1rem; border: 1px solid var(--line); background: var(--paper); border-radius: 2px; transition: border-color .3s;
}
.field input:focus, .field textarea:focus, .field select:focus { outline: none; border-color: var(--accent); }
.field textarea { resize: vertical; min-height: 120px; }
form .btn { width: 100%; justify-content: center; margin-top: .5rem; }
.form-note { font-size: .78rem; color: var(--ink-faint); margin-top: 1rem; text-align: center; }
.hp { position: absolute !important; left: -9999px !important; width: 1px; height: 1px; opacity: 0; }
.form-status { font-size: .88rem; margin-top: 1rem; text-align: center; padding: 0; }
.form-status.ok { color: #2f8f3e; }
.form-status.err { color: #c0392b; }
.form-status:empty { display: none; }

/* ---------- Footer ---------- */
.footer { background: var(--ink); color: rgba(247,244,239,.7); padding-block: clamp(3.5rem,6vw,5rem) 2rem; }
.footer__top { display: grid; grid-template-columns: 1.5fr 1fr 1fr 1fr; gap: 2.5rem; padding-bottom: 3rem; border-bottom: 1px solid rgba(247,244,239,.12); }
.footer__logo img { height: 40px; margin-bottom: 1.3rem; }
.footer p.slogan { font-family: var(--serif); font-size: 1.5rem; color: var(--ivory); font-style: italic; max-width: 16em; }
.footer h4 { font-family: var(--sans); font-size: .76rem; letter-spacing: .16em; text-transform: uppercase; color: var(--ivory); margin-bottom: 1.1rem; font-weight: 500; }
.footer ul { list-style: none; }
.footer ul li { padding: .35rem 0; font-size: .92rem; }
.footer ul a:hover { color: #6fd0f5; }
.footer__bottom { display: flex; justify-content: space-between; flex-wrap: wrap; gap: 1rem; padding-top: 1.8rem; font-size: .8rem; color: rgba(247,244,239,.5); }

/* ---------- Lightbox ---------- */
.lightbox { position: fixed; inset: 0; z-index: 200; background: rgba(20,18,14,.94); display: none; align-items: center; justify-content: center; padding: 4vmin; }
.lightbox.open { display: flex; animation: fade .3s ease; }
.lightbox img { max-width: 92vw; max-height: 88vh; object-fit: contain; border-radius: 2px; box-shadow: 0 30px 80px rgba(0,0,0,.5); }
.lb-cap { position: absolute; bottom: 3vmin; left: 0; right: 0; text-align: center; color: rgba(247,244,239,.85); font-size: .9rem; letter-spacing: .04em; }
.lb-cap .c { color: #6fd0f5; font-size: .72rem; letter-spacing: .2em; text-transform: uppercase; display: block; margin-bottom: .3rem; }
.lb-btn { position: absolute; background: none; border: 0; color: var(--ivory); cursor: pointer; font-size: 2rem; line-height: 1; padding: 1rem; opacity: .7; transition: opacity .3s; }
.lb-btn:hover { opacity: 1; }
.lb-close { top: 1.5vmin; right: 2vmin; font-size: 2.4rem; }
.lb-prev { left: 1vmin; top: 50%; transform: translateY(-50%); font-size: 3rem; }
.lb-next { right: 1vmin; top: 50%; transform: translateY(-50%); font-size: 3rem; }

/* ---------- Reveal ---------- */
.reveal { opacity: 0; transform: translateY(28px); transition: opacity .9s ease, transform .9s cubic-bezier(.2,.7,.3,1); }
.reveal.in { opacity: 1; transform: none; }
@keyframes fade { from { opacity: 0; } to { opacity: 1; } }

/* ---------- Responsive ---------- */
@media (max-width: 960px) {
  .masonry { columns: 2; }
  .exp-grid { grid-template-columns: 1fr 1fr; }
  .steps { grid-template-columns: 1fr 1fr; gap: 2.5rem; }
  .footer__top { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 820px) {
  .nav, .header .btn.desktop { display: none; }
  .burger { display: flex; }
  .header.scrolled .header__logo .logo-dark { display: block; }
  .nav.open {
    display: flex; position: fixed; inset: 0; background: var(--ivory); flex-direction: column;
    justify-content: center; align-items: center; gap: 2rem; z-index: 99;
  }
  .nav.open a { font-family: var(--serif); font-size: 2rem; }
  .hero { padding-top: 6.5rem; }
  .hero__grid { grid-template-columns: 1fr; gap: 2rem; }
  .hero__text { padding-top: 0; }
  .hero__media { max-width: 520px; margin-inline: auto; }
  .hero__media img { max-height: 56vh; }
  .hero__badge { left: 0; bottom: 24px; }
  .manifesto__grid, .contact__grid, .zones__grid { grid-template-columns: 1fr; }
  .stats .wrap { grid-template-columns: 1fr 1fr; }
  .stat:nth-child(3) { border-left: 0; }
  .stat:nth-child(-n+2) { border-bottom: 1px solid var(--line); }
}
@media (max-width: 540px) {
  .masonry { columns: 1; }
  .exp-grid, .steps, .zone-list, .footer__top, form .row { grid-template-columns: 1fr; }
  .display { font-size: 2.9rem; }
  .hero__cta .btn { flex: 1; justify-content: center; }
}

/* ============================================================
   Pages SEO (services, zones, service×ville, hubs)
   ============================================================ */
.seo-hero { padding-top: clamp(8rem, 14vh, 10rem); padding-bottom: clamp(2.5rem, 5vw, 4rem); }
.seo-hero .display { margin-top: 1rem; font-size: clamp(2.3rem, 4.4vw, 3.8rem); }
.seo-hero .lead { margin-top: 1.3rem; max-width: 46em; }
.seo-hero .hero__cta { margin-top: 2rem; }
.breadcrumb { font-size: .78rem; color: var(--ink-faint); margin-bottom: 1.3rem; display: flex; gap: .5rem; flex-wrap: wrap; align-items: center; }
.breadcrumb a { color: var(--ink-soft); }
.breadcrumb a:hover { color: var(--accent); }
.breadcrumb span { color: var(--stroke); }

.seo-trades { background: var(--paper); }
.seo-trades-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1px; background: var(--line); border: 1px solid var(--line); margin-top: 2.5rem; }
.seo-trade { background: var(--paper); padding: 1.6rem 1.8rem; }
.seo-trade h3 { font-family: var(--serif); font-weight: 400; font-size: 1.35rem; color: var(--ink); }

.seo-svc-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.1rem; margin-top: 2.5rem; }
.seo-svc-card { display: block; padding: 1.7rem 1.8rem; border: 1px solid var(--line); border-radius: 3px; background: var(--paper); transition: all .35s cubic-bezier(.2,.7,.3,1); }
.seo-svc-card:hover { border-color: var(--ink); transform: translateY(-3px); box-shadow: var(--shadow-sm); }
.seo-svc-card__t { display: block; font-family: var(--serif); font-size: 1.4rem; line-height: 1.2; color: var(--ink); }
.seo-svc-card__d { display: block; font-size: .9rem; color: var(--ink-soft); margin-top: .45rem; }

.seo-gallery-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1rem; margin-top: 2.5rem; }
.seo-gphoto { display: block; overflow: hidden; border-radius: 3px; background: var(--ivory-deep); }
.seo-gphoto img { width: 100%; height: 340px; object-fit: cover; transition: transform 1s cubic-bezier(.2,.7,.3,1); }
.seo-gphoto:hover img { transform: scale(1.05); }

.seo-zones { background: var(--paper); }
.seo-dep { margin-bottom: 2.4rem; }
.seo-dep h2 { font-family: var(--serif); font-weight: 400; font-size: 1.7rem; margin-bottom: .5rem; color: var(--ink); }
.chip-links { display: flex; flex-wrap: wrap; gap: .6rem; margin-top: 1.3rem; }
.chip-links a { font-size: .84rem; padding: .55rem 1.05rem; border: 1px solid var(--line); border-radius: 100px; color: var(--ink-soft); transition: all .3s; }
.chip-links a:hover { border-color: var(--ink); color: var(--ink); }

.faq-list { margin-top: 2.5rem; border-top: 1px solid var(--line); }
.faq-item { border-bottom: 1px solid var(--line); }
.faq-item summary { cursor: pointer; padding: 1.25rem 0; font-family: var(--serif); font-size: 1.3rem; color: var(--ink); list-style: none; display: flex; justify-content: space-between; align-items: center; gap: 1rem; }
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after { content: "+"; color: var(--accent); font-size: 1.5rem; line-height: 1; font-family: var(--sans); }
.faq-item[open] summary::after { content: "\2212"; }
.faq-a { padding: 0 0 1.3rem; color: var(--ink-soft); max-width: 62em; font-size: .98rem; }

.seo-cta { background: var(--ink); color: var(--ivory); text-align: center; }
.seo-cta h2 { font-family: var(--serif); font-weight: 400; font-size: clamp(1.8rem, 3.5vw, 2.8rem); color: var(--ivory); }
.seo-cta p { color: rgba(247,244,239,.72); margin-top: 1rem; }
.seo-cta-btns { display: flex; gap: 1rem; justify-content: center; margin-top: 2rem; flex-wrap: wrap; }
.seo-cta .btn--ghost { color: var(--ivory); border-color: rgba(247,244,239,.4); }
.seo-cta .btn--ghost:hover { background: var(--ivory); color: var(--ink); border-color: var(--ivory); }

@media (max-width: 960px) {
  .seo-trades-grid, .seo-svc-grid, .seo-gallery-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 540px) {
  .seo-trades-grid, .seo-svc-grid, .seo-gallery-grid { grid-template-columns: 1fr; }
  .seo-gphoto img { height: 240px; }
}

/* ---------- Mentions légales ---------- */
.legal { padding-top: 1rem; }
.legal .wrap { max-width: 860px; }
.legal h2 { font-family: var(--serif); font-weight: 400; font-size: 1.7rem; color: var(--ink); margin: 2.4rem 0 .8rem; }
.legal h2:first-child { margin-top: 0; }
.legal p { color: var(--ink-soft); margin-bottom: .9rem; font-size: .98rem; }
.legal a { color: var(--accent); border-bottom: 1px solid transparent; transition: border-color .2s; }
.legal a:hover { border-color: var(--accent); }
.legal-list { list-style: none; margin: 0 0 1rem; padding: 0; }
.legal-list li { padding: .5rem 0; border-bottom: 1px solid var(--line-soft); color: var(--ink-soft); font-size: .98rem; }
.legal-update { font-size: .85rem; color: var(--ink-faint); margin-top: 2.5rem; }
.footer__bottom a { color: rgba(247,244,239,.65); border-bottom: 1px solid rgba(247,244,239,.25); }
.footer__bottom a:hover { color: #6fd0f5; }

/* ---------- Pages Prix / Devis ---------- */
.price-table { width: 100%; border-collapse: collapse; margin-top: 2.2rem; background: var(--paper); border: 1px solid var(--line); }
.price-table th, .price-table td { text-align: left; padding: 1.1rem 1.4rem; border-bottom: 1px solid var(--line); font-size: .98rem; }
.price-table thead th { font-family: var(--sans); font-size: .72rem; font-weight: 500; letter-spacing: .14em; text-transform: uppercase; color: var(--ink-faint); background: var(--ivory); }
.price-table td { color: var(--ink-soft); }
.price-table td.price { font-family: var(--serif); font-size: 1.25rem; color: var(--ink); white-space: nowrap; text-align: right; }
.price-table tbody tr:last-child td { border-bottom: 0; }
.price-note { font-size: .82rem; color: var(--ink-faint); margin-top: 1.1rem; max-width: 60em; }
.factor-list { list-style: none; margin-top: 2rem; max-width: 60em; }
.factor-list li { padding: .9rem 0 .9rem 1.8rem; border-bottom: 1px solid var(--line); color: var(--ink-soft); position: relative; }
.factor-list li::before { content: ""; position: absolute; left: 0; top: 1.35rem; width: 7px; height: 7px; border-radius: 50%; background: var(--accent); }
@media (max-width: 540px) { .price-table th, .price-table td { padding: .85rem .9rem; } .price-table td.price { font-size: 1.05rem; } }

/* ---------- Guides / blog ---------- */
.guide .wrap { max-width: 780px; }
.guide-prose h2 { font-family: var(--serif); font-weight: 400; font-size: 1.9rem; color: var(--ink); margin: 2.6rem 0 .9rem; }
.guide-prose h2:first-child { margin-top: 0; }
.guide-prose p { color: var(--ink-soft); margin-bottom: 1.1rem; font-size: 1.03rem; line-height: 1.8; }
.guide-prose ul { margin: 0 0 1.3rem; padding: 0; list-style: none; }
.guide-prose li { color: var(--ink-soft); padding: .5rem 0 .5rem 1.7rem; position: relative; line-height: 1.7; }
.guide-prose li::before { content: ""; position: absolute; left: 0; top: 1.05rem; width: 6px; height: 6px; border-radius: 50%; background: var(--accent); }
.guide-prose a { color: var(--accent); border-bottom: 1px solid transparent; transition: border-color .2s; }
.guide-prose a:hover { border-color: var(--accent); }
.guide-prose strong { color: var(--ink); font-weight: 500; }
.guide-prose em { color: var(--ink-faint); font-size: .96rem; }

/* ---------- Menu déroulant (Savoir-faire) ---------- */
.nav-item { position: relative; display: inline-flex; align-items: center; }
.nav-trigger { font-family: var(--sans); font-size: .82rem; font-weight: 400; letter-spacing: .04em; color: var(--ink); background: none; border: 0; cursor: pointer; display: inline-flex; align-items: center; gap: .4rem; padding: 0; }
.caret { display: inline-block; width: 0; height: 0; border-left: 3.5px solid transparent; border-right: 3.5px solid transparent; border-top: 4px solid currentColor; opacity: .55; transition: transform .3s; margin-top: 1px; }
.has-dropdown:hover .caret, .has-dropdown:focus-within .caret, .nav-item.open .caret { transform: rotate(180deg); }
.dropdown { position: absolute; top: 100%; left: 50%; margin-top: 14px; transform: translateX(-50%) translateY(8px); min-width: 244px; background: var(--paper); border: 1px solid var(--line); border-radius: 4px; box-shadow: var(--shadow-sm); padding: .6rem; display: flex; flex-direction: column; opacity: 0; visibility: hidden; transition: opacity .25s ease, transform .25s ease; z-index: 120; }
.dropdown::before { content: ""; position: absolute; top: -14px; left: 0; right: 0; height: 14px; }
.has-dropdown:hover .dropdown, .has-dropdown:focus-within .dropdown, .nav-item.open .dropdown { opacity: 1; visibility: visible; transform: translateX(-50%) translateY(0); }
.dropdown a { font-size: .85rem; font-weight: 400; color: var(--ink-soft); padding: .55rem .85rem; border-radius: 2px; white-space: nowrap; transition: background .2s, color .2s; }
.dropdown a::after { display: none; }
.dropdown a:hover { background: var(--ivory); color: var(--ink); }
.dropdown-sep { height: 1px; background: var(--line); margin: .45rem .4rem; }

@media (max-width: 820px) {
  .nav.open { overflow-y: auto; gap: 1.3rem; padding: 5.5rem 1.5rem 3rem; justify-content: flex-start; }
  .nav.open .nav-item { flex-direction: column; align-items: center; }
  .nav.open .nav-trigger { font-family: var(--serif); font-size: 2rem; color: var(--ink); }
  .nav.open .caret { display: none; }
  .nav.open .dropdown { position: static; transform: none; opacity: 1; visibility: visible; box-shadow: none; border: 0; background: transparent; padding: .5rem 0 0; min-width: 0; margin-top: 0; align-items: center; gap: .1rem; }
  .nav.open .dropdown::before { display: none; }
  .nav.open .dropdown a { font-family: var(--sans); font-size: 1.05rem; color: var(--ink-soft); padding: .35rem .5rem; white-space: normal; text-align: center; }
  .nav.open .dropdown-sep { display: none; }
}
