/* ============================================================
   EFFI PAC — La Cambe (14)
   Palette : Bleu nuit + orange logo + cyan logo + creme
   Typo : Bricolage Grotesque (titres) + IBM Plex Sans (body)
   ============================================================ */

:root {
  /* Palette alignee logo EFFI PAC : orange soleil + cyan flocon sur fond ink */
  --ink: #0A1626;
  --ink-2: #142236;
  --ink-3: #1D2E48;
  --copper: #ED8024;        /* orange logo "soleil" — accent principal chaud */
  --copper-2: #D86E14;      /* orange hover */
  --copper-soft: #F4A85F;   /* orange clair */
  --cyan: #29B5DC;          /* cyan logo "flocon" — accent secondaire froid */
  --cyan-2: #1A99BD;        /* cyan hover */
  --cyan-soft: #7ED1EE;     /* cyan clair */
  --cream: #F5EFE6;
  --cream-2: #EDE4D5;
  --stone: #5E6B7E;
  --line: #DCD3C4;
  --line-dark: rgba(255,255,255,.10);
  --paper: #FFFFFF;
  --shadow-1: 0 6px 24px -10px rgba(10,22,38,.20);
  --shadow-2: 0 24px 60px -28px rgba(10,22,38,.45);
  --radius-s: 8px;
  --radius-m: 14px;
  --radius-l: 22px;
  --ff-title: 'Bricolage Grotesque', 'Inter', system-ui, sans-serif;
  --ff-body: 'IBM Plex Sans', system-ui, -apple-system, sans-serif;
  --ff-mono: 'IBM Plex Mono', ui-monospace, monospace;
}

* { margin: 0; padding: 0; box-sizing: border-box; }

html { scroll-behavior: smooth; overflow-x: hidden; -webkit-text-size-adjust: 100%; }
@media (max-width: 768px), (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
}
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}
body {
  font-family: var(--ff-body);
  color: var(--ink);
  background: var(--cream);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
  width: 100%;
  font-weight: 400;
}

section { overflow-x: clip; }

img { max-width: 100%; display: block; }

a { color: inherit; text-decoration: none; }

h1, h2, h3, h4 {
  font-family: var(--ff-title);
  font-weight: 700;
  letter-spacing: -0.02em;
  line-height: 1.1;
  color: var(--ink);
}

/* ============ CONTAINER ============ */
.container { max-width: 1240px; margin: 0 auto; padding: 0 28px; }
.container-narrow { max-width: 880px; margin: 0 auto; padding: 0 28px; }

/* ============ PRELOADER ============ */
#preloader {
  position: fixed; inset: 0;
  background: var(--ink);
  display: flex; flex-direction: column;
  align-items: center; justify-content: center;
  z-index: 9999;
  transition: opacity .6s ease, visibility .6s;
}
#preloader.hide { opacity: 0; visibility: hidden; }
.pre-anim {
  position: relative;
  width: 88px; height: 88px;
  display: grid; place-items: center;
}
.pre-arc {
  position: absolute; inset: 0;
  border: 2px solid transparent;
  border-top-color: var(--copper);
  border-radius: 50%;
  animation: spin 1.2s linear infinite;
}
.pre-arc:nth-child(2) { inset: 10px; border-top-color: var(--cyan); animation-duration: 1.8s; animation-direction: reverse; }
.pre-arc:nth-child(3) { inset: 22px; border-top-color: var(--cream); animation-duration: 2.4s; }
.pre-anim .fa-snowflake {
  color: var(--cyan);
  font-size: 22px;
}
@keyframes spin { to { transform: rotate(360deg); } }
.pre-label {
  margin-top: 22px;
  font-family: var(--ff-title);
  letter-spacing: .5em;
  color: var(--cream);
  font-size: 13px;
  font-weight: 600;
  text-indent: .5em;
}

/* ============ HEADER ============ */
.site-header {
  position: fixed; top: 0; left: 0; right: 0;
  z-index: 100;
  background: rgba(245, 239, 230, 0.88);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid transparent;
  transition: border-color .3s, background .3s, box-shadow .3s;
}
.site-header.scrolled {
  border-bottom-color: var(--line);
  background: rgba(245, 239, 230, 0.96);
  box-shadow: 0 8px 30px -16px rgba(10,22,38,.18);
}
.header-inner {
  max-width: 1240px;
  margin: 0 auto;
  padding: 14px 28px;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 32px;
}

.brand { display: flex; align-items: center; gap: 12px; }
.brand-logo-only { gap: 0; }
.brand-logo {
  display: block;
  height: 50px;
  width: auto;
  border-radius: 10px;
  object-fit: contain;
}
@media (max-width: 720px) {
  .brand-logo { height: 42px; }
}
.brand-mark {
  display: grid; place-items: center;
  width: 44px; height: 44px;
  border-radius: 12px;
  background: var(--ink);
  color: var(--copper);
  font-family: var(--ff-title);
  font-weight: 800;
  font-size: 17px;
  letter-spacing: -.02em;
}
.brand-text strong {
  display: block;
  font-family: var(--ff-title);
  font-weight: 700;
  font-size: 17px;
  letter-spacing: .02em;
  line-height: 1;
  color: var(--ink);
}
.brand-text small {
  display: block;
  font-size: 11.5px;
  color: var(--stone);
  letter-spacing: .04em;
  margin-top: 3px;
}

