/* =========================================================
   Florian Cailler Plâtrerie — Editorial Artisan Premium
   ========================================================= */

:root {
  /* Ink / neutrals */
  --ink: #0e1524;
  --ink-2: #22293a;
  --muted: #5a6374;
  --muted-2: #8b93a3;
  --bg: #ffffff;
  --surface: #ffffff;
  --warm: #f7f1e4;
  --warm-2: #efe6d1;
  --dark: #0b121f;
  --dark-2: #121b2d;
  --border: #e9e3d3;
  --border-cool: #e4e6ec;

  /* Accent — terracotta artisan */
  --ac: #c57a2e;
  --ac-2: #e09744;
  --ac-dk: #8e521a;
  --ac-grad: linear-gradient(135deg, #ecb071 0%, #c57a2e 50%, #8e521a 100%);
  --ac-grad-soft: linear-gradient(135deg, rgba(224,151,68,.14), rgba(143,83,24,.05));

  /* Shadows */
  --sh-xs: 0 1px 2px rgba(14,21,36,.05);
  --sh-sm: 0 4px 16px rgba(14,21,36,.06);
  --sh-md: 0 18px 44px rgba(14,21,36,.10);
  --sh-lg: 0 32px 72px rgba(14,21,36,.16);
  --sh-ac: 0 20px 50px rgba(197,122,46,.28);

  /* Layout */
  --r-sm: 10px;
  --r: 16px;
  --r-lg: 22px;
  --max: 1240px;

  /* Type */
  --font: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  --font-display: "Fraunces", Georgia, serif;
  --font-mono: "JetBrains Mono", ui-monospace, Menlo, monospace;
}

/* ===== Reset / base ===== */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  margin: 0;
  font-family: var(--font);
  font-size: 17px;
  line-height: 1.65;
  color: var(--ink);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}
img, iframe, svg { max-width: 100%; display: block; }
img { height: auto; }
a { color: inherit; text-decoration: none; }
button { font-family: inherit; }
ul { padding-left: 1.2em; margin: 0 0 1em; }
p { margin: 0 0 1em; }

h1, h2, h3, h4 {
  margin: 0 0 0.5em;
  font-weight: 800;
  letter-spacing: -0.025em;
  line-height: 1.08;
  color: var(--ink);
}
h1 { font-size: clamp(2.6rem, 5.8vw, 5rem); letter-spacing: -0.04em; }
h2 { font-size: clamp(2rem, 3.8vw, 3.2rem); letter-spacing: -0.035em; }
h3 { font-size: 1.3rem; font-weight: 700; letter-spacing: -0.015em; }
h4 { font-size: 0.88rem; font-weight: 600; letter-spacing: 0.08em; text-transform: uppercase; }

.wrap { max-width: var(--max); margin: 0 auto; padding: 0 28px; }
.wrap.narrow { max-width: 880px; }
.muted { color: var(--muted); }
.small { font-size: 0.88rem; }

/* Fraunces accent — the hero of the type system */
.accent {
  font-family: var(--font-display);
  font-style: italic;
  font-weight: 700;
  font-variation-settings: "SOFT" 100, "opsz" 144;
  background: var(--ac-grad);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  letter-spacing: -0.02em;
}

.skip-link {
  position: absolute; top: -44px; left: 0;
  background: var(--ink); color: #fff;
  padding: 10px 14px; z-index: 200; font-size: 0.9rem;
}
.skip-link:focus { top: 0; }

