/* ==========================================================================
   NORTHFRAME — styles.css
   Palette : outremer (Klein) / papier froid / minium / encre
   Typo    : Bricolage Grotesque (display) · Instrument Sans (texte) · Space Mono (labels)
   ========================================================================== */

:root {
  /* Couleurs */
  --outremer: #002FA7;
  --outremer-deep: #001E6E;
  --outremer-soft: #2B55C9;
  --papier: #F4F5F0;
  --papier-dim: #E9EAE2;
  --encre: #10122B;
  --minium: #FF4D24;
  --minium-soft: #FF6B47;
  --blanc: #FFFFFF;

  /* Typo */
  --f-display: "Bricolage Grotesque", system-ui, sans-serif;
  --f-body: "Instrument Sans", system-ui, sans-serif;
  --f-mono: "Space Mono", ui-monospace, monospace;

  /* Rythme */
  --maxw: 1180px;
  --gutter: clamp(20px, 4vw, 48px);
  --radius: 14px;
  --ease: cubic-bezier(.22, .8, .26, .99);
}

/* ---------- Reset & base ---------- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; }

body {
  font-family: var(--f-body);
  font-size: 17px;
  line-height: 1.65;
  color: var(--encre);
  background: var(--papier);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

img, svg { display: block; max-width: 100%; }
a { color: inherit; }
ul, ol { list-style: none; }

::selection { background: var(--minium); color: var(--blanc); }

:focus-visible {
  outline: 3px solid var(--minium);
  outline-offset: 3px;
  border-radius: 4px;
}

h1, h2, h3 {
  font-family: var(--f-display);
  line-height: 1.06;
  letter-spacing: -0.015em;
  font-weight: 700;
}

h2 { font-size: clamp(1.9rem, 4.2vw, 3.1rem); }
h3 { font-size: 1.22rem; line-height: 1.25; }

.mono {
  font-family: var(--f-mono);
  font-size: 0.78rem;
  letter-spacing: 0.04em;
}

.eyebrow {
  font-family: var(--f-mono);
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: var(--outremer);
  margin-bottom: 18px;
}
.eyebrow::before {
  content: "";
  display: inline-block;
  width: 26px; height: 2px;
  background: var(--minium);
  vertical-align: middle;
  margin-right: 12px;
}
.eyebrow--light { color: rgba(255,255,255,.85); }

/* ---------- Boutons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  font-family: var(--f-display);
  font-weight: 600;
  font-size: 1rem;
  text-decoration: none;
  padding: 15px 28px;
  border-radius: 100px;
  border: 2px solid transparent;
  transition: transform .25s var(--ease), background .25s var(--ease),
              color .25s var(--ease), border-color .25s var(--ease),
              box-shadow .25s var(--ease);
  cursor: pointer;
}
.btn:hover { transform: translateY(-2px); }
.btn:active { transform: translateY(0); }

.btn--solar {
  background: var(--minium);
  color: var(--blanc);
  box-shadow: 0 10px 28px -10px rgba(255, 77, 36, .55);
}
.btn--solar:hover {
  background: var(--minium-soft);
  box-shadow: 0 14px 34px -10px rgba(255, 77, 36, .65);
}

.btn--ghost {
  border-color: rgba(255,255,255,.4);
  color: var(--blanc);
  background: transparent;
}
.btn--ghost:hover { border-color: var(--blanc); background: rgba(255,255,255,.08); }

.btn--small { padding: 10px 20px; font-size: .92rem; }
.btn--big { padding: 19px 38px; font-size: clamp(1rem, 2.4vw, 1.25rem); }

/* ==========================================================================
   NAVIGATION
   ========================================================================== */
.nav {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 100;
  transition: background .35s var(--ease), box-shadow .35s var(--ease);
}
.nav.is-scrolled {
  background: rgba(0, 30, 110, .85);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  box-shadow: 0 1px 0 rgba(255,255,255,.08);
}

.nav__inner {
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 16px var(--gutter);
  display: flex;
  align-items: center;
  gap: 36px;
}