.primary-nav { display: flex; justify-content: center; gap: 28px; }
.primary-nav a {
  position: relative;
  font-size: 14.5px;
  font-weight: 500;
  color: var(--ink);
  padding: 8px 2px;
  transition: color .2s;
}
.primary-nav a::after {
  content: '';
  position: absolute; left: 0; right: 0; bottom: 0;
  height: 2px;
  background: var(--copper);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .25s;
}
.primary-nav a:hover { color: var(--copper); }
.primary-nav a:hover::after { transform: scaleX(1); }

.header-cta { display: flex; align-items: center; gap: 12px; }

.phone-pill {
  display: inline-flex; align-items: center; gap: 9px;
  padding: 10px 14px;
  min-height: 44px;
  border: 1px solid var(--ink);
  border-radius: 999px;
  font-size: 14px;
  font-weight: 600;
  transition: background .2s, color .2s;
}
.phone-pill:hover { background: var(--ink); color: var(--cream); }
.phone-pill:active { background: var(--ink); color: var(--cream); }
.phone-pill i { color: var(--copper); }

.btn-cta {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 12px 18px;
  background: var(--copper);
  color: var(--cream);
  border-radius: 999px;
  font-weight: 600;
  font-size: 14px;
  transition: background .2s, transform .2s;
}
.btn-cta:hover { background: var(--copper-2); transform: translateY(-1px); }

.mobile-toggle {
  display: none;
  width: 44px; height: 44px;
  background: var(--ink);
  border: none;
  border-radius: 12px;
  cursor: pointer;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 4px;
}
.mobile-toggle span {
  display: block;
  width: 18px; height: 2px;
  background: var(--cream);
  border-radius: 2px;
  transition: transform .2s, opacity .2s;
}
.mobile-toggle.active span:nth-child(1) { transform: translateY(6px) rotate(45deg); }
.mobile-toggle.active span:nth-child(2) { opacity: 0; }
.mobile-toggle.active span:nth-child(3) { transform: translateY(-6px) rotate(-45deg); }

/* ============ MOBILE MENU ============ */
.mobile-menu {
  position: fixed; top: 0; left: 0;
  width: 100%; height: 100vh;
  background: var(--ink);
  color: var(--cream);
  z-index: 99;
  padding: 100px 28px 40px;
  transform: translateX(100%);
  visibility: hidden;
  transition: transform .35s ease, visibility .35s;
  overflow-y: auto;
}
.mobile-menu.open { transform: translateX(0); visibility: visible; }
.mobile-inner { display: flex; flex-direction: column; gap: 4px; }
.mobile-menu a {
  display: block;
  padding: 16px 0;
  border-bottom: 1px solid rgba(255,255,255,.08);
  font-family: var(--ff-title);
  font-size: 22px;
  font-weight: 600;
}
.mobile-foot {
  margin-top: 32px;
  display: flex; flex-direction: column; gap: 12px;
}
.mobile-foot a {
  font-family: var(--ff-body);
  font-size: 15px; font-weight: 500;
  border: none; padding: 12px 0;
  color: var(--copper-soft);
}
.mobile-foot a i { margin-right: 10px; color: var(--copper); }

/* ============ HERO ============ */
.hero {
  position: relative;
  padding: 130px 0 0;
  background: var(--ink);
  color: var(--cream);
  overflow: hidden;
}
.hero-bg-grid {
  position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(245,239,230,.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(245,239,230,.04) 1px, transparent 1px);
  background-size: 60px 60px;
  pointer-events: none;
  mask-image: linear-gradient(180deg, rgba(0,0,0,.6) 0%, rgba(0,0,0,.1) 100%);
}
.hero::before {
  content: '';
  position: absolute;
  top: -150px; left: -150px;
  width: 500px; height: 500px;
  background: radial-gradient(circle, rgba(237,128,36,.18), transparent 70%);
  border-radius: 50%;
  pointer-events: none;
}

.hero-wrap {
  position: relative;
  z-index: 1;
  max-width: 1240px;
  margin: 0 auto;
  padding: 30px 28px 70px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-areas:
    "kicker photo"
    "title  photo"
    "lede   photo"
    "ctas   photo"
    "stars  photo";
  column-gap: 56px;
  row-gap: 0;
  align-items: center;
}

.hero-text { display: contents; }

.hero-kicker { grid-area: kicker; }
.hero h1 { grid-area: title; }
.hero-photo { grid-area: photo; }
.hero-lede { grid-area: lede; }
.hero-actions { grid-area: ctas; }
.hero-stars { grid-area: stars; }

.hero-photo {
  position: relative;
  border-radius: var(--radius-l);
  overflow: hidden;
  background: var(--ink-2);
  box-shadow: 0 30px 80px -30px rgba(0,0,0,.6);
  aspect-ratio: 7/6;
  max-height: 620px;
  align-self: center;
  margin: 0;
  width: 100%;
}
.hero-photo img {
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center;
}
.hero-photo-tag {
  position: absolute;
  left: 16px; bottom: 16px;
  display: inline-flex; align-items: center; gap: 10px;
  padding: 10px 16px;
  background: rgba(10,22,38,.85);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border: 1px solid rgba(245,239,230,.18);
  border-radius: 999px;
  color: var(--cream);
  font-size: 12.5px;
  font-weight: 500;
  letter-spacing: .02em;
}
.tag-dot {
  display: inline-block;
  width: 7px; height: 7px;
  background: var(--copper);
  border-radius: 50%;
  box-shadow: 0 0 0 4px rgba(237,128,36,.25);
}