/* Eyebrow — mono serif editorial */
.eyebrow, .section-num {
  display: inline-flex; align-items: center; gap: 10px;
  font-family: var(--font-mono);
  font-size: 0.78rem; font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--ac-dk);
  margin-bottom: 18px;
}
.eyebrow::before, .section-num::before {
  content: ""; display: block;
  width: 28px; height: 2px;
  background: var(--ac-grad);
  border-radius: 2px;
}
.section-num.light, .eyebrow.light { color: #eabf82; }
.section-num.light::before, .eyebrow.light::before {
  background: linear-gradient(90deg, #eabf82, transparent);
}

/* ===== Buttons ===== */
.btn {
  display: inline-flex; align-items: center; justify-content: center;
  gap: 10px;
  padding: 15px 26px;
  border-radius: 999px;
  font-weight: 600; font-size: 0.98rem;
  border: 1.5px solid transparent;
  cursor: pointer; white-space: nowrap;
  transition: transform .2s ease, box-shadow .25s ease, background .25s ease, color .25s ease, border-color .25s ease;
}
.btn:hover { transform: translateY(-1px); text-decoration: none; }
.btn:focus-visible { outline: 3px solid rgba(197,122,46,.35); outline-offset: 2px; }
.btn-primary {
  background: var(--ac-grad); color: #fff;
  box-shadow: var(--sh-ac);
}
.btn-primary:hover { box-shadow: 0 26px 56px rgba(197,122,46,.38); filter: brightness(1.05); }
.btn-ghost {
  background: rgba(255,255,255,0.04);
  color: #fff;
  border-color: rgba(255,255,255,0.32);
  backdrop-filter: blur(8px);
}
.btn-ghost:hover { background: #fff; color: var(--ink); border-color: #fff; }
.section .btn-ghost { color: var(--ink); border-color: var(--ink); background: transparent; }
.section .btn-ghost:hover { background: var(--ink); color: #fff; }
.btn-phone {
  background: var(--ink); color: #fff;
  padding: 11px 18px; font-size: 0.92rem;
  border-color: var(--ink);
}
.btn-phone:hover { background: var(--ac); border-color: var(--ac); color: #fff; }
.btn-block { width: 100%; }

/* ===== Header (glass sticky) ===== */
.site-header {
  position: sticky; top: 0; z-index: 90;
  background: rgba(255,255,255,0.72);
  backdrop-filter: saturate(180%) blur(14px);
  -webkit-backdrop-filter: saturate(180%) blur(14px);
  border-bottom: 1px solid transparent;
  transition: background .25s ease, border-color .25s ease, box-shadow .25s ease;
}
.site-header.scrolled {
  background: rgba(255,255,255,0.93);
  border-bottom-color: var(--border-cool);
  box-shadow: var(--sh-xs);
}
.header-inner {
  display: flex; align-items: center; gap: 28px;
  padding: 14px 28px;
}
.logo { display: inline-flex; align-items: center; gap: 12px; color: var(--ink); }
.logo:hover { text-decoration: none; }
.logo-mark {
  display: inline-flex; align-items: center; justify-content: center;
  width: 40px; height: 40px;
  background: var(--ink);
  color: var(--ac-2);
  border-radius: 12px;
  box-shadow: inset 0 -2px 0 rgba(0,0,0,.28);
}
.logo-text { display: flex; flex-direction: column; line-height: 1.1; }
.logo-text strong { font-weight: 700; font-size: 1rem; letter-spacing: -0.01em; }
.logo-text em { font-style: normal; color: var(--muted); font-size: 0.78rem; letter-spacing: 0.02em; }

.nav { margin-left: auto; display: flex; gap: 26px; }
.nav a {
  position: relative; color: var(--ink-2);
  font-weight: 500; font-size: 0.95rem;
  padding: 6px 0;
}
.nav a::after {
  content: ""; position: absolute; left: 0; right: 0; bottom: 0;
  height: 2px; background: var(--ac-grad);
  transform: scaleX(0); transform-origin: left;
  transition: transform .22s ease;
}
.nav a:hover::after { transform: scaleX(1); }

/* ===== HERO (editorial magazine cover v3) ===== */
.hero {
  position: relative;
  min-height: clamp(720px, 100vh, 980px);
  color: #fff;
  overflow: hidden;
  isolation: isolate;
  padding: 0;
}
.hero-bg {
  position: absolute; inset: 0; z-index: -3;
}
.hero-bg img {
  width: 100%; height: 100%;
  object-fit: cover; object-position: center 42%;
  filter: saturate(0.82) contrast(1.08) brightness(0.74) sepia(0.08);
}
.hero-grain {
  position: absolute; inset: 0; z-index: -2;
  pointer-events: none;
  opacity: 0.14;
  mix-blend-mode: overlay;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='220' height='220'><filter id='n'><feTurbulence type='fractalNoise' baseFrequency='0.92' numOctaves='2' stitchTiles='stitch'/><feColorMatrix values='0 0 0 0 0.95  0 0 0 0 0.88  0 0 0 0 0.72  0 0 0 1 0'/></filter><rect width='100%25' height='100%25' filter='url(%23n)'/></svg>");
}
.hero-scrim {
  position: absolute; inset: 0; z-index: -1;
  background:
    linear-gradient(180deg, rgba(5,10,20,0.55) 0%, rgba(5,10,20,0.35) 35%, rgba(5,10,20,0.68) 85%, rgba(5,10,20,0.88) 100%),
    linear-gradient(90deg, rgba(5,10,20,0.5) 0%, transparent 40%, transparent 75%, rgba(5,10,20,0.55) 100%);
}

/* Grid editorial — asymmetric */
.hero-grid {
  position: relative;
  height: 100%;
  min-height: inherit;
  max-width: 1440px;
  margin: 0 auto;
  padding: 72px 64px 56px;
  display: grid;
  grid-template-columns: 64px 1fr 140px;
  grid-template-rows: auto 1fr auto;
  grid-template-areas:
    "index  body  side"
    ".      body  side"
    "foot   foot  foot";
  column-gap: 48px;
  row-gap: 40px;
}

/* Index (N°01 / 07) — top-left editorial index */
.hero-index {
  grid-area: index;
  display: flex; flex-direction: column;
  align-items: flex-start;
  gap: 4px;
  font-family: var(--font-mono);
  color: rgba(255,255,255,0.6);
  font-size: 0.78rem;
  letter-spacing: 0.14em;
  padding-top: 4px;
  border-top: 1px solid rgba(255,255,255,0.22);
  padding-left: 0;
  align-self: start;
  width: fit-content;
}
.hero-index .index-label { opacity: 0.7; font-size: 0.7rem; }
.hero-index .index-num {
  font-family: var(--font-display);
  font-style: italic;
  font-weight: 800;
  font-variation-settings: "SOFT" 100, "opsz" 144;
  font-size: 2rem;
  line-height: 0.9;
  color: #fff;
  letter-spacing: -0.02em;
  margin: 2px 0 4px;
}
.hero-index .index-of {
  font-size: 0.68rem;
  color: rgba(255,255,255,0.45);
  letter-spacing: 0.12em;
}

/* Vertical sidebar on right edge */
.hero-side {
  grid-area: side;
  align-self: start;
  justify-self: end;
  writing-mode: vertical-rl;
  transform: rotate(180deg);
  font-family: var(--font-mono);
  font-size: 0.72rem;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.55);
  padding: 8px 0;
  border-right: 1px solid rgba(255,255,255,0.18);
  padding-right: 12px;
  margin-right: -12px;
  position: relative;
}
.hero-side::before {
  content: "";
  position: absolute;
  top: -2px;
  right: -13px;
  width: 24px;
  height: 1px;
  background: rgba(255,255,255,0.28);
}

/* Main body */
.hero-body {
  grid-area: body;
  align-self: center;
  max-width: 880px;
}
.hero-kicker {
  display: block;
  font-family: var(--font-mono);
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.16em;
  color: #eabf82;
  margin-bottom: 32px;
}

.hero-title {
  color: #fff;
  font-size: clamp(2.8rem, 7.5vw, 6.4rem);
  font-weight: 800;
  line-height: 0.98;
  letter-spacing: -0.045em;
  margin: 0 0 40px;
  font-feature-settings: "ss01" on, "liga" on, "kern" on;
}
.hero-title .line { display: block; }
.hero-title .line:nth-child(2) { padding-left: 1.6em; }
.hero-title .line:nth-child(3) { padding-left: 0.6em; }
.hero .accent {
  font-family: var(--font-display);
  font-style: italic;
  font-weight: 700;
  font-variation-settings: "SOFT" 100, "opsz" 144, "wght" 700;
  letter-spacing: -0.03em;
  background: linear-gradient(135deg, #f3d2a0 0%, #e09744 55%, #c57a2e 100%);
  -webkit-background-clip: text; background-clip: text;
  color: transparent;
  padding-right: 0.08em;
}

.hero-caption {
  display: grid;
  grid-template-columns: 56px 1fr;
  align-items: start;
  gap: 20px;
  max-width: 560px;
  margin-bottom: 44px;
}
.caption-rule {
  display: block;
  height: 1px;
  background: linear-gradient(90deg, rgba(234,191,130,0.8), rgba(234,191,130,0.1));
  margin-top: 12px;
}
.hero-caption p {
  color: rgba(255,255,255,0.82);
  font-size: 1.02rem;
  line-height: 1.55;
  margin: 0;
}

/* CTA — simpler, classier */
.hero-cta {
  display: flex; flex-wrap: wrap;
  align-items: center;
  gap: 24px;
}
.hero-cta .btn-primary {
  padding: 16px 26px;
  font-size: 0.95rem;
}
.link-cta {
  display: inline-flex; align-items: center; gap: 10px;
  font-family: var(--font);
  font-size: 0.95rem;
  color: #fff;
  font-weight: 500;
  padding: 8px 0;
  position: relative;
  transition: color .2s ease;
}
.link-cta::after {
  content: ""; position: absolute; left: 0; right: 40px; bottom: 4px;
  height: 1px; background: rgba(255,255,255,0.45);
  transition: right .3s cubic-bezier(.2,.7,.2,1);
}
.link-cta:hover { text-decoration: none; color: #eabf82; }
.link-cta:hover::after { right: 0; background: #eabf82; }
.link-cta svg { transition: transform .3s ease; }
.link-cta:hover svg { transform: translate(2px, -2px); }

/* Bottom editorial strip */
.hero-foot {
  grid-area: foot;
  align-self: end;
}
.foot-rule {
  height: 1px;
  background: linear-gradient(90deg, rgba(234,191,130,0.85) 0%, rgba(255,255,255,0.22) 30%, rgba(255,255,255,0.08) 100%);
  margin-bottom: 20px;
}
.foot-list {
  list-style: none; padding: 0; margin: 0;
  display: flex; flex-wrap: wrap;
  gap: 40px;
  align-items: center;
  font-family: var(--font-mono);
  font-size: 0.84rem;
  color: rgba(255,255,255,0.82);
  letter-spacing: 0.02em;
}
.foot-list li { display: inline-flex; align-items: baseline; gap: 10px; }
.foot-num {
  font-family: var(--font-display);
  font-style: italic;
  font-weight: 700;
  font-size: 0.96rem;
  color: #eabf82;
  letter-spacing: -0.01em;
}
.foot-meta {
  margin-left: auto;
  color: rgba(255,255,255,0.55);
  font-size: 0.78rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
@media (prefers-reduced-motion: reduce) {
  .hero-bg img { animation: none; }
}

/* ===== Marquee (kinetic band) ===== */
.marquee {
  overflow: hidden;
  background: var(--ink);
  color: #fff;
  border-top: 1px solid rgba(255,255,255,0.06);
  border-bottom: 1px solid rgba(255,255,255,0.06);
}
.marquee-track {
  display: inline-flex; align-items: center;
  gap: 36px;
  padding: 22px 0;
  white-space: nowrap;
  animation: marquee 50s linear infinite;
}
.marquee-track span {
  font-family: var(--font-display);
  font-style: italic;
  font-weight: 700;
  font-size: clamp(1.4rem, 2.6vw, 2.4rem);
  letter-spacing: -0.02em;
  color: #fff;
}
.marquee-track .m-dot {
  font-family: var(--font);
  font-style: normal;
  color: var(--ac-2);
  font-size: clamp(1rem, 1.4vw, 1.4rem);
}
@keyframes marquee {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}
@media (prefers-reduced-motion: reduce) {
  .marquee-track { animation: none; }
}

/* ===== Trust band ===== */
.trust-band {
  background: #fff;
  border-bottom: 1px solid var(--border-cool);
}
.trust-band ul {
  list-style: none; padding: 0; margin: 0;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}
.trust-band li {
  padding: 26px 24px;
  display: flex; align-items: center; gap: 14px;
  border-right: 1px solid var(--border-cool);
}
.trust-band li:last-child { border-right: none; }
.trust-band svg { color: var(--ac); flex-shrink: 0; }
.trust-band strong { display: block; color: var(--ink); font-weight: 700; font-size: 0.98rem; }
.trust-band span { display: block; color: var(--muted); font-size: 0.84rem; }

/* ===== Sections ===== */
.section { padding: 130px 0; }
.section-warm { background: var(--warm); }
.section-dark {
  background:
    radial-gradient(ellipse 60% 40% at 20% 0%, rgba(224,151,68,.12), transparent 60%),
    radial-gradient(ellipse 60% 50% at 100% 100%, rgba(197,122,46,.08), transparent 60%),
    var(--dark);
  color: #fff;
}
.section-dark h2, .section-dark h3 { color: #fff; }
.section-dark .section-lead { color: rgba(255,255,255,0.72); }

.section-head {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 48px;
  align-items: end;
  margin-bottom: 70px;
}
.section-head h2 { max-width: 16ch; margin: 0; }
.section-lead { color: var(--muted); font-size: 1.08rem; max-width: 44ch; margin: 0; }

/* ===== Bento services ===== */
.bento {
  display: grid;
  grid-template-columns: 1.15fr 1fr;
  grid-template-rows: 1fr 1fr;
  gap: 20px;
  min-height: 720px;
}
.bento-card {
  position: relative;
  background: var(--surface);
  border: 1px solid var(--border-cool);
  border-radius: var(--r-lg);
  overflow: hidden;
  display: flex; flex-direction: column;
  transition: transform .3s cubic-bezier(.2,.7,.2,1), box-shadow .3s ease, border-color .3s ease;
}
.bento-feature {
  grid-row: span 2;
  display: grid;
  grid-template-rows: 58% 42%;
}
.bento-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--sh-lg);
  border-color: transparent;
}
.bento-img {
  position: relative;
  overflow: hidden;
  flex: 0 0 auto;
  aspect-ratio: 16 / 10;
}
.bento-feature .bento-img { aspect-ratio: unset; height: 100%; }
.bento-img img {
  width: 100%; height: 100%;
  object-fit: cover; object-position: center;
  transition: transform .6s cubic-bezier(.2,.7,.2,1);
}
.bento-card:hover .bento-img img { transform: scale(1.05); }
.bento-img::after {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(180deg, transparent 55%, rgba(11,18,31,0.12));
  pointer-events: none;
}
.bento-body {
  padding: 28px 30px 30px;
  flex: 1;
  display: flex; flex-direction: column;
}
.bento-tag {
  display: inline-block;
  font-family: var(--font-mono);
  font-size: 0.74rem; font-weight: 600;
  letter-spacing: 0.14em;
  color: var(--ac-dk);
  margin-bottom: 6px;
}
.bento-card h3 {
  margin-bottom: 10px;
  font-size: clamp(1.4rem, 2vw, 1.75rem);
  letter-spacing: -0.025em;
}
.bento-feature h3 { font-size: clamp(1.6rem, 2.5vw, 2rem); }
.bento-card p { color: var(--muted); font-size: 0.97rem; margin: 0; }
.bento-card ul {
  list-style: none; padding-left: 0;
  margin: 16px 0 0;
  padding-top: 16px;
  border-top: 1px dashed var(--border);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4px 16px;
}
.bento-feature ul { grid-template-columns: 1fr 1fr; }
.bento-card ul li {
  font-size: 0.91rem; color: var(--ink-2);
  padding: 4px 0 4px 18px;
  position: relative;
}
.bento-card ul li::before {
  content: ""; position: absolute; left: 0; top: 12px;
  width: 10px; height: 2px;
  background: var(--ac);
  border-radius: 2px;
}

/* ===== Process steps ===== */
.steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}
.step {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  padding: 36px 32px 34px;
  transition: transform .25s ease, box-shadow .3s ease;
}
.step:hover { transform: translateY(-4px); box-shadow: var(--sh-md); }
.step-num {
  font-family: var(--font-display);
  font-style: italic;
  font-weight: 800;
  font-variation-settings: "SOFT" 100, "opsz" 144;
  font-size: 4rem;
  background: var(--ac-grad);
  -webkit-background-clip: text; background-clip: text;
  color: transparent;
  letter-spacing: -0.04em;
  display: block;
  line-height: 0.9;
  margin-bottom: 14px;
}
.step h3 { margin-bottom: 10px; }
.step p { color: var(--muted); font-size: 0.98rem; margin: 0; }

/* ===== Florian section (the human touch) ===== */
.section-florian {
  background: var(--warm-2);
  padding: 130px 0;
  position: relative;
  overflow: hidden;
}
.section-florian::before {
  content: ""; position: absolute;
  top: -100px; right: -100px;
  width: 500px; height: 500px;
  background: radial-gradient(circle, rgba(197,122,46,0.18), transparent 70%);
  border-radius: 50%;
  pointer-events: none;
}
.florian-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 60px;
  align-items: center;
  position: relative; z-index: 1;
}
.florian-img {
  position: relative;
  border-radius: var(--r-lg);
  overflow: hidden;
  box-shadow: var(--sh-lg);
  aspect-ratio: 4 / 5;
  max-height: 680px;
}
.florian-img img {
  width: 100%; height: 100%;
  object-fit: cover;
}
.florian-badge {
  position: absolute;
  bottom: 20px; left: 20px;
  display: inline-flex; align-items: center; gap: 10px;
  padding: 10px 14px;
  background: rgba(11,18,31,0.82);
  backdrop-filter: blur(10px);
  color: var(--ac-2);
  border-radius: 999px;
  font-family: var(--font-mono);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  border: 1px solid rgba(255,255,255,0.12);
}
.florian-badge span { color: #fff; }

.florian-text h2 {
  font-size: clamp(1.9rem, 3.4vw, 2.8rem);
  margin-bottom: 24px;
}
.florian-lead {
  font-size: 1.12rem;
  color: var(--ink-2);
  line-height: 1.65;
}
.florian-text p { color: var(--ink-2); }
.florian-sign {
  display: flex; align-items: center; gap: 16px;
  margin: 34px 0 26px;
  padding-top: 26px;
  border-top: 1px solid rgba(14,21,36,0.12);
}
.signature { color: var(--ac-dk); width: 140px; height: auto; }
.florian-sign span {
  font-family: var(--font-mono);
  font-size: 0.82rem;
  color: var(--muted);
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.florian-cta {
  display: inline-flex; align-items: center; gap: 12px;
  padding: 14px 22px;
  background: var(--ink);
  color: #fff;
  border-radius: 999px;
  font-weight: 600;
  transition: background .22s ease, transform .2s ease;
}
.florian-cta:hover { background: var(--ac); transform: translateY(-1px); text-decoration: none; }

/* ===== Zone ===== */
.zone-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.3fr;
  gap: 40px;
  align-items: start;
}
.cities {
  list-style: none; padding: 0; margin: 0;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 10px 14px;
}
.cities li {
  background: #fff;
  border: 1px solid var(--border-cool);
  padding: 12px 16px;
  border-radius: 10px;
  font-size: 0.94rem; font-weight: 500;
  transition: border-color .2s ease, transform .2s ease;
}
.cities li:hover { border-color: var(--ac); transform: translateX(3px); }
.zone-map {
  border-radius: var(--r-lg);
  overflow: hidden;
  box-shadow: var(--sh-md);
  border: 1px solid var(--border-cool);
}
.zone-map iframe { width: 100%; height: 440px; border: 0; display: block; }

/* ===== Villes desservies ===== */
.villes-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}
.ville {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  padding: 30px 32px;
  transition: transform .22s ease, box-shadow .28s ease, border-color .22s ease;
  display: flex; flex-direction: column; gap: 12px;
}
.ville:hover {
  transform: translateY(-3px);
  box-shadow: var(--sh-md);
  border-color: transparent;
}
.ville h3 {
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--ink);
  letter-spacing: -0.015em;
  margin: 0 0 2px;
}
.ville p {
  color: var(--muted);
  font-size: 0.96rem;
  line-height: 1.55;
  margin: 0;
}
.ville-cta {
  display: inline-flex; align-items: center; gap: 8px;
  margin-top: auto;
  padding-top: 14px;
  border-top: 1px dashed var(--border);
  font-family: var(--font-mono);
  font-size: 0.82rem;
  color: var(--ac-dk);
  font-weight: 600;
  letter-spacing: 0.02em;
  transition: color .18s ease;
}
.ville-cta:hover { color: var(--ac); text-decoration: none; }

/* ===== Lexique / glossary ===== */
.lex-list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px 36px;
  margin: 0;
}
.lex {
  padding: 20px 0 22px;
  border-top: 1px solid var(--border);
}
.lex dt {
  font-family: var(--font-display);
  font-style: italic;
  font-weight: 700;
  font-size: 1.2rem;
  letter-spacing: -0.015em;
  color: var(--ac-dk);
  margin-bottom: 8px;
}
.lex dd {
  color: var(--ink-2);
  font-size: 0.96rem;
  line-height: 1.6;
  margin: 0;
}

/* ===== Engagements (dark bento) ===== */
.commits {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}
.commit {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: var(--r-lg);
  padding: 30px 28px;
  transition: background .22s ease, border-color .22s ease, transform .22s ease;
  backdrop-filter: blur(8px);
}
.commit:hover {
  background: rgba(255,255,255,0.07);
  border-color: rgba(224,151,68,0.48);
  transform: translateY(-3px);
}
.commit svg { color: var(--ac-2); margin-bottom: 18px; }
.commit h3 { font-size: 1.12rem; margin-bottom: 8px; color: #fff; }
.commit p { color: rgba(255,255,255,0.72); font-size: 0.94rem; margin: 0; }

/* ===== FAQ ===== */
.faq-list { display: grid; gap: 12px; }
details {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--r);
  padding: 22px 26px;
  transition: border-color .2s ease, box-shadow .22s ease;
}
details[open] { border-color: var(--ac); box-shadow: var(--sh-sm); }
summary {
  font-weight: 600; font-size: 1.03rem;
  cursor: pointer;
  color: var(--ink);
  list-style: none;
  position: relative;
  padding-right: 36px;
}
summary::-webkit-details-marker { display: none; }
summary::after {
  content: ""; position: absolute; right: 0; top: 50%;
  width: 24px; height: 24px;
  transform: translateY(-50%);
  background:
    linear-gradient(var(--ac), var(--ac)) center/14px 2px no-repeat,
    linear-gradient(var(--ac), var(--ac)) center/2px 14px no-repeat;
  transition: transform .25s ease;
}
details[open] summary::after { transform: translateY(-50%) rotate(135deg); }
details p {
  margin: 14px 0 0;
  color: var(--muted);
  font-size: 0.97rem; line-height: 1.65;
}

/* ===== Contact ===== */
.section-contact { background: #fff; }
.contact-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.25fr;
  gap: 30px;
  align-items: stretch;
}
.contact-grid-solo {
  grid-template-columns: minmax(0, 640px);
  justify-content: center;
}
.contact-info {
  background: var(--dark);
  color: #fff;
  padding: 42px;
  border-radius: var(--r-lg);
  position: relative;
  overflow: hidden;
  isolation: isolate;
  display: flex; flex-direction: column;
}
.contact-info::before {
  content: ""; position: absolute; inset: 0; z-index: -1;
  background: radial-gradient(ellipse 80% 60% at 100% 0%, rgba(224,151,68,.22), transparent 60%);
}
.contact-info h3 { color: #fff; margin-bottom: 26px; font-size: 1.3rem; }
.contact-line {
  display: flex; align-items: flex-start; gap: 14px;
  margin-bottom: 18px;
  color: rgba(255,255,255,0.86);
  font-size: 0.98rem; line-height: 1.5;
}
.contact-line svg { color: var(--ac-2); margin-top: 2px; flex-shrink: 0; }
.contact-info .link-strong { color: #fff; font-weight: 600; }
.contact-info .link-strong:hover { color: var(--ac-2); text-decoration: none; }
.contact-phone-big {
  margin-top: auto;
  padding-top: 30px;
  border-top: 1px solid rgba(255,255,255,0.1);
}
.contact-phone-big span {
  display: block;
  font-family: var(--font-mono);
  font-size: 0.78rem; color: rgba(255,255,255,0.55);
  letter-spacing: 0.08em; text-transform: uppercase;
  margin-bottom: 6px;
}
.contact-phone-big a {
  display: inline-block;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(1.8rem, 3vw, 2.4rem);
  letter-spacing: -0.01em;
  background: var(--ac-grad);
  -webkit-background-clip: text; background-clip: text;
  color: transparent;
  line-height: 1.1;
}
.contact-phone-big a:hover { text-decoration: none; filter: brightness(1.1); }

.contact-form {
  background: #fff;
  border: 1px solid var(--border-cool);
  border-radius: var(--r-lg);
  padding: 40px;
  box-shadow: var(--sh-md);
}
.contact-form h3 { margin-bottom: 24px; font-size: 1.3rem; }
.contact-form label { display: block; margin-bottom: 16px; }
.contact-form span {
  display: block;
  font-family: var(--font-mono);
  font-size: 0.76rem; font-weight: 600;
  color: var(--muted);
  margin-bottom: 8px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}
.contact-form .grid-2 {
  display: grid; grid-template-columns: 1fr 1fr; gap: 14px;
}
.contact-form input,
.contact-form textarea {
  width: 100%;
  padding: 14px 16px;
  font-family: inherit; font-size: 1rem;
  color: var(--ink);
  border: 1.5px solid var(--border);
  border-radius: 10px;
  background: #fff;
  transition: border-color .15s ease, box-shadow .15s ease;
}
.contact-form input:focus,
.contact-form textarea:focus {
  outline: none;
  border-color: var(--ac);
  box-shadow: 0 0 0 4px rgba(197,122,46,0.15);
}
.contact-form textarea { resize: vertical; min-height: 130px; }
.contact-form .contact-submit {
  margin-top: 6px;
  width: 100%;
  justify-content: center;
}
.contact-form-note {
  margin-top: 14px;
  font-size: 0.82rem;
  line-height: 1.5;
  color: var(--muted);
}
.contact-form-note a { color: var(--ac); font-weight: 600; }

/* ===== Footer ===== */
.site-footer {
  background: var(--dark);
  color: rgba(255,255,255,0.72);
  padding: 80px 0 30px;
}
.site-footer h4 {
  color: #fff;
  font-size: 0.8rem; font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  margin-bottom: 18px;
  font-family: var(--font-mono);
}
.site-footer ul { list-style: none; padding: 0; margin: 0; }
.site-footer li { padding: 5px 0; font-size: 0.93rem; }
.site-footer a { color: rgba(255,255,255,0.72); transition: color .15s ease; }
.site-footer a:hover { color: #fff; text-decoration: none; }
.site-footer .logo { color: #fff; margin-bottom: 14px; }
.site-footer .logo-mark { background: rgba(255,255,255,0.08); color: var(--ac-2); }
.site-footer .logo-text em { color: rgba(255,255,255,0.5); }
.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 40px;
  padding-bottom: 40px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.logo-footer { display: inline-flex; align-items: center; gap: 12px; }
.footer-base {
  display: flex; justify-content: space-between; align-items: center;
  flex-wrap: wrap; gap: 16px;
  padding-top: 24px;
  color: rgba(255,255,255,0.48);
  font-size: 0.85rem;
  font-family: var(--font-mono);
}

/* ===== Mobile sticky CTA ===== */
.mobile-cta {
  position: fixed; bottom: 16px; left: 16px; right: 16px;
  z-index: 100;
  display: none;
  align-items: center; justify-content: center; gap: 10px;
  background: var(--ac-grad);
  color: #fff; font-weight: 700;
  padding: 16px 20px;
  border-radius: 999px;
  box-shadow: var(--sh-lg), 0 0 0 2px rgba(255,255,255,0.82) inset;
  font-size: 0.98rem;
}

/* ===== Reveal on scroll ===== */
.reveal {
  opacity: 0;
  transform: translateY(32px);
  transition:
    opacity .8s cubic-bezier(.2,.7,.2,1),
    transform .8s cubic-bezier(.2,.7,.2,1);
  transition-delay: var(--reveal-delay, 0s);
}
.reveal.is-visible { opacity: 1; transform: translateY(0); }
@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; transition: none; }
  html { scroll-behavior: auto; }
}

/* ===== Responsive ===== */
@media (max-width: 1060px) {
  .hero { min-height: clamp(680px, 90vh, 900px); }
  .hero-grid { padding: 60px 28px 44px; grid-template-columns: 44px 1fr 100px; column-gap: 28px; }
  .hero-title .line:nth-child(2) { padding-left: 0.8em; }
  .hero-title .line:nth-child(3) { padding-left: 0.2em; }
  .section-head { grid-template-columns: 1fr; gap: 24px; margin-bottom: 48px; }
  .bento { grid-template-columns: 1fr 1fr; grid-template-rows: auto; min-height: 0; }
  .bento-feature { grid-row: span 1; grid-template-rows: auto; grid-column: span 2; display: grid; grid-template-columns: 1fr 1fr; }
  .bento-feature .bento-img { aspect-ratio: 4/3; }
  .villes-grid { grid-template-columns: 1fr; }
  .lex-list { grid-template-columns: 1fr; gap: 0; }
  .steps { grid-template-columns: 1fr; }
  .commits { grid-template-columns: 1fr 1fr; }
  .zone-grid, .contact-grid { grid-template-columns: 1fr; }
  .florian-grid { grid-template-columns: 1fr; gap: 40px; }
  .florian-img { aspect-ratio: 4/3; max-height: 520px; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 32px; }
  .trust-band ul { grid-template-columns: 1fr 1fr; }
  .trust-band li:nth-child(2) { border-right: none; }
  .trust-band li:nth-child(1), .trust-band li:nth-child(2) { border-bottom: 1px solid var(--border-cool); }
  .section { padding: 90px 0; }
  .section-florian { padding: 90px 0; }
}
@media (max-width: 720px) {
  .wrap { padding: 0 20px; }
  .nav { display: none; }
  .btn-phone span { display: none; }
  .btn-phone { padding: 10px 12px; }
  .header-inner { padding: 12px 20px; gap: 10px; }
  .bento { grid-template-columns: 1fr; }
  .bento-feature { grid-column: span 1; grid-template-columns: 1fr; }
  .bento-card ul { grid-template-columns: 1fr; }
  .commits { grid-template-columns: 1fr; }
  .cities { grid-template-columns: 1fr; }
  .contact-form .grid-2 { grid-template-columns: 1fr; }
  .contact-info, .contact-form { padding: 28px 24px; }
  .mobile-cta { display: inline-flex; }
  body { padding-bottom: 80px; }
  .footer-grid { grid-template-columns: 1fr; gap: 28px; }
  .hero { min-height: 680px; }
  .hero-grid {
    padding: 40px 20px 100px;
    grid-template-columns: 1fr;
    grid-template-areas:
      "index"
      "body"
      "foot";
    row-gap: 28px;
    column-gap: 0;
  }
  .hero-side { display: none; }
  .hero-index { flex-direction: row; align-items: center; gap: 10px; border-top: none; padding-top: 0; }
  .hero-index .index-label { font-size: 0.72rem; }
  .hero-index .index-num { font-size: 1.3rem; margin: 0; }
  .hero-index .index-of { font-size: 0.66rem; }
  .hero-kicker { font-size: 0.72rem; margin-bottom: 22px; }
  .hero-title { font-size: clamp(2.2rem, 10vw, 3.6rem); margin-bottom: 28px; }
  .hero-title .line:nth-child(2) { padding-left: 0; }
  .hero-title .line:nth-child(3) { padding-left: 0; }
  .hero-caption { grid-template-columns: 32px 1fr; gap: 14px; margin-bottom: 32px; }
  .hero-cta { flex-direction: column; align-items: stretch; gap: 16px; }
  .hero-cta .btn-primary { justify-content: center; }
  .foot-list { gap: 18px; font-size: 0.78rem; }
  .foot-meta { margin-left: 0; width: 100%; font-size: 0.72rem; }
  .section { padding: 70px 0; }
  .section-florian { padding: 70px 0; }
  .contact-phone-big a { font-size: 1.6rem; }
}
@media (max-width: 420px) {
  body { font-size: 16px; }
  .contact-info, .contact-form { border-radius: var(--r); }
}