.nav__logo {
  display: flex;
  align-items: center;
  gap: 11px;
  text-decoration: none;
  color: var(--blanc);
  font-family: var(--f-display);
  font-weight: 700;
  font-size: 1.08rem;
  letter-spacing: -0.01em;
}
.nav__logo-mark {
  width: 28px; height: 28px;
  flex: none;
  transition: transform .3s var(--ease);
}
.nav__logo:hover .nav__logo-mark { transform: translateY(-2px) rotate(-5deg); }

.nav__links {
  display: flex;
  gap: 28px;
  margin-left: auto;
}
.nav__links a {
  text-decoration: none;
  color: rgba(255,255,255,.82);
  font-size: .95rem;
  font-weight: 500;
  transition: color .2s;
}
.nav__links a:hover { color: var(--blanc); }

.nav__burger {
  display: none;
  margin-left: auto;
  background: none;
  border: 0;
  width: 42px; height: 42px;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 7px;
  cursor: pointer;
}
.nav__burger span {
  display: block;
  width: 24px; height: 2px;
  background: var(--blanc);
  transition: transform .3s var(--ease), opacity .3s;
}
.nav__burger[aria-expanded="true"] span:first-child { transform: translateY(4.5px) rotate(45deg); }
.nav__burger[aria-expanded="true"] span:last-child { transform: translateY(-4.5px) rotate(-45deg); }

.nav__mobile {
  display: none;
  flex-direction: column;
  gap: 4px;
  padding: 10px var(--gutter) 26px;
  background: var(--outremer-deep);
}
.nav__mobile a {
  text-decoration: none;
  color: var(--blanc);
  font-family: var(--f-display);
  font-weight: 600;
  font-size: 1.15rem;
  padding: 12px 0;
}
.nav__mobile .btn { margin-top: 12px; align-self: flex-start; }
.nav__mobile.is-open { display: flex; }

/* ==========================================================================
   HERO
   ========================================================================== */
.hero {
  position: relative;
  background:
    radial-gradient(1100px 520px at 82% -10%, var(--outremer-soft) 0%, transparent 55%),
    var(--outremer);
  color: var(--blanc);
  padding: clamp(130px, 16vh, 180px) 0 clamp(70px, 9vh, 110px);
  overflow: hidden;
}

/* Trame de fond façon papier millimétré */
.hero__grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.05) 1px, transparent 1px);
  background-size: 56px 56px;
  mask-image: radial-gradient(closest-side at 70% 40%, black 30%, transparent 100%);
  -webkit-mask-image: radial-gradient(closest-side at 70% 40%, black 30%, transparent 100%);
  pointer-events: none;
}

.hero__inner {
  position: relative;
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 0 var(--gutter);
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(0, .95fr);
  gap: clamp(36px, 5vw, 72px);
  align-items: center;
}

.hero__title {
  font-size: clamp(2.45rem, 5.6vw, 4.3rem);
  font-weight: 800;
  margin-bottom: 24px;
}

.hero__strike {
  position: relative;
  display: inline-block;
  white-space: nowrap;
}
.hero__strike-line {
  position: absolute;
  left: -4%;
  top: 50%;
  width: 108%;
  height: .5em;
  transform: translateY(-50%);
  overflow: visible;
}
.hero__strike-line path {
  fill: none;
  stroke: var(--minium);
  stroke-width: 7;
  stroke-linecap: round;
  stroke-dasharray: 240;
  stroke-dashoffset: 240;
  animation: strike 1s var(--ease) .8s forwards;
}
@keyframes strike { to { stroke-dashoffset: 0; } }

.hero__sub {
  font-size: clamp(1.02rem, 1.6vw, 1.18rem);
  color: rgba(255,255,255,.86);
  max-width: 48ch;
  margin-bottom: 34px;
}
.hero__sub strong { color: var(--blanc); }

.hero__actions { display: flex; flex-wrap: wrap; gap: 14px; }
.hero__note { margin-top: 22px; color: rgba(255,255,255,.6); }