.hero-kicker {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 9px 16px;
  border: 1px solid rgba(245, 239, 230, .25);
  border-radius: 999px;
  font-size: 13px;
  font-weight: 500;
  letter-spacing: .04em;
  color: var(--cream);
  background: rgba(255,255,255,.04);
  margin-bottom: 26px;
}
.hero-kicker .dot {
  width: 8px; height: 8px;
  background: var(--copper);
  border-radius: 50%;
  box-shadow: 0 0 0 4px rgba(237,128,36,.25);
  animation: pulse 2.4s ease-in-out infinite;
}
@keyframes pulse {
  0%, 100% { box-shadow: 0 0 0 4px rgba(237,128,36,.20); }
  50% { box-shadow: 0 0 0 10px rgba(237,128,36,0); }
}

.hero h1 {
  font-size: clamp(36px, 4.4vw, 64px);
  line-height: 1.05;
  font-weight: 700;
  letter-spacing: -.025em;
  color: var(--cream);
  margin-bottom: 22px;
}
.hero h1 em {
  font-style: normal;
  color: var(--copper-soft);
  font-weight: 600;
  display: block;
  margin-top: 6px;
}

.hero-lede {
  font-size: 16.5px;
  line-height: 1.65;
  color: rgba(245,239,230,.82);
  margin-bottom: 30px;
  max-width: 52ch;
}

.hero-actions {
  display: flex; flex-wrap: wrap; gap: 14px;
  margin-bottom: 38px;
}

.btn-primary {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 16px 24px;
  background: var(--copper);
  color: var(--cream);
  border: none;
  border-radius: 999px;
  font-family: var(--ff-body);
  font-weight: 600;
  font-size: 15px;
  cursor: pointer;
  transition: background .2s, transform .2s, box-shadow .2s;
  box-shadow: 0 14px 30px -14px rgba(237,128,36,.6);
}
.btn-primary:hover { background: var(--copper-2); transform: translateY(-2px); }

.btn-ghost {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 16px 24px;
  background: transparent;
  color: var(--cream);
  border: 1px solid rgba(245, 239, 230, .35);
  border-radius: 999px;
  font-weight: 600;
  font-size: 15px;
  transition: background .2s, border-color .2s;
}
.btn-ghost:hover { background: rgba(245,239,230,.08); border-color: var(--cream); }

.btn-ghost-light { color: var(--cream); border-color: rgba(245,239,230,.4); }

.btn-block { display: inline-flex; justify-content: center; width: 100%; padding: 18px 24px; }

.hero-stars {
  display: inline-flex; align-items: center; gap: 14px;
  padding: 14px 20px 14px 18px;
  background: rgba(255,255,255,.07);
  border: 1px solid rgba(245,239,230,.18);
  border-radius: 999px;
  font-size: 14px;
  color: var(--cream);
  backdrop-filter: blur(8px);
  transition: background .2s, border-color .2s;
}
.hero-stars:hover { background: rgba(255,255,255,.12); border-color: rgba(245,239,230,.35); }
.hero-stars .stars {
  color: var(--copper);
  font-size: 17px;
  letter-spacing: 2px;
}
.hero-stars strong { color: var(--cream); font-weight: 700; }
.hero-stars i { color: var(--copper); }

.hero-strip {
  position: relative;
  z-index: 1;
  padding: 18px 0;
  border-top: 1px solid rgba(245,239,230,.10);
  background: rgba(0,0,0,.18);
}
.strip-row {
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 28px;
  display: flex;
  flex-wrap: wrap;
  gap: 16px 40px;
  font-size: 13.5px;
  color: var(--cream);
  letter-spacing: .03em;
  justify-content: space-between;
}
.strip-row span { display: inline-flex; align-items: center; gap: 10px; }
.strip-row i { color: var(--copper-soft); font-size: 13px; width: 18px; text-align: center; }

@media (max-width: 600px) {
  .hero-strip { padding: 0; }
  .strip-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0;
    padding: 0;
    font-size: 12.5px;
    position: relative;
  }
  .strip-row span {
    padding: 16px 16px 16px 22px;
    justify-content: flex-start;
    border-bottom: 1px solid rgba(245,239,230,.10);
  }
  .strip-row span:nth-child(odd) {
    border-right: 1px solid rgba(245,239,230,.10);
  }
  .strip-row span:nth-last-child(-n+2) { border-bottom: none; }
  .strip-row i { width: 16px; font-size: 12px; flex-shrink: 0; }
}

/* ============ EXPERTISE ============ */
.expertise {
  padding: 120px 0;
  background: var(--cream);
  border-bottom: 1px solid var(--line);
}
.exp-grid {
  display: grid;
  grid-template-columns: .85fr 1.15fr;
  gap: 80px;
  align-items: start;
}
.exp-year {
  position: sticky; top: 110px;
  padding: 48px 36px;
  background: var(--ink);
  color: var(--cream);
  border-radius: var(--radius-l);
  text-align: center;
  position: relative;
  overflow: hidden;
}
.exp-year::before {
  content: '';
  position: absolute; top: -40%; right: -30%;
  width: 280px; height: 280px;
  background: radial-gradient(circle, rgba(237,128,36,.35), transparent 70%);
  border-radius: 50%;
}
.exp-label {
  display: block;
  font-family: var(--ff-mono);
  font-size: 12px;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--copper-soft);
  margin-bottom: 12px;
  position: relative;
}
.exp-bignum {
  display: block;
  font-family: var(--ff-title);
  font-weight: 800;
  font-size: clamp(110px, 14vw, 180px);
  line-height: .85;
  color: var(--copper);
  letter-spacing: -.04em;
  position: relative;
}
.exp-sub {
  display: block;
  margin-top: 18px;
  font-size: 14px;
  color: rgba(245,239,230,.7);
  position: relative;
}

.eyebrow {
  display: flex; align-items: center; justify-content: center; gap: 14px;
  font-family: var(--ff-mono);
  font-size: 11.5px;
  letter-spacing: .25em;
  text-transform: uppercase;
  color: var(--copper-2);
  margin-bottom: 18px;
  font-weight: 500;
}
.eyebrow span {
  display: inline-block;
  width: 26px; height: 1px;
  background: var(--copper-2);
}
.eyebrow-light { color: var(--copper-soft); }
.eyebrow-light span { background: var(--copper-soft); }

.exp-text .eyebrow {
  justify-content: flex-start;
  margin-bottom: 18px;
}
.exp-text h2 {
  font-size: clamp(28px, 3.2vw, 44px);
  margin-bottom: 22px;
  max-width: 16ch;
}
.exp-text .lede {
  font-size: 17px;
  line-height: 1.7;
  color: var(--stone);
  margin-bottom: 32px;
  max-width: 56ch;
}

.id-card {
  border-top: 1px solid var(--line);
}
.id-row {
  display: grid;
  grid-template-columns: 170px 1fr;
  padding: 16px 0;
  border-bottom: 1px solid var(--line);
  gap: 24px;
  align-items: baseline;
}
.id-row span {
  font-family: var(--ff-mono);
  font-size: 11.5px;
  letter-spacing: .15em;
  text-transform: uppercase;
  color: var(--stone);
}
.id-row strong {
  font-weight: 500;
  font-size: 15.5px;
  color: var(--ink);
}

/* ============ SECTION HEAD ============ */
.section-head {
  text-align: center;
  margin-bottom: 60px;
}
.section-head h2 {
  font-size: clamp(28px, 3.2vw, 44px);
  margin-bottom: 18px;
  max-width: 22ch;
  margin-left: auto;
  margin-right: auto;
}
.section-head .section-lede {
  max-width: 640px;
  margin: 0 auto;
  color: var(--stone);
  font-size: 16.5px;
  line-height: 1.65;
}
.section-head-light h2 { color: var(--cream); }
.section-head-light .section-lede { color: rgba(245,239,230,.75); }

/* ============ SERVICES ============ */
.services {
  padding: 120px 0;
  background: var(--paper);
}
.srv-list {
  max-width: 980px;
  margin: 0 auto;
  list-style: none;
}
.srv-item {
  display: grid;
  grid-template-columns: 140px 1fr;
  gap: 36px;
  padding: 40px 0;
  border-top: 1px solid var(--line);
  align-items: start;
  position: relative;
  transition: padding-left .3s;
}
.srv-item:last-child { border-bottom: 1px solid var(--line); }
.srv-item:hover { padding-left: 16px; }
.srv-item:hover::before {
  content: '';
  position: absolute; left: 0; top: 40px; bottom: 40px;
  width: 4px;
  background: var(--copper);
  border-radius: 2px;
}
.srv-num {
  font-family: var(--ff-title);
  font-weight: 800;
  font-size: 64px;
  line-height: 1;
  color: var(--copper);
  letter-spacing: -.05em;
}
.srv-item:nth-child(even) .srv-num { color: var(--ink); }
.srv-body h3 {
  font-size: clamp(22px, 2.4vw, 30px);
  margin-bottom: 12px;
}
.srv-body p {
  font-size: 16px;
  line-height: 1.65;
  color: var(--stone);
  margin-bottom: 18px;
  max-width: 60ch;
}
.srv-tags {
  display: flex; flex-wrap: wrap; gap: 8px;
  list-style: none;
}
.srv-tags li {
  padding: 6px 12px;
  background: var(--cream);
  border: 1px solid var(--line);
  border-radius: 999px;
  font-size: 12.5px;
  font-weight: 500;
  color: var(--ink);
}

/* ============ REVIEWS ============ */
.reviews {
  padding: 110px 0;
  background: var(--ink);
  color: var(--cream);
  position: relative;
}
.rv-grid {
  display: grid;
  grid-template-columns: .8fr 1.2fr;
  gap: 60px;
  align-items: start;
}
.rv-aside .eyebrow {
  justify-content: flex-start;
  margin-bottom: 22px;
}
.rv-title {
  font-size: clamp(28px, 3.2vw, 40px);
  color: var(--cream);
  margin-bottom: 18px;
  max-width: 14ch;
  line-height: 1.1;
}
.rv-intro {
  font-size: 15.5px;
  line-height: 1.65;
  color: rgba(245,239,230,.72);
  margin-bottom: 26px;
  max-width: 38ch;
}
.rv-link {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 14px 22px;
  background: var(--copper);
  color: var(--cream);
  border-radius: 999px;
  font-weight: 600;
  font-size: 14px;
  transition: background .2s, transform .2s;
}
.rv-link:hover { background: var(--copper-2); transform: translateY(-2px); }

.rv-cards { display: flex; flex-direction: column; gap: 18px; }
.rv-card {
  padding: 24px 26px;
  background: rgba(255,255,255,.04);
  border: 1px solid rgba(255,255,255,.08);
  border-radius: var(--radius-m);
}
.rv-card-top {
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 14px;
  align-items: center;
  margin-bottom: 14px;
}
.rv-avatar {
  display: grid; place-items: center;
  width: 44px; height: 44px;
  border-radius: 50%;
  background: var(--copper);
  color: var(--cream);
  font-family: var(--ff-title);
  font-weight: 700;
  font-size: 16px;
}
.rv-card-top strong {
  display: block;
  font-weight: 600;
  font-size: 15px;
  color: var(--cream);
}
.rv-card-top small {
  display: block;
  font-size: 12.5px;
  color: rgba(245,239,230,.55);
}
.rv-card-stars {
  color: var(--copper);
  font-size: 15px;
  letter-spacing: 2px;
}
.rv-card p {
  color: rgba(245,239,230,.88);
  font-size: 15px;
  line-height: 1.65;
}