/* Entrée du hero */
.hero__copy > * {
  opacity: 0;
  transform: translateY(22px);
  animation: rise .8s var(--ease) forwards;
}
.hero__copy > *:nth-child(1) { animation-delay: .05s; }
.hero__copy > *:nth-child(2) { animation-delay: .15s; }
.hero__copy > *:nth-child(3) { animation-delay: .28s; }
.hero__copy > *:nth-child(4) { animation-delay: .4s; }
.hero__copy > *:nth-child(5) { animation-delay: .5s; }
@keyframes rise { to { opacity: 1; transform: none; } }

.hero__demo {
  opacity: 0;
  transform: translateY(26px) rotate(.6deg);
  animation: rise .9s var(--ease) .35s forwards;
}

/* ---------- Le navigateur miniature ---------- */
.browser {
  background: var(--papier);
  border-radius: var(--radius);
  box-shadow:
    0 1px 0 rgba(255,255,255,.25) inset,
    0 30px 70px -25px rgba(0, 8, 40, .65);
  overflow: hidden;
  transform: rotate(-1deg);
  transition: transform .5s var(--ease);
}
.browser:hover { transform: rotate(0deg) scale(1.01); }

.browser__bar {
  display: flex;
  align-items: center;
  gap: 7px;
  padding: 11px 14px;
  background: var(--papier-dim);
  border-bottom: 1px solid rgba(16,18,43,.08);
}
.browser__dot {
  width: 10px; height: 10px;
  border-radius: 50%;
  background: rgba(16,18,43,.18);
}
.browser__url {
  margin-left: 10px;
  background: var(--blanc);
  color: rgba(16,18,43,.65);
  border-radius: 7px;
  padding: 4px 14px;
  font-size: .72rem;
  flex: 1;
  max-width: 240px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.browser__viewport {
  position: relative;
  aspect-ratio: 16 / 11;
}

.mock {
  position: absolute;
  inset: 0;
  padding: 7%;
  display: flex;
  flex-direction: column;
  gap: 6%;
  opacity: 0;
  transform: translateY(14px) scale(.985);
  transition: opacity .55s var(--ease), transform .55s var(--ease);
  pointer-events: none;
}
.mock.is-active { opacity: 1; transform: none; }

/* éléments génériques des maquettes */
.mock i { display: block; border-radius: 4px; }
.m-nav { display: flex; align-items: center; gap: 5%; height: 7%; }
.m-nav.minimal { justify-content: space-between; }
.m-logo { width: 9%; height: 100%; }
.m-logo.round { border-radius: 50%; aspect-ratio: 1; height: auto; width: 6%; }
.m-logo.square { border-radius: 2px; width: 6%; }
.m-link { width: 8%; height: 38%; opacity: .5; }
.m-pill { margin-left: auto; width: 14%; height: 90%; border-radius: 100px; }
.m-h1 { height: 12px; width: 86%; border-radius: 5px; }
.m-h1.short { width: 60%; }
.m-h1.center { margin-inline: auto; width: 55%; }
.m-p { height: 6px; width: 92%; opacity: .55; }
.m-p.tiny { width: 70%; }
.m-p.center { margin-inline: auto; }
.m-btn { height: 16px; width: 34%; border-radius: 100px; margin-top: 4px; }
.m-line { height: 6px; width: 100%; opacity: .6; }
.m-line.short { width: 65%; }
.m-line.tiny { height: 5px; width: 50%; }
.m-line.tiny.short { width: 32%; }

/* Mock 1 — fleuriste */
.mock--florist { background: #F7F2EC; }
.mock--florist .m-nav i { background: #2E4636; }
.mock--florist .m-pill { background: #C66B8E; }
.mock--florist .m-hero { display: flex; gap: 6%; flex: 1; }
.mock--florist .m-hero__txt { flex: 1.1; display: flex; flex-direction: column; gap: 9px; justify-content: center; }
.mock--florist .m-hero__txt i { background: #2E4636; }
.mock--florist .m-hero__txt .m-btn { background: #C66B8E; }
.mock--florist .m-hero__img {
  flex: .9; border-radius: 8px; position: relative; overflow: hidden;
  background: linear-gradient(145deg, #DCE8DA, #F2DEE6);
}
.m-bloom { position: absolute; border-radius: 50%; }
.m-bloom.b1 { width: 42%; aspect-ratio: 1; background: #C66B8E; top: 14%; left: 12%; }
.m-bloom.b2 { width: 30%; aspect-ratio: 1; background: #E5A4BC; bottom: 12%; right: 14%; }
.m-bloom.b3 { width: 18%; aspect-ratio: 1; background: #2E4636; bottom: 28%; left: 38%; }
.mock--florist .m-row3 { display: flex; gap: 5%; height: 18%; }
.mock--florist .m-row3 i { flex: 1; background: #E7DECF; border-radius: 7px; }

/* Mock 2 — brasserie */
.mock--brasserie { background: #1C1814; }
.mock--brasserie .m-nav i { background: #E8DCC8; }
.mock--brasserie .m-logo.round { background: #D89E3F; }
.mock--brasserie .m-pill { background: #D89E3F; }
.mock--brasserie .m-banner {
  flex: .9; border-radius: 8px;
  background: linear-gradient(160deg, #2A241D, #3B3128);
  display: flex; flex-direction: column; justify-content: center; gap: 9px;
  padding: 4%;
}
.mock--brasserie .m-banner i { background: #E8DCC8; }
.mock--brasserie .m-banner .m-h1 { background: #D89E3F; }
.mock--brasserie .m-menu { display: flex; gap: 7%; flex: 1; }
.mock--brasserie .m-menu__col { flex: 1; display: flex; flex-direction: column; gap: 10px; justify-content: center; }
.mock--brasserie .m-menu__col i { background: #E8DCC8; }

/* Mock 3 — architecte */
.mock--archi { background: #FCFCFA; }
.mock--archi .m-nav i { background: #17171A; }
.mock--archi .m-masonry {
  flex: 1; display: grid;
  grid-template-columns: 1.3fr 1fr;
  grid-template-rows: 1fr 1fr;
  gap: 4%;
}
.mock--archi .ph { border-radius: 3px; }
.mock--archi .p1 { grid-row: span 2; background: linear-gradient(165deg, #B9BEC4, #82888F); }
.mock--archi .p2 { background: linear-gradient(135deg, #D8D5CE, #B0ACA2); }
.mock--archi .p3 { background: linear-gradient(120deg, #6E747B, #4A4F55); }
.mock--archi .m-caption { display: flex; flex-direction: column; gap: 7px; }
.mock--archi .m-caption i { background: #17171A; }

/* Mock 4 — catalogue céramiste */
.mock--shop { background: #FBF6F0; }
.mock--shop .m-nav i { background: #6B3A2A; }
.mock--shop .m-search { flex: 1; height: 70%; border-radius: 100px; background: #EFE5DA; }
.mock--shop .m-cart { width: 7%; height: 80%; border-radius: 5px; background: #C4502B; }
.mock--shop .m-products { flex: 1; display: grid; grid-template-columns: repeat(4, 1fr); gap: 5%; }
.mock--shop .m-card { display: flex; flex-direction: column; gap: 6px; }
.mock--shop .m-img { flex: 1; border-radius: 6px; }
.mock--shop .i1 { background: linear-gradient(160deg, #D9A188, #B96F4E); }
.mock--shop .i2 { background: linear-gradient(160deg, #C9CBB8, #9A9D85); }
.mock--shop .i3 { background: linear-gradient(160deg, #E3C9A8, #C8A472); }
.mock--shop .i4 { background: linear-gradient(160deg, #A8674A, #7C4630); }
.mock--shop .m-card .m-line { background: #6B3A2A; }
.mock--shop .m-price { height: 5px; width: 30%; background: #C4502B; border-radius: 3px; }

/* Onglets sous le navigateur */
.browser__tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 18px;
  justify-content: center;
}
.browser__tab {
  font-size: .72rem;
  letter-spacing: .05em;
  padding: 7px 15px;
  border-radius: 100px;
  border: 1px solid rgba(255,255,255,.3);
  background: transparent;
  color: rgba(255,255,255,.75);
  cursor: pointer;
  transition: all .25s var(--ease);
}
.browser__tab:hover { border-color: var(--blanc); color: var(--blanc); }
.browser__tab.is-active {
  background: var(--blanc);
  color: var(--outremer);
  border-color: var(--blanc);
  font-weight: 700;
}
.browser__hint {
  text-align: center;
  margin-top: 12px;
  color: rgba(255,255,255,.55);
  font-size: .73rem;
}

/* ==========================================================================
   MARQUEE
   ========================================================================== */
.marquee {
  background: var(--minium);
  color: var(--encre);
  overflow: hidden;
  padding: 14px 0;
  border-top: 3px solid var(--encre);
  border-bottom: 3px solid var(--encre);
}
.marquee__track {
  display: flex;
  gap: 34px;
  width: max-content;
  font-family: var(--f-display);
  font-weight: 700;
  font-size: 1.05rem;
  white-space: nowrap;
  animation: marquee 26s linear infinite;
}
@keyframes marquee { to { transform: translateX(-50%); } }

/* ==========================================================================
   SECTIONS GÉNÉRIQUES
   ========================================================================== */
.section { padding: clamp(80px, 11vh, 130px) 0; }
.section--tight { padding-top: clamp(50px, 7vh, 80px); }

.section__inner {
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 0 var(--gutter);
}
.section__inner--narrow { max-width: 820px; }

.section__head { margin-bottom: clamp(44px, 6vh, 70px); max-width: 720px; }
.section__lede { margin-top: 20px; color: rgba(16,18,43,.72); font-size: 1.08rem; max-width: 56ch; }

.section--ink {
  background: var(--encre);
  color: var(--papier);
}
.section--ink .section__lede { color: rgba(244,245,240,.7); }

/* ---------- Services ---------- */
.services {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.service {
  background: var(--blanc);
  border: 1px solid rgba(16,18,43,.09);
  border-radius: var(--radius);
  padding: 30px 28px 26px;
  display: flex;
  flex-direction: column;
  gap: 13px;
  transition: transform .35s var(--ease), box-shadow .35s var(--ease), border-color .35s var(--ease);
}
.service:hover {
  transform: translateY(-6px);
  border-color: var(--outremer);
  box-shadow: 0 24px 50px -28px rgba(0, 47, 167, .45);
}

.service__icon {
  width: 52px; height: 52px;
  border-radius: 12px;
  background: var(--outremer);
  display: grid;
  place-items: center;
  transition: background .3s var(--ease), transform .3s var(--ease);
}
.service:hover .service__icon { background: var(--minium); transform: rotate(-5deg); }
.service__icon svg {
  width: 26px; height: 26px;
  fill: none;
  stroke: var(--blanc);
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.service p { color: rgba(16,18,43,.74); font-size: .96rem; }
.service__for { margin-top: auto; padding-top: 8px; color: var(--outremer); font-size: .72rem; }

/* ---------- Manifeste ---------- */
.manifesto {
  background: var(--papier);
  padding: clamp(30px, 5vh, 60px) 0 clamp(80px, 11vh, 120px);
}
.manifesto__inner { max-width: 900px; }
.manifesto__text {
  font-family: var(--f-display);
  font-weight: 600;
  font-size: clamp(1.4rem, 3vw, 2.1rem);
  line-height: 1.32;
  letter-spacing: -0.01em;
  border-left: 5px solid var(--minium);
  padding-left: clamp(20px, 3vw, 36px);
}
.manifesto__accent { color: var(--outremer); }

/* ---------- Réalisations ---------- */
.works {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 22px;
}
.works .work { grid-column: span 2; }
.works .work:nth-child(4),
.works .work:nth-child(5) { grid-column: span 3; }

.work {
  text-decoration: none;
  border-radius: var(--radius);
  overflow: hidden;
  background: rgba(244,245,240,.04);
  border: 1px solid rgba(244,245,240,.12);
  transition: transform .35s var(--ease), border-color .35s var(--ease);
}
.work:hover { transform: translateY(-6px); border-color: rgba(244,245,240,.4); }

.work__visual {
  aspect-ratio: 4 / 3;
  padding: 9%;
  display: flex;
  flex-direction: column;
  gap: 7%;
  transition: transform .5s var(--ease);
}
.work__visual i { display: block; border-radius: 4px; }

/* structure générique des visuels */
.wv-nav { height: 7%; border-radius: 4px; background: rgba(16,18,43,.25); }
.wv-split { flex: 1; display: flex; gap: 6%; }
.wv-txt { flex: 1; display: flex; flex-direction: column; gap: 10px; justify-content: center; }
.wv-txt i { height: 10px; }
.wv-txt i.short { width: 60%; }
.wv-txt i.thin { height: 6px; opacity: .5; }
.wv-img { flex: 1; border-radius: 8px; }
.wv-banner { flex: 1; border-radius: 8px; display: flex; flex-direction: column; justify-content: center; gap: 9px; padding: 6%; }
.wv-banner i { height: 11px; }
.wv-banner i.short { width: 55%; height: 7px; opacity: .85; }
.wv-cols { display: flex; gap: 6%; height: 24%; }
.wv-cols i { flex: 1; border-radius: 6px; }
.wv-grid { flex: 1; display: grid; grid-template-columns: repeat(3, 1fr); gap: 6%; }
.wv-grid i { border-radius: 6px; }
.wv-bars { flex: 1; display: flex; align-items: flex-end; gap: 8%; padding: 8% 7% 0; border-radius: 8px; }
.wv-bars i { flex: 1; border-radius: 4px 4px 0 0; }

/* Entreprises Wauters — construction, ardoise & ambre */
.work__visual--wauters { background: #F3F1EC; }
.work__visual--wauters .wv-nav { background: rgba(36,59,83,.3); }
.work__visual--wauters .wv-txt i { background: #243B53; }
.work__visual--wauters .wv-img { background: linear-gradient(150deg, #8A93A0 0%, #5A6573 55%, #E8A33D 56%, #E8A33D 64%, #5A6573 65%); }
.work__visual--wauters .wv-cols i { background: #E2DDD0; }

/* Chauffage Jossart — chaleur, flamme */
.work__visual--jossart { background: #FFF6EF; }
.work__visual--jossart .wv-nav { background: rgba(24,71,107,.3); }
.work__visual--jossart .wv-banner { background: linear-gradient(150deg, #D64218, #F08A4B); }
.work__visual--jossart .wv-banner i { background: #FFF6EF; }
.work__visual--jossart .wv-cols i { background: #F3DECF; }

/* Bativo — bâtiment, contraste sombre */
.work__visual--bativo { background: #16181D; }
.work__visual--bativo .wv-nav { background: rgba(244,245,240,.25); }
.work__visual--bativo .wv-grid i:nth-child(1) { background: linear-gradient(160deg, #B9BEC4, #82888F); }
.work__visual--bativo .wv-grid i:nth-child(2) { background: linear-gradient(160deg, #D8B45A, #B08A2E); }
.work__visual--bativo .wv-grid i:nth-child(3) { background: linear-gradient(160deg, #6E747B, #4A4F55); }
.work__visual--bativo .wv-grid i:nth-child(4) { background: linear-gradient(160deg, #9AA2AC, #6C7480); }
.work__visual--bativo .wv-grid i:nth-child(5) { background: linear-gradient(160deg, #4A4F55, #33373C); }
.work__visual--bativo .wv-grid i:nth-child(6) { background: linear-gradient(160deg, #C8CCD2, #9AA2AC); }

/* Decisio — corporate, données */
.work__visual--decisio { background: #0E2235; }
.work__visual--decisio .wv-nav { background: rgba(244,245,240,.25); }
.work__visual--decisio .wv-txt i { background: #E8F1F2; }
.work__visual--decisio .wv-bars { background: rgba(255,255,255,.06); }
.work__visual--decisio .wv-bars i { background: linear-gradient(180deg, #3FCDB6, #1E8C7C); }

/* Padel Raquette — terrain, e-commerce */
.work__visual--padel { background: #F2F7F0; }
.work__visual--padel .wv-nav { background: rgba(30,122,76,.35); }
.work__visual--padel .wv-grid--products i:nth-child(1) { background: linear-gradient(160deg, #2F9D63, #1E7A4C); }
.work__visual--padel .wv-grid--products i:nth-child(2) { background: linear-gradient(160deg, #14202B, #2C3A47); }
.work__visual--padel .wv-grid--products i:nth-child(3) { background: linear-gradient(160deg, #DCE94B, #B5C42B); }
.work__visual--padel .wv-grid--products i:nth-child(4) { background: linear-gradient(160deg, #4A5B6A, #32414E); }
.work__visual--padel .wv-grid--products i:nth-child(5) { background: linear-gradient(160deg, #1E7A4C, #135636); }
.work__visual--padel .wv-grid--products i:nth-child(6) { background: linear-gradient(160deg, #C9D6C0, #A4B79A); }

.work__meta { padding: 20px 22px 24px; }
.work__meta h3 { color: var(--papier); margin-bottom: 5px; }
.work__meta p { color: rgba(244,245,240,.55); font-size: .72rem; }

.works__more {
  margin-top: 40px;
  color: rgba(244,245,240,.7);
  font-size: 1.02rem;
}
.works__more a {
  color: var(--minium-soft);
  font-weight: 600;
  text-decoration: none;
}
.works__more a:hover { text-decoration: underline; }

/* ---------- Méthode ---------- */
.steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
  counter-reset: step;
}

.step {
  position: relative;
  background: var(--blanc);
  border: 1px solid rgba(16,18,43,.09);
  border-radius: var(--radius);
  padding: 28px 24px 26px;
  overflow: hidden;
}
.step::before {
  content: "";
  position: absolute;
  inset: 0 auto 0 0;
  width: 5px;
  background: var(--outremer);
  transform: scaleY(0);
  transform-origin: top;
  transition: transform .4s var(--ease);
}
.step:hover::before { transform: scaleY(1); }

.step__num {
  display: inline-block;
  font-size: .8rem;
  font-weight: 700;
  color: var(--blanc);
  background: var(--outremer);
  border-radius: 7px;
  padding: 5px 10px;
  margin-bottom: 18px;
}
.step:hover .step__num { background: var(--minium); }
.step h3 { margin-bottom: 10px; }
.step p { color: rgba(16,18,43,.72); font-size: .94rem; }

/* ---------- FAQ ---------- */
.faq { display: flex; flex-direction: column; gap: 10px; }

.faq__item {
  background: var(--blanc);
  border: 1px solid rgba(16,18,43,.09);
  border-radius: var(--radius);
  transition: border-color .25s var(--ease);
}
.faq__item[open] { border-color: var(--outremer); }

.faq__item summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  cursor: pointer;
  list-style: none;
  font-family: var(--f-display);
  font-weight: 600;
  font-size: 1.05rem;
  padding: 20px 24px;
}
.faq__item summary::-webkit-details-marker { display: none; }

.faq__plus {
  position: relative;
  flex: none;
  width: 22px; height: 22px;
}
.faq__plus::before, .faq__plus::after {
  content: "";
  position: absolute;
  top: 50%; left: 50%;
  width: 14px; height: 2.5px;
  background: var(--outremer);
  border-radius: 2px;
  transform: translate(-50%, -50%);
  transition: transform .3s var(--ease), background .3s;
}
.faq__plus::after { transform: translate(-50%, -50%) rotate(90deg); }
.faq__item[open] .faq__plus::after { transform: translate(-50%, -50%) rotate(0deg); }
.faq__item[open] .faq__plus::before,
.faq__item[open] .faq__plus::after { background: var(--minium); }

.faq__item p {
  padding: 0 24px 22px;
  color: rgba(16,18,43,.74);
  max-width: 65ch;
}

/* ---------- CTA ---------- */
.cta {
  background:
    radial-gradient(900px 480px at 18% 120%, var(--outremer-soft) 0%, transparent 60%),
    var(--outremer);
  color: var(--blanc);
  padding: clamp(90px, 13vh, 150px) 0;
  text-align: center;
}
.cta__inner {
  max-width: 760px;
  margin: 0 auto;
  padding: 0 var(--gutter);
}
.cta .eyebrow::before { background: var(--minium-soft); }
.cta__title { font-size: clamp(2.3rem, 5.5vw, 4rem); font-weight: 800; margin-bottom: 20px; }
.cta__sub { color: rgba(255,255,255,.85); font-size: 1.1rem; max-width: 46ch; margin: 0 auto 36px; }
.cta__alt { margin-top: 20px; color: rgba(255,255,255,.55); }
.cta__tel { color: var(--blanc); text-decoration: none; border-bottom: 1px solid rgba(255,255,255,.4); }
.cta__tel:hover { border-bottom-color: var(--blanc); }

/* ---------- Footer ---------- */
.footer {
  background: var(--encre);
  color: var(--papier);
  padding: 60px 0 36px;
}
.footer__inner {
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 0 var(--gutter);
  display: grid;
  gap: 18px;
  justify-items: start;
}
.footer__logo { color: var(--papier); }
.footer__tag { color: rgba(244,245,240,.6); font-size: .95rem; }
.footer__contact {
  font-style: normal;
  display: flex;
  flex-wrap: wrap;
  gap: 22px;
}
.footer__contact a {
  color: rgba(244,245,240,.85);
  text-decoration: none;
  font-size: .95rem;
}
.footer__contact a:hover { color: var(--minium-soft); text-decoration: underline; }
.footer__links { display: flex; flex-wrap: wrap; gap: 22px; margin-top: 8px; }
.footer__links a {
  color: rgba(244,245,240,.75);
  text-decoration: none;
  font-size: .92rem;
}
.footer__links a:hover { color: var(--minium-soft); }
.footer__legal {
  margin-top: 22px;
  padding-top: 22px;
  border-top: 1px solid rgba(244,245,240,.12);
  width: 100%;
  color: rgba(244,245,240,.4);
  font-size: .72rem;
}

/* ==========================================================================
   RÉVÉLATION AU SCROLL
   ========================================================================== */
.reveal {
  opacity: 0;
  transform: translateY(26px);
  transition: opacity .7s var(--ease), transform .7s var(--ease);
}
.reveal.is-in { opacity: 1; transform: none; }

/* Décalage en cascade dans les grilles */
.services .reveal:nth-child(2), .steps .reveal:nth-child(2), .works .reveal:nth-child(2) { transition-delay: .08s; }
.services .reveal:nth-child(3), .steps .reveal:nth-child(3), .works .reveal:nth-child(3) { transition-delay: .16s; }
.services .reveal:nth-child(4), .steps .reveal:nth-child(4), .works .reveal:nth-child(4) { transition-delay: .24s; }
.works .reveal:nth-child(5) { transition-delay: .32s; }
.services .reveal:nth-child(5) { transition-delay: .32s; }
.services .reveal:nth-child(6) { transition-delay: .4s; }

/* ==========================================================================
   RESPONSIVE
   ========================================================================== */
@media (max-width: 1000px) {
  .services { grid-template-columns: repeat(2, 1fr); }
  .steps { grid-template-columns: repeat(2, 1fr); }
  .works { grid-template-columns: 1fr 1fr; }
  .works .work,
  .works .work:nth-child(4),
  .works .work:nth-child(5) { grid-column: span 1; }
  .works .work:last-child { grid-column: span 2; max-width: 60%; justify-self: center; }
}

@media (max-width: 880px) {
  .hero__inner { grid-template-columns: 1fr; }
  .hero__demo { max-width: 560px; }
  .nav__links, .nav__cta { display: none; }
  .nav__burger { display: flex; }
  .nav { background: var(--outremer-deep); }
}

@media (max-width: 640px) {
  .services, .steps, .works { grid-template-columns: 1fr; }
  .works .work, .works .work:last-child { grid-column: auto; max-width: none; }
  .hero__actions .btn { width: 100%; }
  .browser__url { max-width: 150px; }
}

/* ==========================================================================
   ACCESSIBILITÉ — MOUVEMENT RÉDUIT
   ========================================================================== */
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation-duration: .01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: .01ms !important;
  }
  .hero__copy > *, .hero__demo { opacity: 1; transform: none; }
  .reveal { opacity: 1; transform: none; }
  .marquee__track { animation: none; }
}