/* ============ WORKS ============ */
.works {
  padding: 120px 0;
  background: var(--cream);
}
.works-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}
.work {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius-m);
  background: var(--ink);
  aspect-ratio: 1/1;
}
.work-tall { aspect-ratio: 1/1; }
.work img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform .6s ease;
}
.work:hover img { transform: scale(1.06); }
.work figcaption {
  position: absolute;
  left: 0; right: 0; bottom: 0;
  padding: 16px 18px;
  background: linear-gradient(0deg, rgba(10,22,38,.92) 0%, rgba(10,22,38,0) 100%);
  color: var(--cream);
  font-size: 14px;
  font-weight: 500;
  letter-spacing: .01em;
}

/* ============ METHOD ============ */
.method {
  padding: 120px 0;
  background: var(--ink);
  color: var(--cream);
  position: relative;
  overflow: hidden;
}
.method::before {
  content: '';
  position: absolute; left: -150px; top: 50%; transform: translateY(-50%);
  width: 400px; height: 400px;
  background: radial-gradient(circle, rgba(237,128,36,.15), transparent 70%);
  pointer-events: none;
}

.steps-rail {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 0;
  list-style: none;
  position: relative;
}
.steps-rail::before {
  content: '';
  position: absolute;
  top: 38px;
  left: 8%;
  right: 8%;
  height: 1px;
  background: repeating-linear-gradient(90deg, rgba(237,128,36,.4) 0 8px, transparent 8px 16px);
}
.step {
  padding: 0 14px;
  text-align: left;
  position: relative;
}
.step-n {
  display: inline-grid;
  place-items: center;
  width: 72px; height: 72px;
  border-radius: 18px;
  background: var(--ink-2);
  border: 1px solid rgba(245,239,230,.12);
  font-family: var(--ff-title);
  font-weight: 800;
  font-size: 26px;
  color: var(--copper);
  margin-bottom: 22px;
  position: relative;
  z-index: 1;
}
.step h3 {
  font-size: 19px;
  color: var(--cream);
  margin-bottom: 10px;
}
.step p {
  font-size: 14px;
  line-height: 1.6;
  color: rgba(245,239,230,.7);
}

/* ============ ZONE ============ */
.zone {
  padding: 120px 0;
  background: var(--paper);
}
.zone-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 50px;
  align-items: stretch;
}
.zone-map {
  border-radius: var(--radius-l);
  overflow: hidden;
  background: var(--ink);
  box-shadow: var(--shadow-2);
  min-width: 0;
  max-width: 100%;
}
.zone-map iframe {
  width: 100%;
  height: 480px;
  border: none;
  display: block;
  filter: saturate(.9);
}
.zone-cities {
  padding: 6px 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.zone-pillgroup-title {
  font-family: var(--ff-mono);
  font-size: 11.5px;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--stone);
  margin-bottom: 22px;
}
.zone-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  list-style: none;
  margin-bottom: 26px;
}
.zone-pills li {
  padding: 10px 16px;
  background: var(--cream);
  border: 1px solid var(--line);
  border-radius: 999px;
  font-size: 14px;
  font-weight: 500;
  color: var(--ink);
  transition: background .2s, border-color .2s, color .2s;
}
.zone-pills li:hover {
  background: var(--ink);
  border-color: var(--ink);
  color: var(--copper);
}
.zone-note {
  font-size: 14.5px;
  color: var(--stone);
  background: var(--cream);
  padding: 14px 16px;
  border-radius: var(--radius-s);
  border-left: 3px solid var(--copper);
}
.zone-note i { color: var(--copper); margin-right: 8px; }
.zone-note a { color: var(--ink); font-weight: 600; text-decoration: underline; }

/* ============ DEVIS ============ */
.devis {
  padding: 120px 0;
  background: var(--ink);
  color: var(--cream);
}
.devis-grid {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 70px;
  align-items: start;
}
.devis-text .eyebrow {
  justify-content: flex-start;
}
.devis-text h2 {
  color: var(--cream);
  font-size: clamp(28px, 3.2vw, 44px);
  margin-bottom: 18px;
  max-width: 14ch;
}
.devis-lede {
  color: rgba(245,239,230,.75);
  font-size: 16.5px;
  line-height: 1.65;
  margin-bottom: 28px;
  max-width: 50ch;
}
.devis-bullets {
  list-style: none;
  display: flex; flex-direction: column;
  gap: 12px;
  margin-bottom: 36px;
}
.devis-bullets li {
  display: flex; align-items: center; gap: 12px;
  font-size: 15px;
  color: var(--cream);
}
.devis-bullets i {
  color: var(--copper);
  font-size: 13px;
  width: 22px; height: 22px;
  display: grid; place-items: center;
  border-radius: 50%;
  background: rgba(237,128,36,.15);
}
.devis-contact {
  display: flex; flex-direction: column; gap: 10px;
  padding-top: 24px;
  border-top: 1px solid rgba(245,239,230,.10);
}
.devis-contact a {
  display: inline-flex; align-items: center; gap: 12px;
  font-size: 15px;
  color: var(--cream);
  transition: color .2s;
}
.devis-contact a:hover { color: var(--copper-soft); }
.devis-contact i { color: var(--copper); width: 18px; }

.devis-form {
  padding: 34px;
  background: var(--cream);
  color: var(--ink);
  border-radius: var(--radius-l);
  box-shadow: var(--shadow-2);
}
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
  margin-bottom: 14px;
}
.devis-form label {
  display: block;
  font-family: var(--ff-mono);
  font-size: 11.5px;
  letter-spacing: .15em;
  text-transform: uppercase;
  color: var(--stone);
  font-weight: 500;
}
.devis-form label.full { margin-bottom: 14px; }
.devis-form input,
.devis-form select,
.devis-form textarea {
  display: block;
  width: 100%;
  margin-top: 6px;
  padding: 12px 14px;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius-s);
  font-family: var(--ff-body);
  font-size: 15px;
  color: var(--ink);
  transition: border-color .2s, box-shadow .2s;
}
.devis-form input:focus,
.devis-form select:focus,
.devis-form textarea:focus {
  outline: none;
  border-color: var(--copper);
  box-shadow: 0 0 0 3px rgba(237,128,36,.15);
}
.devis-form textarea { resize: vertical; min-height: 110px; }
.form-mention {
  margin-top: 14px;
  font-family: var(--ff-body);
  font-size: 12px;
  color: var(--stone);
  text-transform: none;
  letter-spacing: normal;
  text-align: center;
}
.form-mention a { color: var(--copper-2); text-decoration: underline; }

/* ============ FAQ ============ */
.faq {
  padding: 120px 0;
  background: var(--cream);
}
.faq-list { display: flex; flex-direction: column; gap: 10px; }
.faq-list details {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius-m);
  padding: 4px 22px;
  transition: border-color .2s, box-shadow .2s;
}
.faq-list details[open] {
  border-color: var(--copper);
  box-shadow: var(--shadow-1);
}
.faq-list summary {
  list-style: none;
  cursor: pointer;
  padding: 18px 0;
  font-family: var(--ff-title);
  font-weight: 600;
  font-size: 17px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
}
.faq-list summary::-webkit-details-marker { display: none; }
.faq-list summary::after {
  content: '+';
  display: grid; place-items: center;
  width: 30px; height: 30px;
  background: var(--ink);
  color: var(--copper);
  border-radius: 50%;
  font-size: 18px;
  font-weight: 400;
  transition: transform .2s, background .2s;
  flex-shrink: 0;
}
.faq-list details[open] summary::after {
  content: '×';
  transform: rotate(0);
  background: var(--copper);
  color: var(--cream);
}
.faq-list details p {
  padding: 0 0 20px;
  color: var(--stone);
  font-size: 15.5px;
  line-height: 1.65;
  max-width: 64ch;
}

/* ============ CTA FINAL ============ */
.cta-final {
  padding: 100px 0;
  background: var(--paper);
}
.cta-box {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 40px;
  align-items: center;
  padding: 50px 56px;
  background: linear-gradient(135deg, var(--ink) 0%, var(--ink-3) 100%);
  border-radius: var(--radius-l);
  color: var(--cream);
  position: relative;
  overflow: hidden;
  box-shadow: var(--shadow-2);
}
.cta-box::before {
  content: '';
  position: absolute; top: -100px; right: -100px;
  width: 320px; height: 320px;
  background: radial-gradient(circle, rgba(237,128,36,.25), transparent 70%);
  border-radius: 50%;
}
.cta-box h2 {
  font-size: clamp(24px, 2.8vw, 34px);
  color: var(--cream);
  margin-bottom: 10px;
  max-width: 16ch;
  position: relative;
}
.cta-box p {
  color: rgba(245,239,230,.75);
  font-size: 15.5px;
  position: relative;
}
.cta-actions {
  display: flex; flex-wrap: wrap; gap: 14px;
  position: relative;
  justify-content: flex-end;
}

/* ============ FOOTER ============ */
.site-footer {
  padding: 80px 0 30px;
  background: var(--ink);
  color: rgba(245,239,230,.6);
  font-size: 14.5px;
}
.foot-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 50px;
  margin-bottom: 50px;
}
.foot-logo {
  display: block;
  width: auto;
  height: 64px;
  margin-bottom: 20px;
  border-radius: 10px;
  object-fit: contain;
}
.foot-brand p { font-size: 14px; line-height: 1.6; }
.foot-rge {
  display: inline-flex; align-items: center; gap: 8px;
  margin-top: 14px;
  padding: 8px 14px;
  background: rgba(237,128,36,.15);
  border-radius: 999px;
  color: var(--copper-soft);
  font-size: 13px;
}
.foot-rge i { color: var(--copper); }
.foot-rge strong { color: var(--cream); font-weight: 600; }

.foot-col h4 {
  color: var(--cream);
  font-size: 14px;
  margin-bottom: 18px;
  letter-spacing: .04em;
}
.foot-list { list-style: none; display: flex; flex-direction: column; gap: 10px; }
.foot-list li, .foot-list a {
  font-size: 14px;
  color: rgba(245,239,230,.65);
  transition: color .2s;
  display: inline-flex; align-items: flex-start; gap: 10px;
}
.foot-list a:hover { color: var(--copper-soft); }
.foot-list li i { color: var(--copper); margin-top: 4px; }

.foot-bottom {
  padding-top: 28px;
  border-top: 1px solid rgba(245,239,230,.08);
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
  font-size: 12.5px;
  color: rgba(245,239,230,.45);
}

/* ============ FLOAT BUTTONS ============ */
.float-wa {
  position: fixed;
  bottom: 22px; right: 22px;
  width: 56px; height: 56px;
  background: #25D366;
  color: white;
  border-radius: 50%;
  display: grid; place-items: center;
  font-size: 26px;
  box-shadow: 0 8px 24px rgba(37,211,102,.4);
  z-index: 80;
  transition: transform .2s;
}
.float-wa:hover { transform: scale(1.08); }

.float-top {
  position: fixed;
  bottom: 90px; right: 22px;
  width: 46px; height: 46px;
  background: var(--ink);
  color: var(--copper);
  border: none;
  border-radius: 50%;
  display: none;
  place-items: center;
  cursor: pointer;
  font-size: 16px;
  z-index: 80;
  box-shadow: var(--shadow-1);
  transition: transform .2s;
}
.float-top.show { display: grid; }
.float-top:hover { transform: translateY(-3px); }

/* ============ COOKIE ============ */
.cookie-banner {
  position: fixed;
  bottom: 18px; left: 18px;
  max-width: 380px;
  padding: 16px 18px;
  background: var(--ink);
  color: var(--cream);
  border-radius: var(--radius-m);
  z-index: 90;
  font-size: 13px;
  line-height: 1.5;
  box-shadow: var(--shadow-2);
  border: 1px solid rgba(245,239,230,.1);
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.cookie-banner p { margin: 0; color: rgba(245,239,230,.85); }
.cookie-banner button {
  align-self: flex-end;
  padding: 10px 18px;
  min-height: 38px;
  background: var(--copper);
  color: var(--cream);
  border: none;
  border-radius: 999px;
  cursor: pointer;
  font-family: var(--ff-body);
  font-size: 13px;
  font-weight: 600;
  transition: background .2s;
}
.cookie-banner button:hover { background: var(--copper-2); }
@media (max-width: 600px) {
  .cookie-banner {
    left: 10px; right: 10px;
    bottom: calc(10px + env(safe-area-inset-bottom, 0px));
    max-width: none;
    flex-direction: row;
    align-items: center;
    gap: 10px;
    padding: 12px 14px;
    font-size: 12px;
  }
  .cookie-banner p { flex: 1; }
  .cookie-banner button { align-self: stretch; flex-shrink: 0; padding: 10px 14px; }
}

/* ============ LEGAL PAGES ============ */
.legal-page {
  padding: 160px 0 80px;
  background: var(--cream);
  min-height: 80vh;
}
.legal-page h1 {
  font-size: clamp(32px, 4vw, 52px);
  margin-bottom: 12px;
}
.legal-page .legal-eyebrow {
  font-family: var(--ff-mono);
  font-size: 12px;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--copper-2);
  margin-bottom: 14px;
}
.legal-page h2 {
  font-size: 22px;
  margin: 36px 0 14px;
  color: var(--ink);
}
.legal-page p, .legal-page li {
  color: var(--stone);
  font-size: 15.5px;
  line-height: 1.7;
  margin-bottom: 12px;
}
.legal-page ul { margin-left: 22px; }
.legal-page a { color: var(--copper-2); text-decoration: underline; }

/* ============ 404 ============ */
.notfound {
  min-height: 100vh;
  display: grid; place-items: center;
  background: var(--ink);
  color: var(--cream);
  text-align: center;
  padding: 40px;
}
.notfound-inner { max-width: 540px; }
.notfound-code {
  font-family: var(--ff-title);
  font-weight: 800;
  font-size: clamp(120px, 18vw, 220px);
  line-height: .9;
  color: var(--copper);
  letter-spacing: -.05em;
}
.notfound h1 {
  font-size: clamp(24px, 3vw, 36px);
  color: var(--cream);
  margin: 8px 0 14px;
}
.notfound p { color: rgba(245,239,230,.7); margin-bottom: 32px; }
.notfound-actions {
  display: flex; gap: 14px; justify-content: center;
  flex-wrap: wrap;
}

/* ============ RESPONSIVE ============ */
@media (max-width: 1080px) {
  .primary-nav { display: none; }
  .header-inner { grid-template-columns: auto 1fr; gap: 16px; }
  .mobile-toggle { display: flex; }
  .phone-pill span { display: none; }
  .phone-pill { width: 44px; height: 44px; padding: 0; justify-content: center; }
  .btn-cta { display: none; }

  .hero-wrap {
    grid-template-columns: 1fr;
    grid-template-areas:
      "kicker"
      "title"
      "photo"
      "lede"
      "ctas"
      "stars";
    column-gap: 0;
    row-gap: 24px;
    padding-top: 20px;
  }
  .hero-photo {
    aspect-ratio: 7/6;
    max-height: none;
    max-width: 100%;
    width: 100%;
    margin: 0 auto;
  }

  .exp-grid { grid-template-columns: 1fr; gap: 50px; }
  .exp-year { position: static; padding: 36px 28px; }

  .rv-grid { grid-template-columns: 1fr; gap: 36px; }

  .devis-grid { grid-template-columns: 1fr; gap: 40px; }

  .cta-box { grid-template-columns: 1fr; padding: 40px; text-align: center; }
  .cta-actions { justify-content: center; }
  .cta-box h2 { margin-left: auto; margin-right: auto; }

  .foot-grid { grid-template-columns: 1fr 1fr; gap: 36px; }

  .zone-grid { grid-template-columns: 1fr; gap: 30px; }
  .zone-map iframe { height: 380px; }

  .steps-rail { grid-template-columns: 1fr 1fr; gap: 30px; }
  .steps-rail::before { display: none; }
}

@media (max-width: 720px) {
  .container, .container-narrow { padding: 0 20px; }
  .header-inner { padding: 12px 20px; }
  .brand-text small { display: none; }

  .hero { min-height: auto; padding: 128px 0 0; }
  .hero-wrap { padding: 8px 20px 40px; row-gap: 18px; }
  .hero h1 { font-size: clamp(30px, 8vw, 44px); line-height: 1.08; margin-bottom: 0; }
  .hero h1 em { margin-top: 4px; }
  .hero-kicker { margin-bottom: 0; font-size: 12px; padding: 8px 14px; }
  .hero-lede { font-size: 15.5px; margin-bottom: 0; max-width: 100%; }
  .hero-actions { flex-direction: column; gap: 10px; margin-bottom: 0; }
  .btn-primary, .btn-ghost { width: 100%; justify-content: center; padding: 14px 20px; }
  .hero-stars { font-size: 13px; flex-wrap: wrap; padding: 12px 16px; }
  .hero-photo-tag { font-size: 11.5px; padding: 8px 12px; left: 12px; bottom: 12px; }

  .expertise, .services, .reviews, .works, .method, .zone, .devis, .faq, .cta-final { padding: 64px 0; }

  .section-head { margin-bottom: 40px; }
  .section-head h2 { font-size: clamp(24px, 7vw, 32px); margin-bottom: 14px; }
  .section-head .section-lede { font-size: 15px; }

  .exp-text h2, .devis-text h2 { font-size: clamp(24px, 7vw, 32px); }
  .exp-bignum { font-size: clamp(72px, 22vw, 110px); }
  .exp-year { padding: 28px 22px; }
  .exp-text .lede { font-size: 15.5px; }
  .id-row { grid-template-columns: 1fr; gap: 4px; padding: 12px 0; }
  .id-row span { font-size: 11px; }
  .id-row strong { font-size: 15px; }

  .srv-list { max-width: 100%; }
  .srv-item {
    grid-template-columns: 1fr;
    gap: 10px;
    padding: 28px 0;
  }
  .srv-item:hover { padding-left: 0; }
  .srv-item:hover::before { display: none; }
  .srv-num { font-size: 38px; }
  .srv-body h3 { font-size: clamp(19px, 5.2vw, 24px); }
  .srv-body p { font-size: 15px; }

  .works-grid { grid-template-columns: 1fr 1fr; gap: 10px; }
  .work, .work-tall { grid-column: auto; aspect-ratio: 1/1; }
  .work figcaption { font-size: 12px; padding: 12px 12px 10px; }

  .steps-rail { grid-template-columns: 1fr; gap: 20px; }
  .step { padding: 0; }
  .step-n { width: 54px; height: 54px; font-size: 20px; margin-bottom: 14px; }
  .step h3 { font-size: 18px; }

  .form-row { grid-template-columns: 1fr; }
  .devis-form { padding: 22px; }
  .devis-form input, .devis-form select, .devis-form textarea { font-size: 16px; padding: 12px 14px; }
  .devis-bullets li { font-size: 14.5px; }
  .devis-contact a { font-size: 14.5px; min-height: 32px; }

  .rv-title { font-size: clamp(22px, 6vw, 28px); margin-bottom: 12px; }
  .rv-intro { font-size: 14.5px; margin-bottom: 20px; }
  .rv-card { padding: 20px 22px; }
  .rv-card p { font-size: 14.5px; }

  .zone-pills li { font-size: 13.5px; padding: 9px 14px; min-height: 38px; display: inline-flex; align-items: center; }
  .zone-note { font-size: 13.5px; }

  .faq-list summary { font-size: 15.5px; padding: 16px 0; min-height: 56px; }
  .faq-list details p { font-size: 14.5px; padding-bottom: 18px; }
  .faq-list details { padding: 0 18px; }

  .cta-box { padding: 32px 24px; }
  .cta-box h2 { font-size: clamp(22px, 6vw, 28px); }

  .foot-grid { grid-template-columns: 1fr; gap: 28px; }
  .foot-bottom { flex-direction: column; }
  .foot-col h4 { font-size: 13px; }

  .pre-anim { width: 64px; height: 64px; }
  .pre-anim .fa-snowflake { font-size: 18px; }
  .pre-label { font-size: 11px; letter-spacing: .4em; }

  .float-wa { bottom: calc(80px + env(safe-area-inset-bottom, 0px)); right: 16px; }
  .float-top { bottom: calc(146px + env(safe-area-inset-bottom, 0px)); right: 16px; width: 42px; height: 42px; }
}

@media (max-width: 420px) {
  .container, .container-narrow { padding: 0 16px; }
  .header-inner { padding: 12px 16px; gap: 10px; }
  .hero-wrap { padding: 8px 16px 36px; }
  .hero h1 { font-size: clamp(26px, 9vw, 36px); }
  .hero-lede { font-size: 15px; }
  .srv-num { font-size: 34px; }
  .exp-bignum { font-size: 72px; }
  .section-head h2, .exp-text h2, .devis-text h2 { font-size: clamp(22px, 6.8vw, 28px); }
  .hero-strip span { font-size: 11.5px; }
  .strip-row { font-size: 11.5px; }
  .strip-row span { padding: 14px 12px 14px 18px; }
}
@media (max-width: 360px) {
  .hero { padding-top: 120px; }
  .hero-actions { gap: 8px; }
  .work figcaption { font-size: 11px; }
}
