  /* ═══════════════════════════════════════════════════
     CZN MACHINERY — DESIGN SYSTEM
     Editorial Industrial Luxury
  ═══════════════════════════════════════════════════ */
  :root {
    --cream: #f4efe4;
    --cream-pure: #faf6ec;
    --paper: #ede7d8;
    --ink: #212A35;
    --oak: #171E27;
    --oak-soft: #2A3441;
    --oak-line: #36414F;
    --muted: #6b6660;
    --muted-light: #98938b;
    --orange: #F2811C;
    --orange-light: #F58A4E;
    --orange-dim: rgba(242,129,28,0.12);
    --orange-deep: #C9551A;
    --sonca-yellow: #F5C518;
    --sonca-yellow-soft: rgba(245,197,24,0.18);
    --white: #ffffff;
    --border: rgba(33,42,53,0.10);
    --shadow-sm: 0 2px 8px rgba(33,42,53,0.05), 0 1px 2px rgba(33,42,53,0.06);
    --shadow-md: 0 12px 32px -8px rgba(33,42,53,0.12), 0 2px 6px rgba(33,42,53,0.06);
    --shadow-lg: 0 32px 64px -20px rgba(33,42,53,0.20), 0 4px 12px rgba(33,42,53,0.08);
    --border-dark: rgba(255,250,235,0.10);

    --f-display: 'Bricolage Grotesque', sans-serif;
    --f-serif: 'Fraunces', Georgia, serif;
    --f-body: 'Inter', sans-serif;
    --f-mono: 'DM Mono', 'Courier New', monospace;

    --ease-quart: cubic-bezier(0.25, 1, 0.5, 1);
    --ease-expo: cubic-bezier(0.16, 1, 0.3, 1);
  }

  *, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
  html { scroll-behavior: smooth; }
  body {
    font-family: var(--f-body);
    background-color: var(--cream);
    color: var(--ink);
    font-weight: 400;
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden;
  }

  a { color: inherit; text-decoration: none; }
  img, svg { max-width: 100%; display: block; }
  button { font: inherit; background: none; border: none; cursor: pointer; color: inherit; }

  /* ═══════════════ TYPE PRIMITIVES ═══════════════ */
  .eyebrow {
    font-family: var(--f-mono);
    font-size: 11px;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--orange);
    font-weight: 500;
    display: inline-flex;
    align-items: center;
    gap: 12px;
  }
  .eyebrow::before {
    content: '';
    width: 24px;
    height: 1px;
    background: currentColor;
    display: inline-block;
  }
  .eyebrow.no-rule::before { display: none; }

  .display {
    font-family: var(--f-display);
    font-weight: 500;
    letter-spacing: -0.025em;
    line-height: 0.95;
  }
  .display em {
    font-style: normal;
    color: var(--orange);
  }

  .container {
    max-width: 1360px;
    margin: 0 auto;
    padding: 0 48px;
  }

  /* ═══════════════ TOP UTILITY BAR ═══════════════ */
  .utility-bar {
    background: var(--ink);
    color: var(--cream);
    padding: 8px 0;
    font-size: 11.5px;
    font-family: var(--f-mono);
    letter-spacing: 0.06em;
    position: relative;
    z-index: 100;
  }
  .utility-bar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
  }
  .utility-bar a:hover { color: var(--orange-light); }
  .utility-left, .utility-right {
    display: flex;
    gap: 24px;
    align-items: center;
  }
  .util-divider {
    width: 1px;
    height: 11px;
    background: rgba(255,250,235,0.25);
  }

  /* ═══════════════ NAVIGATION ═══════════════ */
  nav#mainNav {
    position: sticky;
    top: 0;
    z-index: 90;
    background: var(--cream);
    border-bottom: 1px solid var(--border);
    transition: all 0.4s var(--ease-quart);
  }
  nav#mainNav.scrolled {
    background: rgba(244,239,228,0.92);
    backdrop-filter: blur(20px) saturate(1.2);
  }
  .nav-inner {
    display: grid;
    grid-template-columns: auto 1fr auto;
    align-items: center;
    padding: 22px 0;
    gap: 64px;
    max-width: 1360px;
    margin: 0 auto;
    padding-left: 48px;
    padding-right: 48px;
  }
  /* ── Site logo: positive (cream bg) for nav, reverse (dark bg) for footer ── */
  .site-logo {
    display: inline-flex;
    align-items: center;
    text-decoration: none;
    line-height: 0;
  }
  .site-logo svg {
    height: 48px;
    width: auto;
    display: block;
  }
  .site-logo--footer svg {
    height: 64px;
  }

  .nav-links {
    display: flex;
    justify-content: center;
    gap: 38px;
    list-style: none;
  }
  .nav-links a {
    font-size: 13px;
    color: var(--ink);
    font-weight: 500;
    position: relative;
    padding: 8px 0;
    transition: color 0.2s;
  }
  .nav-links a::before {
    content: '';
    position: absolute;
    bottom: 0; left: 0;
    width: 0; height: 1px;
    background: var(--orange);
    transition: width 0.3s var(--ease-quart);
  }
  .nav-links a:hover::before { width: 100%; }
  .nav-links a:hover { color: var(--orange); }
  .nav-links a.nav-active::before { width: 100%; }
  .nav-links a.nav-active { color: var(--orange); }

  .nav-actions {
    display: flex;
    gap: 16px;
    align-items: center;
  }
  .nav-icon {
    width: 38px; height: 38px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    border: 1px solid var(--border);
    transition: all 0.2s;
    position: relative;
  }
  .nav-icon:hover {
    background: var(--ink);
    color: var(--cream);
    border-color: var(--ink);
  }
  .nav-icon .badge {
    position: absolute;
    top: -2px; right: -2px;
    background: var(--orange-deep);
    color: var(--cream-pure);
    font-family: var(--f-mono);
    font-size: 9px;
    width: 16px; height: 16px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 500;
  }
  .nav-cta {
    background: var(--ink);
    color: var(--cream-pure);
    padding: 12px 22px;
    font-size: 12px;
    font-weight: 500;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    transition: all 0.2s;
    border-radius: 2px;
    display: inline-flex;
    align-items: center;
    gap: 10px;
  }
  .nav-cta:hover { background: var(--orange); }
  .nav-cta .arrow {
    transition: transform 0.3s;
  }
  .nav-cta:hover .arrow { transform: translateX(3px); }

  /* ═══════════════ HERO ═══════════════ */
  .hero {
    position: relative;
    background: var(--oak);
    color: var(--cream);
    min-height: 92vh;
    overflow: hidden;
    display: flex;
    flex-direction: column;
  }
  .hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image: 
      linear-gradient(rgba(242,129,28,0.05) 1px, transparent 1px),
      linear-gradient(90deg, rgba(242,129,28,0.05) 1px, transparent 1px);
    background-size: 64px 64px;
    background-position: -1px -1px;
    mask-image: radial-gradient(ellipse at center, black 30%, transparent 75%);
    -webkit-mask-image: radial-gradient(ellipse at center, black 30%, transparent 75%);
    opacity: 0.22;
  }
  .hero::after {
    content: '';
    position: absolute;
    bottom: 0; left: 0; right: 0;
    height: 200px;
    background: linear-gradient(to bottom, transparent, var(--oak));
    pointer-events: none;
    z-index: 2;
  }

  /* Hero ambient glow */
  .hero-glow {
    position: absolute;
    width: 800px; height: 800px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(242,129,28,0.18) 0%, transparent 65%);
    top: -200px; right: -200px;
    z-index: 1;
    animation: glowPulse 8s ease-in-out infinite;
  }
  @keyframes glowPulse {
    0%, 100% { opacity: 0.6; transform: scale(1); }
    50% { opacity: 1; transform: scale(1.08); }
  }

  .hero-machine {
    position: absolute;
    right: 4%;
    bottom: 80px;
    width: 58%;
    max-width: 880px;
    z-index: 3;
    opacity: 0;
    transform: translateX(80px);
    animation: machineIn 1.4s var(--ease-expo) 0.6s forwards;
    filter: drop-shadow(0 40px 60px rgba(0,0,0,0.5));
  }
  @keyframes machineIn {
    to { opacity: 1; transform: translateX(0); }
  }

  .hero-content {
    flex: 1;
    display: flex;
    align-items: center;
    position: relative;
    z-index: 5;
  }
  .hero-content .container {
    width: 100%;
    padding-top: 80px;
    padding-bottom: 60px;
  }
  .hero-eyebrow {
    color: var(--orange-light);
    margin-bottom: 32px;
    opacity: 0;
    animation: fadeUp 0.8s ease 0.2s forwards;
  }
  .hero-title {
    font-family: var(--f-display);
    font-weight: 500;
    font-size: clamp(46px, 6.4vw, 96px);
    line-height: 0.92;
    letter-spacing: -0.035em;
    max-width: 14ch;
    color: var(--cream-pure);
  }
  .hero-title .word {
    display: inline-block;
    opacity: 0;
    transform: translateY(40px);
    animation: wordIn 1s var(--ease-expo) forwards;
  }
  .hero-title .word:nth-child(1) { animation-delay: 0.3s; }
  .hero-title .word:nth-child(2) { animation-delay: 0.45s; }
  .hero-title .word:nth-child(3) { animation-delay: 0.6s; }
  .hero-title .word:nth-child(4) { animation-delay: 0.75s; }
  .hero-title em {
    font-style: normal;
    color: var(--orange);
    position: relative;
    display: inline-block;
  }
  .hero-title em::after {
    content: "";
    position: absolute;
    left: 0;
    right: 0.15em; /* léger retrait pour ne pas souligner la virgule */
    bottom: 0.02em;
    height: 0.08em;
    background-color: var(--orange);
    border-radius: 2px;
    transform: scaleX(0);
    transform-origin: left center;
    animation: underlineDraw 0.7s cubic-bezier(0.65, 0, 0.35, 1) 1.3s forwards;
    pointer-events: none;
  }
  @keyframes underlineDraw {
    to { transform: scaleX(1); }
  }
  @keyframes wordIn {
    to { opacity: 1; transform: translateY(0); }
  }

  .hero-sub {
    max-width: 48ch;
    font-size: 17px;
    line-height: 1.6;
    color: rgba(244,239,228,0.7);
    margin-top: 32px;
    opacity: 0;
    animation: fadeUp 0.8s ease 1s forwards;
  }
  .hero-actions {
    display: flex;
    gap: 18px;
    margin-top: 44px;
    opacity: 0;
    animation: fadeUp 0.8s ease 1.2s forwards;
    flex-wrap: wrap;
  }
  @keyframes fadeUp {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
  }
  @keyframes fadeIn {
    to { opacity: 1; }
  }

  .btn {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 18px 32px;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    transition: all 0.3s var(--ease-quart);
    border-radius: 2px;
    border: 1px solid transparent;
    cursor: pointer;
  }
  .btn-primary {
    background: var(--orange);
    color: var(--ink);
  }
  .btn-primary:hover {
    background: var(--orange-light);
    transform: translateY(-2px);
    box-shadow: 0 14px 32px rgba(242,129,28,0.4);
  }
  .btn-ghost {
    background: transparent;
    color: rgba(244,239,228,0.85);
    border-color: rgba(244,239,228,0.25);
  }
  .btn-ghost:hover {
    border-color: var(--orange-light);
    color: var(--orange-light);
    background: rgba(242,129,28,0.05);
  }
  .btn-dark {
    background: var(--ink);
    color: var(--cream-pure);
  }
  .btn-dark:hover {
    background: var(--orange);
    color: var(--ink);
  }
  .btn-outline {
    background: transparent;
    color: var(--ink);
    border-color: var(--ink);
  }
  .btn-outline:hover {
    background: var(--ink);
    color: var(--cream-pure);
  }
  .btn .arrow {
    transition: transform 0.3s;
    width: 16px;
  }
  .btn:hover .arrow { transform: translateX(4px); }

  /* Hero stats bar */
  .hero-meta {
    position: relative;
    z-index: 5;
    border-top: 1px solid rgba(242,129,28,0.18);
    padding: 24px 0;
    background: rgba(33,42,53,0.45);
    backdrop-filter: blur(8px);
  }
  .hero-meta .container {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr 1fr;
    gap: 32px;
    align-items: center;
  }
  .meta-status {
    display: flex;
    align-items: center;
    gap: 12px;
    font-family: var(--f-mono);
    font-size: 11px;
    color: rgba(244,239,228,0.7);
    letter-spacing: 0.1em;
    text-transform: uppercase;
  }
  .status-dot {
    width: 8px; height: 8px;
    border-radius: 50%;
    background: #4ade80;
    box-shadow: 0 0 12px rgba(74,222,128,0.6);
    animation: statusPulse 2s ease-in-out infinite;
  }
  @keyframes statusPulse {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.5; }
  }
  .meta-stat {
    border-left: 1px solid rgba(242,129,28,0.15);
    padding-left: 24px;
  }
  .meta-stat-num {
    font-family: var(--f-display);
    font-size: 28px;
    font-weight: 600;
    color: var(--orange-light);
    line-height: 1;
    letter-spacing: -0.02em;
  }
  .meta-stat-label {
    font-family: var(--f-mono);
    font-size: 10px;
    color: rgba(244,239,228,0.55);
    letter-spacing: 0.1em;
    text-transform: uppercase;
    margin-top: 4px;
  }

  /* ═══════════════ MARQUEE BAND — Scrolling trust signals under hero
     Sits between hero and Histoire on dark navy bg, continuing the hero's tone.
     A continuous horizontal scroll of trust/sales messages, looped seamlessly via
     content duplication. Edges fade to background via mask-image.
  ═══════════════ */
  .marquee-band {
    background: var(--oak);
    color: var(--cream);
    overflow: hidden;
    padding: 18px 0;
    position: relative;
    border-bottom: 1px solid var(--oak-line);
  }
  .marquee-band::before {
    /* Subtle orange top accent line, fades at edges */
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 1px;
    background: linear-gradient(to right, transparent, var(--orange) 30%, var(--orange) 70%, transparent);
    opacity: 0.4;
  }
  .marquee-track {
    display: flex;
    overflow: hidden;
    mask-image: linear-gradient(to right, transparent 0, black 60px, black calc(100% - 60px), transparent 100%);
    -webkit-mask-image: linear-gradient(to right, transparent 0, black 60px, black calc(100% - 60px), transparent 100%);
  }
  .marquee-content {
    display: flex;
    align-items: center;
    flex-shrink: 0;
    white-space: nowrap;
    animation: marqueeScroll 60s linear infinite;
    will-change: transform;
  }
  .m-item {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 0 28px;
    font-family: var(--f-display);
    font-size: 15px;
    font-weight: 500;
    letter-spacing: 0.005em;
    color: var(--cream-pure);
    white-space: nowrap;
  }
  .m-item strong {
    color: var(--orange);
    font-weight: 600;
  }
  .m-sep {
    display: inline-block;
    color: var(--orange);
    font-size: 9px;
    opacity: 0.5;
    line-height: 1;
    vertical-align: middle;
  }
  @keyframes marqueeScroll {
    from { transform: translateX(0); }
    to { transform: translateX(-50%); }
  }
  @media (prefers-reduced-motion: reduce) {
    .marquee-content { animation: none; transform: translateX(0); }
  }
  @media (max-width: 720px) {
    .m-item { font-size: 13px; padding: 0 20px; }
    .marquee-band { padding: 14px 0; }
  }

  /* ═══════════════ SECTION COMMON ═══════════════ */
  section {
    position: relative;
  }
  .section-pad {
    padding: 120px 0;
  }
  .section-header {
    margin-bottom: 64px;
    max-width: 720px;
  }
  .section-title {
    font-family: var(--f-display);
    font-weight: 500;
    font-size: clamp(40px, 5.5vw, 72px);
    line-height: 1;
    letter-spacing: -0.03em;
    margin-top: 20px;
  }
  .section-title em {
    font-style: normal;
    color: var(--orange);
  }
  .section-intro {
    font-size: 17px;
    color: var(--muted);
    margin-top: 24px;
    max-width: 56ch;
    line-height: 1.7;
  }

  /* ═══════════════ HISTOIRE / MANIFESTO ═══════════════ */
  .histoire {
    padding: 140px 0 120px;
    position: relative;
    background-color: var(--cream-pure);
  }
  .histoire .container {
    display: grid;
    grid-template-columns: 1fr 1.4fr;
    gap: 100px;
    align-items: start;
  }
  .histoire-left {
    position: sticky;
    top: 120px;
  }
  .histoire-timeline {
    margin-top: 48px;
    border-left: 1px solid var(--border);
    padding-left: 32px;
    position: relative;
  }
  .timeline-item {
    margin-bottom: 36px;
    position: relative;
  }
  .timeline-item::before {
    content: '';
    position: absolute;
    left: -37px;
    top: 8px;
    width: 9px; height: 9px;
    border-radius: 50%;
    background: var(--cream-pure);
    border: 1.5px solid var(--orange);
  }
  .timeline-item.active::before {
    background: var(--orange);
    box-shadow: 0 0 0 4px var(--orange-dim);
  }
  .timeline-year {
    font-family: var(--f-mono);
    font-size: 12px;
    color: var(--orange);
    letter-spacing: 0.1em;
    margin-bottom: 4px;
  }
  .timeline-event {
    font-size: 14px;
    color: var(--ink);
    font-weight: 500;
    line-height: 1.4;
  }

  .histoire-right {
    padding-top: 24px;
  }
  .histoire-body {
    font-family: var(--f-serif);
    font-weight: 300;
    font-variation-settings: "opsz" 24;
    font-size: 24px;
    line-height: 1.5;
    color: var(--ink);
    letter-spacing: -0.01em;
  }
  .histoire-body p {
    margin-bottom: 28px;
  }
  .histoire-body p:first-child::first-letter {
    font-family: var(--f-serif);
    font-weight: 400;
    font-style: italic;
    font-size: 88px;
    float: left;
    line-height: 0.8;
    padding-right: 14px;
    padding-top: 8px;
    color: var(--orange);
  }
  .histoire-body em {
    font-style: italic;
    color: var(--orange);
  }
  .histoire-quote {
    margin-top: 56px;
    padding-top: 40px;
    border-top: 1px solid var(--border);
    font-family: var(--f-display);
    font-size: 32px;
    line-height: 1.2;
    letter-spacing: -0.02em;
    color: var(--ink);
    font-weight: 400;
  }
  .histoire-quote em {
    font-style: normal;
    color: var(--orange);
  }
  .quote-attr {
    margin-top: 20px;
    display: flex;
    align-items: center;
    gap: 14px;
    font-family: var(--f-mono);
    font-size: 11px;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--muted);
  }
  .quote-attr::before {
    content: '';
    width: 28px;
    height: 1px;
    background: var(--orange);
  }

  /* ═══════════════ CATALOGUE / GAMMES ═══════════════ */
  .catalogue {
    background: var(--oak);
    color: var(--cream);
    padding: 140px 0;
    position: relative;
    overflow: hidden;
  }
  .catalogue::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image: 
      linear-gradient(rgba(242,129,28,0.04) 1px, transparent 1px),
      linear-gradient(90deg, rgba(242,129,28,0.04) 1px, transparent 1px);
    background-size: 80px 80px;
    opacity: 0.5;
  }
  .catalogue .section-title {
    color: var(--cream-pure);
  }
  .catalogue .section-intro {
    color: rgba(244,239,228,0.6);
  }
  .gammes-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 28px;
    position: relative;
    max-width: 1100px;
    margin: 0 auto;
  }
  .gamme-card {
    background: var(--oak-soft);
    border: 1px solid var(--oak-line);
    padding: 36px 32px 32px;
    position: relative;
    transition: all 0.4s var(--ease-quart);
    overflow: hidden;
    cursor: pointer;
    min-height: 480px;
    display: flex;
    flex-direction: column;
  }
  .gamme-card::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 2px;
    background: var(--orange);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.5s var(--ease-quart);
  }
  .gamme-card:hover {
    border-color: var(--orange);
    transform: translateY(-4px);
  }
  .gamme-card:hover::before {
    transform: scaleX(1);
  }

  /* ── Sonca brand color signature: permanent yellow bandeau at top ── */
  .gamme-card.brand-sonca {
    padding-top: 56px;
  }
  .gamme-card.brand-sonca::before {
    background: var(--sonca-yellow);
    transform: scaleX(1);
    height: 26px;
  }
  .gamme-card.brand-sonca .gamme-brand-strip {
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 26px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 20px;
    color: var(--ink);
    font-family: var(--f-mono);
    font-size: 9.5px;
    font-weight: 600;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    z-index: 2;
  }
  .gamme-card.brand-sonca .gamme-brand-strip::after {
    content: '';
    display: inline-block;
    width: 10px; height: 10px;
    background: var(--ink);
    border-radius: 1px;
  }
  .gamme-card.brand-sonca:hover {
    border-color: var(--sonca-yellow);
  }
  /* Xcavator: subtle orange brand identity (default) — no override needed */

  .gamme-number {
    font-family: var(--f-mono);
    font-size: 12px;
    color: var(--orange);
    letter-spacing: 0.15em;
    margin-bottom: 8px;
  }
  .gamme-name {
    font-family: var(--f-display);
    font-size: 56px;
    font-weight: 600;
    line-height: 0.95;
    letter-spacing: -0.03em;
    color: var(--cream-pure);
    margin-bottom: 16px;
  }
  .gamme-tagline {
    font-family: var(--f-serif);
    font-style: italic;
    font-size: 17px;
    color: var(--orange-light);
    margin-bottom: 28px;
    line-height: 1.4;
  }
  .gamme-desc {
    font-size: 14px;
    color: rgba(244,239,228,0.6);
    line-height: 1.65;
    margin-bottom: 32px;
  }
  .gamme-meta {
    display: flex;
    gap: 32px;
    margin-bottom: 28px;
    padding: 18px 0;
    border-top: 1px solid var(--oak-line);
    border-bottom: 1px solid var(--oak-line);
  }
  .gm-stat {
    flex: 1;
  }
  .gm-stat-num {
    font-family: var(--f-display);
    font-size: 26px;
    font-weight: 600;
    color: var(--orange-light);
    line-height: 1;
  }
  .gm-stat-label {
    font-family: var(--f-mono);
    font-size: 10px;
    color: rgba(244,239,228,0.5);
    letter-spacing: 0.1em;
    text-transform: uppercase;
    margin-top: 4px;
  }
  .gamme-illu {
    margin-top: auto;
    margin-bottom: 24px;
    height: 90px;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0.8;
    transition: transform 0.5s var(--ease-quart);
  }
  .gamme-card:hover .gamme-illu {
    transform: scale(1.06) translateY(-4px);
    opacity: 1;
  }
  .gamme-link {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-family: var(--f-mono);
    font-size: 11px;
    color: var(--orange-light);
    letter-spacing: 0.12em;
    text-transform: uppercase;
    padding-top: 16px;
    border-top: 1px solid var(--oak-line);
  }
  .gamme-link .arrow {
    transition: transform 0.3s;
  }
  .gamme-card:hover .gamme-link .arrow {
    transform: translateX(6px);
  }

  /* ═══════════════ FEATURED PRODUCTS ═══════════════ */
  .featured {
    background-color: var(--cream);
    padding: 140px 0 120px;
  }
  .featured-header {
    display: flex;
    justify-content: space-between;
    align-items: end;
    margin-bottom: 56px;
    gap: 48px;
    flex-wrap: wrap;
  }
  .featured-filters {
    display: flex;
    gap: 8px;
  }
  .filter-btn {
    font-family: var(--f-mono);
    font-size: 11px;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--muted);
    padding: 10px 18px;
    border: 1px solid var(--border);
    background: transparent;
    border-radius: 100px;
    transition: all 0.25s;
    cursor: pointer;
  }
  .filter-btn:hover { color: var(--ink); border-color: var(--ink); }
  .filter-btn.active {
    background: var(--ink);
    color: var(--cream);
    border-color: var(--ink);
  }
  .products-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
  }
  .product-card {
    background: var(--white);
    border: 1px solid var(--border);
    overflow: hidden;
    transition: all 0.4s var(--ease-quart);
    cursor: pointer;
    display: flex;
    flex-direction: column;
    border-radius: 3px;
    box-shadow: var(--shadow-sm);
  }
  .product-card:hover {
    transform: translateY(-6px);
    border-color: var(--orange);
    box-shadow: var(--shadow-lg);
  }
  .product-img {
    aspect-ratio: 4/3;
    background: linear-gradient(135deg, #ddd5c4, #c9c0aa);
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  .product-img .product-photo {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
  }
  .product-img::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image: 
      radial-gradient(ellipse 50% 30% at 50% 75%, rgba(0,0,0,0.15), transparent);
  }
  .product-tag {
    position: absolute;
    top: 16px; left: 16px;
    background: var(--ink);
    color: var(--cream-pure);
    font-family: var(--f-mono);
    font-size: 10px;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    padding: 5px 10px;
    border-radius: 2px;
    z-index: 2;
  }
  .product-tag.stock {
    background: var(--orange-deep);
  }
  .product-tag.promo {
    background: var(--orange);
    color: var(--ink);
  }
  .product-info {
    padding: 24px 24px 28px;
    flex: 1;
    display: flex;
    flex-direction: column;
  }
  .product-brand {
    font-family: var(--f-mono);
    font-size: 10px;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--orange);
    margin-bottom: 6px;
  }
  .product-name {
    font-family: var(--f-display);
    font-size: 22px;
    font-weight: 500;
    color: var(--ink);
    line-height: 1.15;
    letter-spacing: -0.015em;
    margin-bottom: 16px;
  }
  .product-specs {
    display: flex;
    gap: 16px;
    padding: 12px 0;
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
    margin-bottom: 20px;
  }
  .product-spec {
    flex: 1;
    text-align: center;
  }
  .ps-val {
    font-family: var(--f-display);
    font-size: 15px;
    font-weight: 600;
    color: var(--ink);
  }
  .ps-label {
    font-family: var(--f-mono);
    font-size: 9px;
    color: var(--muted);
    letter-spacing: 0.08em;
    text-transform: uppercase;
    margin-top: 2px;
  }
  .product-footer {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    margin-top: auto;
  }
  .product-price {
    display: flex;
    flex-direction: column;
  }
  .price-label {
    font-family: var(--f-mono);
    font-size: 10px;
    color: var(--muted);
    letter-spacing: 0.08em;
    text-transform: uppercase;
  }
  .price-val {
    font-family: var(--f-display);
    font-size: 26px;
    font-weight: 600;
    color: var(--ink);
    letter-spacing: -0.02em;
    line-height: 1;
    margin-top: 2px;
  }
  .price-val .currency {
    font-size: 16px;
    color: var(--orange);
  }
  .price-suffix {
    font-family: var(--f-mono);
    font-size: 10px;
    color: var(--muted);
    margin-top: 4px;
  }
  .product-cta {
    width: 42px; height: 42px;
    border-radius: 50%;
    background: var(--cream);
    border: 1px solid var(--border);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--ink);
    transition: all 0.25s;
  }
  .product-card:hover .product-cta {
    background: var(--ink);
    color: var(--cream-pure);
    border-color: var(--ink);
    transform: rotate(-45deg);
  }
  .featured-bottom {
    margin-top: 56px;
    text-align: center;
  }

  /* ═══════════════ CONFIGURATEUR PROMO ═══════════════ */
  .config-promo {
    background-color: var(--paper);
    padding: 120px 0;
    position: relative;
    overflow: hidden;
  }
  .config-promo .container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
  }
  .config-visual {
    background: var(--white);
    border: 1px solid var(--border);
    padding: 40px 36px;
    position: relative;
    border-radius: 4px;
    box-shadow: var(--shadow-lg);
  }
  .config-visual-head {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-bottom: 24px;
    border-bottom: 1px solid var(--border);
    margin-bottom: 28px;
  }
  .config-product-name {
    font-family: var(--f-display);
    font-size: 24px;
    font-weight: 500;
    letter-spacing: -0.02em;
  }
  .config-live {
    display: flex;
    align-items: center;
    gap: 8px;
    font-family: var(--f-mono);
    font-size: 11px;
    color: var(--orange);
    letter-spacing: 0.08em;
    text-transform: uppercase;
  }
  .live-dot {
    width: 6px; height: 6px;
    border-radius: 50%;
    background: var(--orange);
    animation: livePulse 1.5s ease-in-out infinite;
  }
  @keyframes livePulse {
    0%, 100% { opacity: 0.4; }
    50% { opacity: 1; box-shadow: 0 0 8px var(--orange); }
  }

  .config-options {
    display: flex;
    flex-direction: column;
    gap: 14px;
    margin-bottom: 28px;
  }
  .config-opt {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 14px 16px;
    background: var(--cream);
    border-radius: 2px;
    transition: all 0.2s;
    border: 1px solid transparent;
    cursor: pointer;
  }
  .config-opt:hover {
    border-color: var(--orange);
  }
  .config-opt.selected {
    background: rgba(242,129,28,0.06);
    border-color: var(--orange);
  }
  .opt-info {
    display: flex;
    align-items: center;
    gap: 14px;
  }
  .opt-check {
    width: 18px; height: 18px;
    border-radius: 50%;
    border: 1.5px solid var(--border);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
  }
  .config-opt.selected .opt-check {
    background: var(--orange);
    border-color: var(--orange);
  }
  .opt-name {
    font-size: 14px;
    color: var(--ink);
    font-weight: 500;
  }
  .opt-price {
    font-family: var(--f-mono);
    font-size: 13px;
    color: var(--ink);
    font-weight: 500;
  }
  .opt-price.free {
    color: var(--muted);
  }
  .config-total {
    padding: 20px 16px;
    background: var(--ink);
    color: var(--cream-pure);
    border-radius: 2px;
    display: flex;
    justify-content: space-between;
    align-items: center;
  }
  .total-label {
    font-family: var(--f-mono);
    font-size: 11px;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: rgba(244,239,228,0.6);
  }
  .total-value {
    font-family: var(--f-display);
    font-size: 28px;
    font-weight: 600;
    color: var(--orange-light);
    letter-spacing: -0.02em;
  }
  .total-value .cur {
    font-size: 18px;
  }
  .config-deposit {
    margin-top: 12px;
    font-family: var(--f-mono);
    font-size: 10px;
    color: var(--muted);
    letter-spacing: 0.06em;
    text-align: right;
  }
  .config-deposit strong {
    color: var(--orange);
    font-weight: 500;
  }

  .config-content .eyebrow { margin-bottom: 24px; }
  .config-content .section-title {
    font-size: clamp(36px, 4.5vw, 60px);
    margin-bottom: 28px;
  }
  .config-content > p {
    font-size: 17px;
    color: var(--muted);
    margin-bottom: 36px;
    line-height: 1.7;
    max-width: 46ch;
  }
  .config-features {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px 32px;
    margin-bottom: 40px;
  }
  .cf-item {
    display: flex;
    gap: 14px;
  }
  .cf-icon {
    width: 36px; height: 36px;
    border-radius: 50%;
    background: var(--orange-dim);
    color: var(--orange);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
  }
  .cf-text strong {
    display: block;
    font-size: 14px;
    color: var(--ink);
    margin-bottom: 2px;
    font-weight: 600;
  }
  .cf-text span {
    font-size: 13px;
    color: var(--muted);
    line-height: 1.5;
  }

  /* ═══════════════ POURQUOI CZN ═══════════════ */
  .pourquoi {
    background-color: var(--cream);
    padding: 140px 0;
  }
  .pourquoi-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
  }
  .pourquoi-item {
    background: var(--white);
    padding: 44px 36px 40px;
    position: relative;
    transition: all 0.3s var(--ease-quart);
    border-radius: 3px;
    border: 1px solid var(--border);
    box-shadow: var(--shadow-sm);
    overflow: hidden;
  }
  .pourquoi-item:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
    border-color: var(--orange);
  }
  .pourquoi-item::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 2px;
    background: var(--orange);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s var(--ease-quart);
  }
  .pourquoi-item:hover::before {
    transform: scaleX(1);
  }
  .pq-number {
    font-family: var(--f-mono);
    font-size: 11px;
    color: var(--orange);
    letter-spacing: 0.15em;
    margin-bottom: 28px;
    display: block;
  }
  .pq-icon {
    margin-bottom: 24px;
    color: var(--ink);
    transition: all 0.4s var(--ease-quart);
  }
  .pourquoi-item:hover .pq-icon {
    color: var(--orange);
    transform: scale(1.08);
  }
  .pq-title {
    font-family: var(--f-display);
    font-size: 24px;
    font-weight: 500;
    letter-spacing: -0.02em;
    line-height: 1.15;
    color: var(--ink);
    margin-bottom: 12px;
  }
  .pq-title em {
    font-style: normal;
    color: var(--orange);
  }
  .pq-desc {
    font-size: 14px;
    color: var(--muted);
    line-height: 1.65;
  }

  /* ═══════════════ ACHETER EN LIGNE ═══════════════ */
  .acheter {
    background: var(--oak);
    color: var(--cream);
    padding: 140px 0;
    position: relative;
    overflow: hidden;
  }
  .acheter::before {
    content: '';
    position: absolute;
    width: 600px; height: 600px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(242,129,28,0.15), transparent 70%);
    top: -200px; left: -200px;
  }
  .acheter .container {
    position: relative;
    z-index: 2;
  }
  .acheter .section-header {
    text-align: center;
    margin: 0 auto 80px;
    max-width: 720px;
  }
  .acheter .eyebrow {
    color: var(--orange-light);
    justify-content: center;
  }
  .acheter .section-title {
    color: var(--cream-pure);
  }
  .acheter .section-intro {
    color: rgba(244,239,228,0.65);
    margin-left: auto;
    margin-right: auto;
  }

  .steps {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
    position: relative;
  }
  .steps::before {
    content: '';
    position: absolute;
    top: 36px;
    left: 12%;
    right: 12%;
    height: 1px;
    background: repeating-linear-gradient(to right, var(--orange-light) 0, var(--orange-light) 6px, transparent 6px, transparent 12px);
    opacity: 0.4;
  }
  .step {
    text-align: center;
    position: relative;
    z-index: 2;
  }
  .step-num {
    width: 72px; height: 72px;
    margin: 0 auto 28px;
    background: var(--oak);
    border: 1.5px solid var(--orange);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--f-display);
    font-size: 28px;
    font-weight: 600;
    color: var(--orange-light);
    position: relative;
  }
  .step-num::before {
    content: '';
    position: absolute;
    inset: -8px;
    border-radius: 50%;
    border: 1px solid rgba(242,129,28,0.15);
  }
  .step-title {
    font-family: var(--f-display);
    font-size: 22px;
    font-weight: 500;
    letter-spacing: -0.02em;
    color: var(--cream-pure);
    margin-bottom: 12px;
  }
  .step-desc {
    font-size: 14px;
    color: rgba(244,239,228,0.6);
    line-height: 1.65;
    max-width: 32ch;
    margin: 0 auto;
  }
  .step-amount {
    margin-top: 16px;
    font-family: var(--f-mono);
    font-size: 12px;
    color: var(--orange-light);
    letter-spacing: 0.08em;
    padding: 5px 14px;
    background: rgba(242,129,28,0.08);
    border-radius: 100px;
    display: inline-block;
  }

  .acheter-trust {
    margin-top: 80px;
    padding-top: 48px;
    border-top: 1px solid rgba(244,239,228,0.1);
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 48px;
    flex-wrap: wrap;
  }
  .trust-item {
    display: flex;
    align-items: center;
    gap: 12px;
    font-family: var(--f-mono);
    font-size: 11px;
    color: rgba(244,239,228,0.65);
    letter-spacing: 0.08em;
    text-transform: uppercase;
  }
  .trust-item svg {
    color: var(--orange-light);
  }

  /* ═══════════════ LIVRAISON FRANCE ═══════════════ */
  .livraison {
    background-color: var(--cream-pure);
    padding: 140px 0;
    overflow: hidden;
  }
  .livraison .container {
    /* Top-down: header, stats row, then map+legend grid */
  }
  .livraison .section-header {
    max-width: 720px;
    margin-bottom: 56px;
  }
  .livraison .section-title {
    font-size: clamp(40px, 5vw, 64px);
  }
  .livraison-stats {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 0;
    margin-bottom: 72px;
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
  }
  .liv-stat {
    padding: 28px 24px;
    border-right: 1px solid var(--border);
  }
  .liv-stat:last-child { border-right: none; }
  .ls-num {
    font-family: var(--f-display);
    font-size: 36px;
    font-weight: 600;
    color: var(--ink);
    letter-spacing: -0.02em;
    line-height: 1;
  }
  .ls-num em {
    font-style: normal;
    color: var(--orange);
  }
  .ls-label {
    font-family: var(--f-mono);
    font-size: 11px;
    color: var(--muted);
    letter-spacing: 0.08em;
    text-transform: uppercase;
    margin-top: 10px;
  }

  /* ─── Zone block: SVG map + pricing legend ─── */
  .zone-block {
    display: grid;
    grid-template-columns: 1.4fr 1fr;
    gap: 64px;
    align-items: center;
  }
  .france-zone-map {
    position: relative;
    max-width: 600px;
    margin: 0 auto;
    width: 100%;
  }
  /* Image has transparent background — sits directly on the cream section with no frame.
     Subtle drop-shadow follows the France silhouette (works on alpha mask, not a bounding box). */
  .france-zone-img {
    display: block;
    width: 100%;
    height: auto;
    filter: drop-shadow(0 4px 12px rgba(33,42,53,0.08))
            drop-shadow(0 1px 2px rgba(33,42,53,0.10));
  }
  .france-zone-caption {
    margin-top: 24px;
    font-family: var(--f-mono);
    font-size: 11px;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--muted);
    text-align: center;
  }

  .delivery-legend {
    display: flex;
    flex-direction: column;
  }
  .delivery-legend-head {
    margin-bottom: 24px;
  }
  .dl-title {
    font-family: var(--f-display);
    font-size: 22px;
    font-weight: 500;
    letter-spacing: -0.015em;
    color: var(--ink);
    line-height: 1.2;
    margin-bottom: 6px;
  }
  .dl-note {
    font-family: var(--f-mono);
    font-size: 11px;
    letter-spacing: 0.05em;
    color: var(--muted);
  }
  .dl-note strong {
    color: var(--orange);
    font-weight: 500;
  }
  .legend-rows {
    display: flex;
    flex-direction: column;
    gap: 8px;
  }
  .legend-row {
    display: grid;
    grid-template-columns: 1fr 90px;
    gap: 16px;
    align-items: center;
  }
  .legend-swatch {
    height: 38px;
    border-radius: 2px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--f-display);
    font-size: 15px;
    font-weight: 600;
    letter-spacing: 0.01em;
    transition: transform 0.25s var(--ease-quart);
  }
  .legend-row:hover .legend-swatch {
    transform: translateX(-4px);
  }
  /* Legend swatch colors — sampled directly from the map image to match exactly */
  .legend-swatch.zone-1 { background: #47B6BA; color: var(--ink); }
  .legend-swatch.zone-2 { background: #A5DCE7; color: var(--ink); }
  .legend-swatch.zone-3 { background: #1E225F; color: #fff; }
  .legend-swatch.zone-4 { background: #CFE3F0; color: var(--ink); }
  .legend-swatch.zone-5 { background: #3D73B3; color: #fff; }
  .legend-swatch.zone-6 { background: #426191; color: #fff; }
  .legend-swatch.zone-corse {
    background: transparent;
    color: var(--ink);
    border: 1.5px solid var(--ink);
  }
  .legend-price {
    font-family: var(--f-display);
    font-size: 18px;
    font-weight: 600;
    color: var(--ink);
    letter-spacing: -0.01em;
  }
  .legend-price.consult {
    font-family: var(--f-mono);
    font-size: 12px;
    font-weight: 400;
    color: var(--muted);
    letter-spacing: 0.04em;
    text-transform: lowercase;
  }

  @media (max-width: 1024px) {
    .zone-block { grid-template-columns: 1fr; gap: 48px; }
    .livraison-stats { grid-template-columns: repeat(2, 1fr); }
    .liv-stat:nth-child(2) { border-right: none; }
    .liv-stat:nth-child(1), .liv-stat:nth-child(2) { border-bottom: 1px solid var(--border); }
  }
  @media (max-width: 720px) {
    .livraison-stats { grid-template-columns: repeat(2, 1fr); }
    .liv-stat { padding: 20px 14px; }
    .liv-stat:nth-child(1), .liv-stat:nth-child(3) { border-right: 1px solid var(--border); }
    .liv-stat:nth-child(2), .liv-stat:nth-child(4) { border-right: none; }
    .liv-stat:nth-child(1), .liv-stat:nth-child(2) { border-bottom: 1px solid var(--border); }
    .liv-stat:nth-child(3), .liv-stat:nth-child(4) { border-bottom: none; }
    .legend-row { grid-template-columns: 1fr 80px; }
  }

  /* ═══════════════ TESTIMONIALS ═══════════════ */
  .testimonials {
    background-color: var(--cream);
    padding: 140px 0;
  }
  .testimonials .section-header {
    text-align: center;
    margin: 0 auto 64px;
    max-width: 720px;
  }
  .testimonials .eyebrow {
    justify-content: center;
  }
  .reviews-meta {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 24px;
    margin-bottom: 56px;
    padding-bottom: 48px;
    border-bottom: 1px solid var(--border);
  }
  .stars {
    display: flex;
    gap: 4px;
    color: var(--orange);
  }
  .reviews-score {
    font-family: var(--f-display);
    font-size: 48px;
    font-weight: 600;
    line-height: 1;
    letter-spacing: -0.02em;
    color: var(--ink);
  }
  .reviews-info {
    font-family: var(--f-mono);
    font-size: 12px;
    color: var(--muted);
    letter-spacing: 0.06em;
  }
  .reviews-info strong { color: var(--ink); font-weight: 500; }

  .testimonials-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
  }
  .testimonial {
    background: var(--white);
    border: 1px solid var(--border);
    padding: 32px 30px 30px;
    border-radius: 3px;
    transition: all 0.3s var(--ease-quart);
    box-shadow: var(--shadow-sm);
  }
  .testimonial:hover {
    border-color: var(--orange);
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
  }
  .test-stars {
    color: var(--orange);
    margin-bottom: 16px;
    display: flex;
    gap: 2px;
  }
  .test-text {
    font-family: var(--f-serif);
    font-style: italic;
    font-weight: 300;
    font-size: 17px;
    line-height: 1.55;
    color: var(--ink);
    margin-bottom: 24px;
    font-variation-settings: "opsz" 24;
  }
  .test-author {
    display: flex;
    align-items: center;
    gap: 14px;
    padding-top: 20px;
    border-top: 1px solid var(--border);
  }
  .test-avatar {
    width: 40px; height: 40px;
    border-radius: 50%;
    background: var(--orange);
    color: var(--ink);
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--f-display);
    font-size: 15px;
    font-weight: 600;
  }
  .test-info {
    flex: 1;
  }
  .test-name {
    font-size: 14px;
    font-weight: 600;
    color: var(--ink);
  }
  .test-role {
    font-family: var(--f-mono);
    font-size: 10px;
    color: var(--muted);
    letter-spacing: 0.06em;
    margin-top: 2px;
  }
  .test-badge {
    font-family: var(--f-mono);
    font-size: 9px;
    color: var(--orange);
    letter-spacing: 0.08em;
    text-transform: uppercase;
    background: var(--orange-dim);
    padding: 4px 8px;
    border-radius: 2px;
  }

  .btn-google-reviews {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 14px 28px;
    border: 1.5px solid var(--border);
    border-radius: 3px;
    background: var(--cream-pure);
    font-family: var(--f-mono);
    font-size: 11px;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--ink);
    text-decoration: none;
    transition: border-color 0.2s, box-shadow 0.2s, background 0.2s;
  }
  .btn-google-reviews:hover {
    border-color: rgba(66,133,244,0.4);
    box-shadow: 0 4px 16px rgba(66,133,244,0.1);
    background: #fff;
  }


  /* ═══════════════ LOCALISATION ═══════════════ */
  .localisation {
    background-color: var(--cream-pure);
    padding: 140px 0 0;
    border-top: 1px solid var(--border);
  }
  .loc-header {
    text-align: center;
    margin: 0 auto 64px;
    max-width: 720px;
  }
  .loc-header .eyebrow { justify-content: center; }
  .loc-header .section-intro { margin-left: auto; margin-right: auto; text-align: center; }
  .loc-map {
    width: 100%;
    height: 460px;
    overflow: hidden;
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
  }
  .loc-map iframe {
    display: block;
    width: 100%;
    height: 100%;
  }
  .loc-info {
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: flex-start;
    gap: 0;
    padding: 56px 0 100px;
  }
  .loc-block {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 14px;
    padding: 0 56px;
    border-right: 1px solid var(--border);
  }
  .loc-block:last-child { border-right: none; }
  .loc-block--cta {
    justify-content: center;
    border-right: none;
  }
  .loc-icon {
    width: 48px; height: 48px;
    border-radius: 50%;
    background: var(--orange-dim);
    color: var(--orange);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
  }
  .loc-label {
    font-family: var(--f-mono);
    font-size: 10px;
    color: var(--muted);
    letter-spacing: 0.08em;
    text-transform: uppercase;
    margin-bottom: 4px;
  }
  .loc-value {
    font-family: var(--f-display);
    font-size: 16px;
    font-weight: 500;
    color: var(--ink);
    line-height: 1.55;
  }
  .loc-note {
    font-family: var(--f-mono);
    font-size: 11px;
    color: var(--muted-light);
    margin-top: 2px;
  }
  .loc-cta {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 14px 24px;
    background: var(--ink);
    color: var(--cream-pure);
    font-family: var(--f-mono);
    font-size: 12px;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    text-decoration: none;
    border-radius: 2px;
    transition: background 0.2s, gap 0.25s var(--ease-quart);
    width: fit-content;
  }
  .loc-cta:hover { background: var(--orange-deep); gap: 14px; }
  .loc-cta .arrow { transition: transform 0.25s var(--ease-quart); }
  .loc-cta:hover .arrow { transform: translateX(4px); }

  @media (max-width: 900px) {
    .loc-map { height: 300px; }
    .loc-info { flex-direction: column; align-items: center; gap: 40px; padding: 48px 0 80px; }
    .loc-block { border-right: none; border-bottom: 1px solid var(--border); padding: 0 0 40px; width: 100%; }
    .loc-block:last-child { border-bottom: none; padding-bottom: 0; }
  }

  /* ═══════════════ FAQ ═══════════════ */
  .faq {
    background-color: var(--cream-pure);
    padding: 140px 0;
  }
  .faq .container {
    display: grid;
    grid-template-columns: 0.8fr 1.2fr;
    gap: 80px;
  }
  .faq-list {
    display: flex;
    flex-direction: column;
  }
  .faq-item {
    border-bottom: 1px solid var(--border);
    padding: 24px 0;
    cursor: pointer;
  }
  .faq-item:first-child { padding-top: 0; }
  .faq-q {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 24px;
    font-family: var(--f-display);
    font-size: 19px;
    font-weight: 500;
    letter-spacing: -0.01em;
    color: var(--ink);
    transition: color 0.2s;
  }
  .faq-item:hover .faq-q { color: var(--orange); }
  .faq-toggle {
    width: 34px; height: 34px;
    border: 1px solid var(--border);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: all 0.3s;
  }
  .faq-item.open .faq-toggle {
    background: var(--ink);
    color: var(--cream);
    transform: rotate(180deg);
  }
  .faq-a {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s var(--ease-quart), padding 0.4s var(--ease-quart);
    font-size: 15px;
    color: var(--muted);
    line-height: 1.7;
    padding-right: 60px;
  }
  .faq-item.open .faq-a {
    max-height: 400px;
    padding-top: 20px;
  }

  /* ═══════════════ CTA FINAL ═══════════════ */
  .cta-final {
    background: var(--ink);
    color: var(--cream);
    padding: 140px 0;
    position: relative;
    overflow: hidden;
    text-align: center;
  }
  .cta-final::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image: 
      radial-gradient(ellipse at center, rgba(242,129,28,0.15) 0%, transparent 60%);
  }
  .cta-final .container {
    position: relative;
    z-index: 2;
  }
  .cta-title {
    font-family: var(--f-display);
    font-size: clamp(54px, 8vw, 120px);
    font-weight: 500;
    line-height: 0.95;
    letter-spacing: -0.035em;
    color: var(--cream-pure);
    margin-bottom: 32px;
  }
  .cta-title em {
    font-style: normal;
    color: var(--orange-light);
  }
  .cta-sub {
    font-size: 18px;
    color: rgba(244,239,228,0.65);
    max-width: 60ch;
    margin: 0 auto 48px;
    line-height: 1.6;
  }
  .cta-actions {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
  }
  .cta-contact {
    margin-top: 56px;
    padding-top: 40px;
    border-top: 1px solid rgba(244,239,228,0.15);
    display: flex;
    justify-content: center;
    gap: 56px;
    flex-wrap: wrap;
  }
  .cta-contact-item {
    text-align: left;
  }
  .cci-label {
    font-family: var(--f-mono);
    font-size: 10px;
    color: rgba(244,239,228,0.5);
    letter-spacing: 0.12em;
    text-transform: uppercase;
    margin-bottom: 4px;
  }
  .cci-val {
    font-family: var(--f-display);
    font-size: 18px;
    color: var(--cream-pure);
    font-weight: 500;
  }
  .cci-val a:hover { color: var(--orange-light); }

  /* ═══════════════ FOOTER ═══════════════ */
  footer {
    background: #11161D;
    color: rgba(244,239,228,0.6);
    padding: 80px 0 32px;
    font-size: 13px;
  }
  .footer-top {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr 1fr;
    gap: 56px;
    padding-bottom: 56px;
    border-bottom: 1px solid var(--border-dark);
  }
  .footer-tagline {
    font-family: var(--f-serif);
    font-style: italic;
    font-size: 16px;
    color: rgba(244,239,228,0.55);
    margin-top: 20px;
    max-width: 32ch;
    line-height: 1.5;
  }
  .footer-social {
    display: flex;
    gap: 10px;
    margin-top: 28px;
  }
  .footer-social a {
    width: 36px; height: 36px;
    border: 1px solid var(--border-dark);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.25s;
  }
  .footer-social a:hover {
    background: var(--orange);
    color: var(--ink);
    border-color: var(--orange);
  }
  .footer-col h4 {
    font-family: var(--f-mono);
    font-size: 11px;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--orange-light);
    margin-bottom: 22px;
    font-weight: 500;
  }
  .footer-col ul {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 12px;
  }
  .footer-col a {
    transition: color 0.2s;
  }
  .footer-col a:hover { color: var(--orange-light); }

  .footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 32px;
    flex-wrap: wrap;
    gap: 24px;
    font-family: var(--f-mono);
    font-size: 11px;
    letter-spacing: 0.05em;
  }
  .footer-legal {
    display: flex;
    gap: 24px;
    flex-wrap: wrap;
  }
  .footer-legal a { color: rgba(244,239,228,0.5); }
  .footer-legal a:hover { color: var(--orange-light); }

  /* ── PMC Marketing watermark — site credit ── */
  .pmc-watermark {
    margin-top: 36px;
    padding-top: 24px;
    border-top: 1px dashed rgba(168,85,247,0.18);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 18px;
    flex-wrap: wrap;
    font-family: var(--f-mono);
  }
  .pmc-prefix {
    font-size: 10.5px;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: rgba(244,239,228,0.35);
  }
  .pmc-link {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 6px 14px 6px 8px;
    border-radius: 3px;
    transition: all 0.3s var(--ease-quart);
    border: 1px solid transparent;
  }
  .pmc-link:hover {
    background: rgba(168,85,247,0.06);
    border-color: rgba(168,85,247,0.25);
  }
  .pmc-icon {
    flex-shrink: 0;
    transition: transform 0.4s var(--ease-quart);
  }
  .pmc-link:hover .pmc-icon {
    transform: rotate(-3deg) scale(1.05);
  }
  .pmc-text {
    display: flex;
    flex-direction: column;
    gap: 2px;
    line-height: 1.1;
  }
  .pmc-name {
    font-family: var(--f-display);
    font-size: 15px;
    font-weight: 600;
    color: var(--cream-pure);
    letter-spacing: -0.01em;
  }
  .pmc-sub {
    font-family: var(--f-mono);
    font-size: 9.5px;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: rgba(168,85,247,0.7);
  }
  @media (max-width: 720px) {
    .pmc-watermark { gap: 12px; text-align: center; }
    .pmc-prefix { width: 100%; }
  }

  /* ═══════════════ SCROLL ANIMATIONS ═══════════════ */
  .reveal {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 0.9s var(--ease-quart), transform 0.9s var(--ease-quart);
  }
  .reveal.visible,
  .reveal.in-view {
    opacity: 1;
    transform: translateY(0);
  }
  .reveal-stagger > * {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s var(--ease-quart), transform 0.8s var(--ease-quart);
  }
  .reveal-stagger.visible > *:nth-child(1) { transition-delay: 0s; }
  .reveal-stagger.visible > *:nth-child(2) { transition-delay: 0.1s; }
  .reveal-stagger.visible > *:nth-child(3) { transition-delay: 0.2s; }
  .reveal-stagger.visible > *:nth-child(4) { transition-delay: 0.3s; }
  .reveal-stagger.visible > *:nth-child(5) { transition-delay: 0.4s; }
  .reveal-stagger.visible > *:nth-child(6) { transition-delay: 0.5s; }
  .reveal-stagger.visible > *,
  .reveal-stagger.in-view > * {
    opacity: 1;
    transform: translateY(0);
  }

  /* ═══════════════ RESPONSIVE ═══════════════ */
  @media (max-width: 1024px) {
    .container { padding: 0 32px; }
    .nav-inner { padding-left: 32px; padding-right: 32px; }
    .nav-links { display: none; }
    .gammes-grid, .products-grid, .pourquoi-grid, .testimonials-grid, .steps {
      grid-template-columns: 1fr 1fr;
    }
    .histoire .container, .config-promo .container, .livraison .container, .faq .container {
      grid-template-columns: 1fr;
      gap: 56px;
    }
    .histoire-left { position: static; }
    .footer-top { grid-template-columns: 1fr 1fr; gap: 40px; }
    .hero-machine { width: 70%; opacity: 0.4 !important; }
    .hero-meta .container { grid-template-columns: 1fr 1fr; gap: 16px; }
  }
  @media (max-width: 720px) {
    .container { padding: 0 20px; }
    .nav-inner { padding-left: 20px; padding-right: 20px; gap: 16px; }
    .site-logo svg { height: 38px; }
    .site-logo--footer svg { height: 54px; }
    .nav-cta { padding: 10px 14px; font-size: 11px; }
    .utility-bar { font-size: 10px; padding: 6px 0; }
    .utility-bar .container { gap: 12px; flex-direction: column; }
    .section-pad, .histoire, .featured, .config-promo, .pourquoi, .acheter, .livraison, .testimonials, .faq, .catalogue, .cta-final {
      padding: 72px 0;
    }
    .gammes-grid, .products-grid, .pourquoi-grid, .testimonials-grid, .steps {
      grid-template-columns: 1fr;
    }
    .gamme-card { min-height: auto; }
    .featured-header { flex-direction: column; align-items: flex-start; }
    .featured-filters { width: 100%; overflow-x: auto; }
    .footer-top { grid-template-columns: 1fr; gap: 36px; }
    .hero-machine { display: none; }

    /* ── Hero accueil : centrage + mise en page mobile ── */
    .hero-content .container { text-align: center; }
    .hero-eyebrow {
      justify-content: center;
      white-space: nowrap;
      font-size: 9.5px;
      letter-spacing: 0.05em;
      gap: 8px;
    }
    .hero-eyebrow::before { width: 16px; }
    .hero-title { margin-left: auto; margin-right: auto; }
    .hero-sub { margin-left: auto; margin-right: auto; }
    .hero-actions { justify-content: center; }

    /* Pastille stock centrée + 4 stats en 2 colonnes de 2, centrées */
    .hero-meta .container {
      grid-template-columns: 1fr 1fr;
      gap: 20px 16px;
    }
    .meta-status {
      grid-column: 1 / -1;
      justify-content: center;
    }
    .meta-stat {
      border-left: none;
      padding-left: 0;
      text-align: center;
    }
    .acheter-trust { gap: 24px; flex-direction: column; }
    .steps::before { display: none; }
    .reviews-meta { flex-direction: column; gap: 14px; }
    .histoire-body { font-size: 20px; }
    .histoire-body p:first-child::first-letter { font-size: 64px; }
    .pq-title { font-size: 20px; }
    .pourquoi-item { padding: 32px 24px; }
    .cta-contact { gap: 24px; flex-direction: column; align-items: center; }
    .cta-contact-item { text-align: center; }
  }

  /* ═══════════════ AJUSTEMENTS MOBILE — Page d'accueil ═══════════════ */
  @media (max-width: 720px) {
    /* Réduire l'espace au-dessus du titre orange (eyebrow) de chaque bloc */
    .featured     { padding-top: 44px; }
    .config-promo { padding-top: 44px; }
    .pourquoi     { padding-top: 44px; }
    .livraison    { padding-top: 44px; }
    .localisation { padding-top: 44px; }
    .faq          { padding-top: 28px; }
    /* .bestseller / .histoire-v2 / .catalogue-v2 + mini-pelle : override placé en fin de
       fichier (leurs styles d'origine sont définis plus bas → l'override doit venir après). */

    /* Footer centré */
    footer { text-align: center; }
    .footer-brand { display: flex; flex-direction: column; align-items: center; }
    .footer-tagline { max-width: none; }
    .footer-social { justify-content: center; }
    .footer-col ul { align-items: center; }
    .footer-bottom { flex-direction: column; justify-content: center; text-align: center; }
    .footer-legal { justify-content: center; }
  }

  /* Selection */
  ::selection {
    background: var(--orange);
    color: var(--cream-pure);
  }

/* ═══════════════════════════════════════════════════════════════

/* ═══════════════════════════════════════════════════════
   INNER PAGES — Complete design system for all pages
   except homepage. Follows same CZN visual language:
   navy/cream palette, Bricolage Grotesque display type,
   orange accents, editorial rhythm.
   ═══════════════════════════════════════════════════════ */

/* ── Fix: reveal works with both .visible and .in-view ── */
.reveal.visible,
.reveal.in-view { opacity: 1; transform: translateY(0); }
.reveal-stagger.visible > *,
.reveal-stagger.in-view > * { opacity: 1; transform: translateY(0); }

/* ── Breadcrumb ── */
.breadcrumb {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--f-mono);
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(244,239,228,0.5);
  margin-bottom: 48px;
}
.breadcrumb a { color: rgba(244,239,228,0.5); text-decoration: none; transition: color 0.2s; }
.breadcrumb a:hover { color: var(--orange); }
.breadcrumb .bc-sep { opacity: 0.35; }
.breadcrumb [aria-current="page"] { color: rgba(244,239,228,0.85); }

/* ── PAGE HERO — dark navy, full bleed, like home hero but shorter ── */
.page-hero {
  background: var(--oak);
  color: var(--cream);
  padding: 64px 0 96px;
  position: relative;
  overflow: hidden;
}
/* Subtle orange radial glow, same as home hero */
.page-hero::after {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 60% 80% at 80% 50%, rgba(242,129,28,0.07) 0%, transparent 70%);
  pointer-events: none;
}
.page-hero .container { position: relative; z-index: 1; }
.page-hero .eyebrow { color: var(--orange); }

.page-title {
  font-family: var(--f-display);
  font-weight: 500;
  font-size: clamp(42px, 6vw, 80px);
  line-height: 1.0;
  letter-spacing: -0.03em;
  color: var(--cream-pure);
  margin: 16px 0 28px;
  max-width: 900px;
}
.page-title em { font-style: normal; color: var(--orange); }
.page-lede {
  font-family: var(--f-body);
  font-size: clamp(16px, 1.6vw, 18px);
  line-height: 1.65;
  color: rgba(244,239,228,0.72);
  max-width: 640px;
}

/* Hero stats row (used on entreprise) */
.hero-stats {
  display: flex;
  gap: 0;
  margin-top: 64px;
  border-top: 1px solid rgba(244,239,228,0.1);
  padding-top: 40px;
}
.hero-stat {
  flex: 1;
  padding-right: 40px;
}
.hero-stat + .hero-stat {
  padding-left: 40px;
  border-left: 1px solid rgba(244,239,228,0.1);
}
.hero-stat-num {
  font-family: var(--f-display);
  font-size: clamp(36px, 4vw, 52px);
  font-weight: 500;
  letter-spacing: -0.03em;
  color: var(--cream-pure);
  line-height: 1;
}
.hero-stat-num em { font-style: normal; color: var(--orange); }
.hero-stat-label {
  font-family: var(--f-mono);
  font-size: 10px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(244,239,228,0.45);
  margin-top: 8px;
}
@media (max-width: 720px) {
  .hero-stats { flex-wrap: wrap; gap: 32px; }
  .hero-stat { flex: 0 0 calc(50% - 16px); padding: 0; border: none !important; }
}

/* ── Section rhythm: cream + paper alternation ── */
.sec-cream   { background: var(--cream-pure); padding: 96px 0; }
.sec-paper   { background: var(--paper); padding: 96px 0; }
.sec-navy    { background: var(--oak); padding: 96px 0; color: var(--cream); }
.sec-ink     { background: var(--ink); padding: 96px 0; color: var(--cream); }

/* Section header inside pages — narrower than home */
.inner-header {
  margin-bottom: 56px;
  max-width: 680px;
}
.inner-header .section-title { font-size: clamp(32px, 4.5vw, 54px); }
.inner-header.centered { text-align: center; max-width: 720px; margin-inline: auto; }

/* ── CTA BLOCK — for inner pages (separate from home .cta-final) ── */
.inner-cta {
  background: var(--oak);
  padding: 96px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.inner-cta::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at center, rgba(242,129,28,0.12) 0%, transparent 65%);
}
.inner-cta .container { position: relative; z-index: 1; }
.inner-cta-inner { max-width: 640px; margin: 0 auto; }
.inner-cta h2 {
  font-family: var(--f-display);
  font-size: clamp(34px, 4.5vw, 54px);
  font-weight: 500;
  letter-spacing: -0.025em;
  line-height: 1.1;
  color: var(--cream-pure);
  margin-bottom: 20px;
}
.inner-cta h2 em { font-style: normal; color: var(--orange); }
.inner-cta p {
  font-family: var(--f-body);
  font-size: 17px;
  line-height: 1.6;
  color: rgba(244,239,228,0.72);
  margin-bottom: 40px;
}
.cta-btns {
  display: inline-flex;
  gap: 16px;
  flex-wrap: wrap;
  justify-content: center;
}
.btn-orange {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 15px 28px;
  background: var(--orange); color: #fff;
  font-family: var(--f-display); font-size: 15px; font-weight: 500;
  letter-spacing: -0.01em; border-radius: 3px; text-decoration: none;
  transition: background 0.2s, transform 0.2s;
}
.btn-orange:hover { background: var(--orange-deep); transform: translateY(-1px); }
.btn-ghost {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 15px 28px;
  background: transparent; color: var(--cream);
  font-family: var(--f-display); font-size: 15px; font-weight: 500;
  letter-spacing: -0.01em; border-radius: 3px; text-decoration: none;
  border: 1px solid rgba(244,239,228,0.28);
  transition: border-color 0.2s, background 0.2s;
}
.btn-ghost:hover { border-color: var(--cream); background: rgba(244,239,228,0.05); }

/* ── PILLAR GRID (6 reasons, values, etc.) ── */
.pillar-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: rgba(33,42,53,0.1);
  border: 1px solid rgba(33,42,53,0.1);
  border-radius: 2px;
  overflow: hidden;
}
.pillar-card {
  background: var(--cream-pure);
  padding: 36px 32px;
  transition: background 0.2s;
}
.pillar-card:hover { background: #fff; }
.pillar-num {
  font-family: var(--f-mono);
  font-size: 11px;
  letter-spacing: 0.16em;
  color: var(--orange);
  margin-bottom: 20px;
}
.pillar-title {
  font-family: var(--f-display);
  font-size: 22px;
  font-weight: 500;
  letter-spacing: -0.015em;
  color: var(--ink);
  margin-bottom: 14px;
  line-height: 1.2;
}
.pillar-title em { font-style: normal; color: var(--orange); }
.pillar-body {
  font-family: var(--f-body);
  font-size: 14px;
  line-height: 1.65;
  color: var(--muted);
}
@media (max-width: 960px) { .pillar-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 600px) { .pillar-grid { grid-template-columns: 1fr; } }

/* ── CROSS-NAV (fin des pages catégories : continuer la visite) ── */
.cross-nav-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}
.cross-nav-card {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 26px 28px;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 4px;
  font-family: var(--f-display);
  font-size: 19px;
  font-weight: 500;
  color: var(--ink);
  text-decoration: none;
  box-shadow: var(--shadow-sm);
  transition: transform 0.25s var(--ease-quart), border-color 0.25s var(--ease-quart), box-shadow 0.25s var(--ease-quart);
}
.cross-nav-card:hover {
  border-color: var(--orange);
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
}
.cross-nav-card .cn-arrow {
  color: var(--orange);
  font-size: 22px;
  line-height: 1;
  transition: transform 0.25s var(--ease-quart);
}
.cross-nav-card:hover .cn-arrow { transform: translateX(4px); }
@media (max-width: 720px) { .cross-nav-grid { grid-template-columns: 1fr; } }

/* ── EDITORIAL STORY (À propos) ── */
.story-grid {
  display: grid;
  grid-template-columns: 1fr 1.6fr;
  gap: 80px;
  align-items: start;
}
.story-aside {
  position: sticky;
  top: 110px;
}
.story-stat-list {
  margin-top: 40px;
  display: flex;
  flex-direction: column;
  gap: 0;
  border-top: 1px solid var(--border);
}
.story-stat {
  padding: 24px 0;
  border-bottom: 1px solid var(--border);
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.story-stat-num {
  font-family: var(--f-display);
  font-size: 48px;
  font-weight: 500;
  letter-spacing: -0.03em;
  color: var(--ink);
  line-height: 1;
}
.story-stat-num em { font-style: normal; color: var(--orange); }
.story-stat-label {
  font-family: var(--f-mono);
  font-size: 10px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--muted);
}
.story-body p {
  font-family: var(--f-body);
  font-size: 17px;
  line-height: 1.75;
  color: var(--ink);
  margin-bottom: 28px;
}
.story-body p:first-child::first-letter {
  font-family: var(--f-editorial);
  font-size: 4.2em;
  float: left;
  line-height: 0.82;
  margin: 0.06em 0.12em 0 0;
  color: var(--orange);
  font-weight: 500;
}
.story-body em { font-family: var(--f-editorial); font-style: italic; color: var(--orange); }
.story-quote {
  margin-top: 48px;
  padding: 36px 0 0;
  border-top: 1px solid var(--border);
  font-family: var(--f-editorial);
  font-style: italic;
  font-size: 26px;
  line-height: 1.35;
  color: var(--ink);
  font-weight: 500;
}
.story-quote cite {
  display: block;
  margin-top: 16px;
  font-family: var(--f-mono);
  font-size: 10px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--muted);
  font-style: normal;
}
@media (max-width: 900px) {
  .story-grid { grid-template-columns: 1fr; gap: 48px; }
  .story-aside { position: static; }
}

/* ── COMPANY INFO GRID ── */
.company-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: var(--border);
  border: 1px solid var(--border);
  border-radius: 2px;
  overflow: hidden;
}
.company-cell {
  background: var(--paper);
  padding: 28px 24px;
}
.company-label {
  font-family: var(--f-mono);
  font-size: 10px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 10px;
}
.company-value {
  font-family: var(--f-display);
  font-size: 16px;
  font-weight: 500;
  color: var(--ink);
  line-height: 1.45;
}
.company-value a { color: inherit; text-decoration: none; }
.company-value a:hover { color: var(--orange); }
@media (max-width: 960px) { .company-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 540px) { .company-grid { grid-template-columns: 1fr; } }

/* ── FINANCEMENT ── */
.fin-steps {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 0;
  position: relative;
}
.fin-step {
  padding: 0 24px 0 0;
  position: relative;
}
.fin-step + .fin-step { padding-left: 24px; border-left: 1px solid var(--border); }
.fin-step-num {
  width: 36px; height: 36px;
  background: var(--orange);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-family: var(--f-mono);
  font-size: 12px;
  font-weight: 500;
  color: #fff;
  margin-bottom: 20px;
}
.fin-step-title {
  font-family: var(--f-display);
  font-size: 17px;
  font-weight: 500;
  color: var(--ink);
  margin-bottom: 10px;
  line-height: 1.25;
}
.fin-step-body {
  font-family: var(--f-body);
  font-size: 14px;
  line-height: 1.6;
  color: var(--muted);
}
@media (max-width: 960px) {
  .fin-steps { grid-template-columns: 1fr 1fr; gap: 32px; }
  .fin-step { padding: 0; border: none !important; }
}
@media (max-width: 540px) { .fin-steps { grid-template-columns: 1fr; } }

.fin-conditions {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 48px;
}
.fin-condition {
  padding: 32px;
  background: var(--cream-pure);
  border: 1px solid var(--border);
  border-radius: 2px;
}
.fin-condition-label {
  font-family: var(--f-mono);
  font-size: 10px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--orange);
  margin-bottom: 12px;
}
.fin-condition-value {
  font-family: var(--f-display);
  font-size: clamp(22px, 2.5vw, 30px);
  font-weight: 500;
  letter-spacing: -0.02em;
  color: var(--ink);
  margin-bottom: 12px;
  line-height: 1;
}
.fin-condition-desc {
  font-family: var(--f-body);
  font-size: 14px;
  line-height: 1.5;
  color: var(--muted);
}
@media (max-width: 720px) { .fin-conditions { grid-template-columns: 1fr; } }

.fin-audience-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}
.fin-audience-card {
  background: var(--cream-pure);
  border: 1px solid var(--border);
  border-radius: 2px;
  padding: 40px;
  transition: border-color 0.2s, box-shadow 0.2s;
}
.fin-audience-card:hover {
  border-color: rgba(242,129,28,0.4);
  box-shadow: 0 8px 32px rgba(33,42,53,0.06);
}
.fin-audience-pill {
  display: inline-block;
  padding: 4px 12px;
  background: var(--orange);
  color: #fff;
  font-family: var(--f-mono);
  font-size: 10px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  border-radius: 100px;
  margin-bottom: 24px;
}
.fin-audience-title {
  font-family: var(--f-display);
  font-size: 28px;
  font-weight: 500;
  letter-spacing: -0.02em;
  color: var(--ink);
  margin-bottom: 16px;
}
.fin-audience-body {
  font-family: var(--f-body);
  font-size: 15px;
  line-height: 1.65;
  color: var(--muted);
  margin-bottom: 24px;
}
.fin-feats {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 32px;
}
.fin-feats li {
  font-family: var(--f-body);
  font-size: 14px;
  color: var(--ink);
  padding-left: 20px;
  position: relative;
}
.fin-feats li::before {
  content: '↗';
  position: absolute;
  left: 0;
  color: var(--orange);
  font-size: 12px;
}
.fin-audience-link {
  font-family: var(--f-mono);
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--orange);
  text-decoration: none;
}
@media (max-width: 720px) { .fin-audience-grid { grid-template-columns: 1fr; } }

.fin-legal {
  max-width: 820px;
  margin: 0 auto;
}
.fin-legal-title {
  font-family: var(--f-display);
  font-size: 18px;
  font-weight: 600;
  color: var(--cream);
  margin-bottom: 24px;
}
.fin-legal p {
  font-family: var(--f-body);
  font-size: 12.5px;
  line-height: 1.65;
  color: rgba(244,239,228,0.5);
  margin-bottom: 14px;
}
.fin-legal strong { color: rgba(244,239,228,0.85); }
.fin-legal a { color: var(--orange); }

/* ── GUIDES HUB ── */
.guides-hub-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--border);
  border: 1px solid var(--border);
  border-radius: 2px;
  overflow: hidden;
}
.guide-item {
  background: var(--cream-pure);
  padding: 32px 28px;
  display: flex;
  flex-direction: column;
  text-decoration: none;
  color: inherit;
  transition: background 0.2s;
}
.guide-item:hover { background: #fff; }
.guide-item:hover .guide-item-link { color: var(--orange); }
.guide-item-head {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  margin-bottom: 20px;
}
.guide-item-num {
  font-family: var(--f-mono);
  font-size: 10px;
  letter-spacing: 0.14em;
  color: var(--orange);
}
.guide-item-cat {
  font-family: var(--f-mono);
  font-size: 9px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--muted);
  padding: 3px 10px;
  background: var(--paper);
  border-radius: 100px;
}
.guide-item-title {
  font-family: var(--f-display);
  font-size: 19px;
  font-weight: 500;
  letter-spacing: -0.015em;
  color: var(--ink);
  line-height: 1.2;
  margin-bottom: 12px;
}
.guide-item-desc {
  font-family: var(--f-body);
  font-size: 13.5px;
  line-height: 1.55;
  color: var(--muted);
  flex-grow: 1;
  margin-bottom: 24px;
}
.guide-item-link {
  font-family: var(--f-mono);
  font-size: 10px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(33,42,53,0.4);
  transition: color 0.2s;
}
@media (max-width: 900px) { .guides-hub-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 600px) { .guides-hub-grid { grid-template-columns: 1fr; } }

/* ── CONTACT PAGE ── */
.contact-layout {
  display: grid;
  grid-template-columns: 1.6fr 1fr;
  gap: 64px;
  align-items: start;
}
.contact-form-head { margin-bottom: 36px; }
.contact-form-title {
  font-family: var(--f-display);
  font-size: 28px;
  font-weight: 500;
  letter-spacing: -0.02em;
  color: var(--ink);
  margin-bottom: 10px;
}
.contact-form-intro {
  font-family: var(--f-body);
  font-size: 15px;
  line-height: 1.6;
  color: var(--muted);
}
.czn-form {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.czn-form .form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.czn-form .form-field { display: flex; flex-direction: column; gap: 8px; }
.czn-form label {
  font-family: var(--f-mono);
  font-size: 10px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--ink);
}
.czn-form input,
.czn-form select,
.czn-form textarea {
  padding: 14px 16px;
  font-family: var(--f-body);
  font-size: 15px;
  background: var(--paper);
  border: 1px solid rgba(33,42,53,0.15);
  border-radius: 3px;
  color: var(--ink);
  transition: border-color 0.2s;
  width: 100%;
  -webkit-appearance: none;
}
.czn-form input:focus,
.czn-form select:focus,
.czn-form textarea:focus { outline: none; border-color: var(--orange); }
.czn-form textarea { resize: vertical; font-family: var(--f-body); min-height: 140px; }
.consent-row { flex-direction: row !important; }
.consent-label {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-family: var(--f-body);
  font-size: 13px;
  color: var(--muted);
  line-height: 1.5;
  cursor: pointer;
}
.consent-label input[type="checkbox"] {
  width: 16px; height: 16px;
  flex-shrink: 0;
  margin-top: 2px;
  accent-color: var(--orange);
}
.consent-label a { color: var(--orange); }
.form-submit-btn {
  align-self: flex-start;
  padding: 15px 32px;
  background: var(--orange);
  color: #fff;
  font-family: var(--f-display);
  font-size: 15px;
  font-weight: 500;
  border: none;
  border-radius: 3px;
  cursor: pointer;
  transition: background 0.2s, transform 0.2s;
}
.form-submit-btn:hover { background: var(--orange-deep); transform: translateY(-1px); }
.form-note-text {
  font-family: var(--f-mono);
  font-size: 10px;
  letter-spacing: 0.1em;
  color: var(--muted);
  margin-top: 8px;
}
/* Info cards */
.contact-info-stack {
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.contact-info-item {
  padding: 24px 28px;
  background: var(--paper);
  border: 1px solid var(--border);
  border-radius: 2px;
}
.contact-info-item + .contact-info-item { margin-top: -1px; }
.contact-item-eyebrow {
  font-family: var(--f-mono);
  font-size: 10px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--orange);
  margin-bottom: 8px;
}
.contact-item-val {
  font-family: var(--f-display);
  font-size: 18px;
  font-weight: 500;
  color: var(--ink);
  text-decoration: none;
  display: block;
  line-height: 1.3;
  margin-bottom: 6px;
}
a.contact-item-val:hover { color: var(--orange); }
.contact-item-sub {
  font-family: var(--f-body);
  font-size: 13px;
  color: var(--muted);
  line-height: 1.4;
}
.contact-item-link {
  display: inline-block;
  margin-top: 10px;
  font-family: var(--f-mono);
  font-size: 10px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--orange);
  text-decoration: none;
}
.contact-socials-list {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 20px;
  margin-top: 10px;
}
.contact-socials-list a {
  font-family: var(--f-body);
  font-size: 14px;
  color: var(--ink);
  text-decoration: none;
  transition: color 0.2s;
}
.contact-socials-list a:hover { color: var(--orange); }
@media (max-width: 900px) {
  .contact-layout { grid-template-columns: 1fr; gap: 48px; }
  .czn-form .form-row { grid-template-columns: 1fr; }
}

/* ── CATEGORY / PLACEHOLDER pages ── */
.cat-intro-text {
  font-family: var(--f-body);
  font-size: 18px;
  line-height: 1.75;
  color: var(--ink);
  max-width: 820px;
  opacity: 0.85;
}
.coming-block {
  text-align: center;
  padding: 64px 40px;
  border: 1px dashed rgba(242,129,28,0.4);
  border-radius: 4px;
  background: rgba(242,129,28,0.03);
  max-width: 680px;
  margin: 0 auto 72px;
}
.coming-block-eyebrow {
  font-family: var(--f-mono);
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--orange);
  margin-bottom: 16px;
}
.coming-block-title {
  font-family: var(--f-display);
  font-size: clamp(26px, 3.5vw, 38px);
  font-weight: 500;
  letter-spacing: -0.02em;
  color: var(--ink);
  margin-bottom: 16px;
  line-height: 1.1;
}
.coming-block-title em { font-style: normal; color: var(--orange); }
.coming-block-body {
  font-family: var(--f-body);
  font-size: 16px;
  line-height: 1.65;
  color: var(--muted);
  margin-bottom: 32px;
}
.coming-block-btns {
  display: inline-flex;
  gap: 12px;
  flex-wrap: wrap;
  justify-content: center;
}
.coming-block-btns .btn-orange { padding: 13px 24px; font-size: 14px; }
.coming-block-btns .btn-ghost-ink {
  display: inline-flex;
  padding: 13px 24px;
  background: transparent;
  color: var(--ink);
  font-family: var(--f-display);
  font-size: 14px;
  font-weight: 500;
  border: 1px solid rgba(33,42,53,0.2);
  border-radius: 3px;
  text-decoration: none;
  transition: border-color 0.2s;
}
.coming-block-btns .btn-ghost-ink:hover { border-color: var(--ink); }
.product-ph-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.product-ph-card {
  background: var(--cream-pure);
  border: 1px solid var(--border);
  border-radius: 3px;
  overflow: hidden;
}
.product-ph-img {
  aspect-ratio: 4/3;
  background: var(--paper);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--border);
}
.product-ph-body { padding: 20px; display: flex; flex-direction: column; gap: 8px; }
.ph-line {
  height: 11px;
  border-radius: 2px;
  background: linear-gradient(90deg, var(--paper) 25%, rgba(33,42,53,0.05) 50%, var(--paper) 75%);
  background-size: 400% 100%;
  animation: ph-shimmer 2s linear infinite;
}
.ph-line-lg { height: 16px; width: 70%; }
.ph-line-md { width: 90%; }
.ph-line-sm { width: 50%; }
@keyframes ph-shimmer {
  0% { background-position: 100% 0; }
  100% { background-position: -100% 0; }
}
@media (max-width: 900px) { .product-ph-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 560px) { .product-ph-grid { grid-template-columns: 1fr; } }

/* ── Split hero (mini-pelles with photo) ── */
.page-hero--split { padding-bottom: 0; }
.hero-split-grid {
  display: grid;
  grid-template-columns: 1.32fr 0.68fr;
  gap: 48px;
  align-items: center;
}
.hero-split-content { padding: 48px 0 64px; }
.hero-split-content .breadcrumb { color: rgba(244,239,228,0.5); }
.hero-split-content .breadcrumb a { color: rgba(244,239,228,0.5); text-decoration: none; }
.hero-split-img {
  align-self: stretch;
  display: flex;
  align-items: center;
  overflow: hidden;
  padding: 40px 0;
}
.hero-split-img img {
  display: block;
  width: 100%;
  height: 100%;
  max-height: 430px;
  border-radius: 4px;
  object-fit: cover;
  object-position: center center;
}
.hero-stats--compact {
  display: flex;
  gap: 0;
  margin-top: 36px;
  padding-top: 28px;
}
.hero-stats--compact .hero-stat {
  flex: 1;
  min-width: 0;
  padding-right: 18px;
}
.hero-stats--compact .hero-stat + .hero-stat {
  padding-left: 18px;
}
.hero-stats--compact .hero-stat-num {
  font-size: clamp(20px, 1.9vw, 28px);
  white-space: nowrap;       /* keep "1 500+" on one line */
}
.hero-stats--compact .hero-stat-label {
  font-size: 8.5px;
  letter-spacing: 0.1em;
  margin-top: 7px;
}
/* Single row holds at tablet too; only stack on phones */
@media (max-width: 600px) {
  .hero-stats--compact { flex-wrap: wrap; gap: 24px 0; }
  .hero-stats--compact .hero-stat { flex: 0 0 50%; padding: 0 12px !important; border: none !important; }
  .hero-stats--compact .hero-stat-num { font-size: 26px; }
}
@media (max-width: 900px) {
  .hero-split-grid { grid-template-columns: 1fr; }
  .hero-split-img { display: none; }
  .hero-split-content { padding-bottom: 80px; }
}

/* ── Brand cards (entreprise) ── */
.brands-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}
.brand-card {
  background: var(--cream-pure);
  border: 1px solid var(--border);
  border-radius: 4px;
  overflow: hidden;
  transition: border-color 0.2s, box-shadow 0.2s;
}
.brand-card:hover {
  border-color: rgba(242,129,28,0.35);
  box-shadow: 0 8px 32px rgba(33,42,53,0.06);
}
.brand-logo-wrap {
  padding: 0;
  height: 180px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #fff;
  border-bottom: 1px solid var(--border);
}
.brand-logo-img {
  width: auto;
  max-width: 65%;
  max-height: 70px;
  height: auto;
  display: block;
  object-fit: contain;
}
.brand-card-body { padding: 28px 32px 32px; }
.brand-card-title {
  font-family: var(--f-display);
  font-size: 24px;
  font-weight: 600;
  color: var(--ink);
  margin-bottom: 12px;
}
.brand-card-desc {
  font-family: var(--f-body);
  font-size: 15px;
  line-height: 1.65;
  color: var(--muted);
  margin-bottom: 20px;
}
.brand-card-specs {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  margin-bottom: 20px;
}
.brand-card-specs span {
  font-family: var(--f-mono);
  font-size: 10px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 4px 10px;
  background: var(--paper);
  border-radius: 100px;
  color: var(--ink);
}
@media (max-width: 720px) { .brands-grid { grid-template-columns: 1fr; } }

/* ── Orgchart ── */
.orgchart-wrap {
  max-width: 740px;
  margin: 0 auto;
  padding: 24px;
  background: var(--cream-pure);
  border: 1px solid var(--border);
  border-radius: 4px;
}
.orgchart-wrap svg { width: 100%; height: auto; }

/* ── Partners strip ── */
.partners-strip {
  background: var(--paper);
  padding: 64px 0;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.partners-header {
  text-align: center;
  margin-bottom: 48px;
}
.partners-header .eyebrow {
  justify-content: center;
  display: inline-flex;
}
.partners-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  align-items: center;
  max-width: 960px;
  margin: 0 auto;
}
.partner-item {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px 20px;
  background: var(--cream-pure);
  border: 1px solid var(--border);
  border-radius: 4px;
  transition: border-color 0.2s, box-shadow 0.2s;
  text-decoration: none;
}
.partner-item:hover {
  border-color: rgba(242,129,28,0.3);
  box-shadow: 0 4px 16px rgba(33,42,53,0.06);
}
.partner-item svg { width: 100%; max-width: 130px; height: auto; }
@media (max-width: 720px) {
  .partners-grid { grid-template-columns: 1fr 1fr; }
}

/* ── Photo gallery (entreprise) ── */
.photo-gallery {
  display: grid;
  grid-template-columns: 1.6fr 1fr;
  gap: 12px;
  border-radius: 4px;
  overflow: hidden;
}
.gallery-main img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 4px 0 0 4px;
}
.gallery-side {
  display: grid;
  grid-template-rows: repeat(3, 1fr);
  gap: 12px;
}
.gallery-side img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 0 4px 4px 0;
}
.gallery-side img:first-child { border-radius: 0 4px 0 0; }
.gallery-side img:last-child  { border-radius: 0 0 4px 0; }
@media (max-width: 720px) {
  .photo-gallery { grid-template-columns: 1fr; }
  .gallery-main img { border-radius: 4px; max-height: 260px; }
  .gallery-side { grid-template-rows: auto; grid-template-columns: repeat(3,1fr); }
  .gallery-side img { height: 100px; border-radius: 4px !important; }
}


/* org-chart wrapper override for dark bg section */
.sec-ink .orgchart-wrap {
  background: transparent;
  border-color: rgba(255,255,255,0.08);
}

/* ── Inline story photo (entreprise) ── */
.story-inline-photo {
  margin: 8px 0 28px;
  border-radius: 4px;
  overflow: hidden;
  max-width: 78%;
}
.story-inline-photo img {
  display: block;
  width: 100%;
  height: auto;
  border-radius: 4px;
}
.story-inline-photo figcaption {
  font-family: var(--f-mono);
  font-size: 11px;
  letter-spacing: 0.04em;
  color: var(--muted);
  margin-top: 10px;
  line-height: 1.5;
}

/* ── Wide organigram (entreprise) — light, square blocks ── */
.orgchart-wide {
  width: 100%;
  margin: 0 auto;
  overflow-x: auto;
}
.orgchart-wide svg {
  width: 100%;
  min-width: 760px;
  height: auto;
  display: block;
}

/* ═══════════════════════════════════════════════════════
   GUIDE ARTICLE — long-form editorial layout
   ═══════════════════════════════════════════════════════ */
.article-hero {
  background: var(--oak);
  color: var(--cream);
  padding: 56px 0 64px;
  position: relative;
  overflow: hidden;
}
.article-hero::after {
  content: '';
  position: absolute; inset: 0;
  background: radial-gradient(ellipse 50% 70% at 85% 40%, rgba(242,129,28,0.06) 0%, transparent 70%);
  pointer-events: none;
}
.article-hero .container { position: relative; z-index: 1; max-width: 860px; }
.article-cat {
  font-family: var(--f-mono);
  font-size: 10px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--orange);
  margin-bottom: 18px;
  display: inline-block;
}
.article-title {
  font-family: var(--f-display);
  font-weight: 500;
  font-size: clamp(34px, 5vw, 60px);
  line-height: 1.05;
  letter-spacing: -0.03em;
  color: var(--cream-pure);
  margin-bottom: 24px;
}
.article-lede {
  font-family: var(--f-body);
  font-size: clamp(16px, 1.7vw, 19px);
  line-height: 1.6;
  color: rgba(244,239,228,0.75);
  max-width: 680px;
}
.article-meta {
  display: flex;
  gap: 24px;
  margin-top: 32px;
  padding-top: 24px;
  border-top: 1px solid rgba(244,239,228,0.12);
  font-family: var(--f-mono);
  font-size: 11px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(244,239,228,0.5);
}
.article-meta span { display: inline-flex; align-items: center; gap: 8px; }

/* Article body layout: content + sticky TOC */
.article-layout {
  display: grid;
  grid-template-columns: 1fr 260px;
  gap: 64px;
  align-items: start;
  max-width: 1100px;
  margin: 0 auto;
}
.article-body { min-width: 0; }
.article-toc {
  position: sticky;
  top: 96px;
  max-height: calc(100vh - 120px);
  overflow-y: auto;
  font-family: var(--f-body);
  scrollbar-width: thin;
}
.article-toc-title {
  font-family: var(--f-mono);
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 18px;
  padding-bottom: 12px;
  border-bottom: 1px solid var(--border);
}
.article-toc ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0;
  border-left: 2px solid var(--border);
}
.article-toc a {
  font-size: 14.5px;
  line-height: 1.45;
  color: var(--muted);
  text-decoration: none;
  transition: color 0.2s ease, border-color 0.2s ease, font-weight 0.2s ease;
  display: block;
  padding: 10px 0 10px 18px;
  margin-left: -2px;
  border-left: 2px solid transparent;
}
.article-toc a:hover { color: var(--ink); }
.article-toc a.active {
  color: var(--orange);
  border-left-color: var(--orange);
  font-weight: 600;
}
@media (max-width: 920px) {
  .article-layout { grid-template-columns: 1fr; gap: 0; }
  .article-toc { display: none; }
}

/* Article typography */
.article-body h2 {
  font-family: var(--f-display);
  font-size: clamp(26px, 3vw, 34px);
  font-weight: 500;
  letter-spacing: -0.02em;
  color: var(--ink);
  margin: 56px 0 20px;
  line-height: 1.15;
  scroll-margin-top: 100px;
}
.article-body h2:first-child { margin-top: 0; }
.article-body h3 {
  font-family: var(--f-display);
  font-size: 20px;
  font-weight: 600;
  color: var(--ink);
  margin: 36px 0 14px;
  line-height: 1.25;
}
.article-body p {
  font-family: var(--f-body);
  font-size: 16px;
  line-height: 1.75;
  color: #2c3742;
  margin-bottom: 20px;
}
.article-body p strong { color: var(--ink); font-weight: 600; }
.article-body a { color: var(--orange-deep); text-decoration: underline; text-underline-offset: 2px; }
.article-body a:hover { color: var(--orange); }
.article-body ul, .article-body ol {
  margin: 0 0 24px;
  padding-left: 0;
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.article-body ul li {
  font-family: var(--f-body);
  font-size: 16px;
  line-height: 1.65;
  color: #2c3742;
  padding-left: 28px;
  position: relative;
}
.article-body ul li::before {
  content: '';
  position: absolute;
  left: 4px; top: 11px;
  width: 6px; height: 6px;
  background: var(--orange);
  border-radius: 50%;
}
.article-body ol { counter-reset: olcount; }
.article-body ol li {
  font-family: var(--f-body);
  font-size: 16px;
  line-height: 1.65;
  color: #2c3742;
  padding-left: 38px;
  position: relative;
  counter-increment: olcount;
}
.article-body ol li::before {
  content: counter(olcount);
  position: absolute;
  left: 0; top: 0;
  width: 24px; height: 24px;
  background: var(--ink);
  color: var(--cream-pure);
  border-radius: 50%;
  font-family: var(--f-mono);
  font-size: 11px;
  font-weight: 500;
  display: flex;
  align-items: center;
  justify-content: center;
}
.article-body li strong { color: var(--ink); font-weight: 600; }

/* Tables */
.article-body .table-wrap { overflow-x: auto; margin: 28px 0; }
.article-body table {
  width: 100%;
  border-collapse: collapse;
  font-family: var(--f-body);
  font-size: 14px;
  min-width: 480px;
}
.article-body thead th {
  background: var(--ink);
  color: var(--cream-pure);
  font-family: var(--f-display);
  font-weight: 500;
  font-size: 13px;
  text-align: left;
  padding: 14px 16px;
}
.article-body tbody td {
  padding: 13px 16px;
  border-bottom: 1px solid var(--border);
  color: #2c3742;
}
.article-body tbody tr:nth-child(even) { background: var(--paper); }
.article-body tbody tr:hover { background: rgba(242,129,28,0.04); }

/* Callout / note box */
.article-callout {
  background: var(--paper);
  border-left: 3px solid var(--orange);
  padding: 24px 28px;
  margin: 32px 0;
  border-radius: 0 4px 4px 0;
}
.article-callout p { margin: 0; font-size: 15px; }
.article-callout strong { color: var(--orange-deep); }

/* Inline CTA box */
.article-inline-cta {
  background: var(--oak);
  border-radius: 6px;
  padding: 32px 36px;
  margin: 40px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
}
.article-inline-cta-text { flex: 1; min-width: 240px; }
.article-inline-cta h4 {
  font-family: var(--f-display);
  font-size: 20px;
  font-weight: 500;
  color: var(--cream-pure);
  margin-bottom: 6px;
}
.article-inline-cta p { font-family: var(--f-body); font-size: 14px; color: rgba(244,239,228,0.7); margin: 0; }
.article-inline-cta a {
  flex-shrink: 0;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 26px;
  background: var(--orange);
  color: #fff;
  font-family: var(--f-display);
  font-size: 14px;
  font-weight: 500;
  border-radius: 3px;
  text-decoration: none;
  transition: background 0.2s;
}
.article-inline-cta a:hover { background: var(--orange-deep); }

/* Related guides */
.related-guides {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
@media (max-width: 760px) { .related-guides { grid-template-columns: 1fr; } }
.related-card {
  background: var(--cream-pure);
  border: 1px solid var(--border);
  border-radius: 4px;
  padding: 24px;
  text-decoration: none;
  transition: border-color 0.2s, transform 0.2s;
  display: block;
}
.related-card:hover { border-color: var(--orange); transform: translateY(-2px); }
.related-card-cat {
  font-family: var(--f-mono);
  font-size: 9px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--orange);
}
.related-card-title {
  font-family: var(--f-display);
  font-size: 17px;
  font-weight: 500;
  color: var(--ink);
  margin: 10px 0 8px;
  line-height: 1.25;
}
.related-card-desc { font-family: var(--f-body); font-size: 13px; line-height: 1.5; color: var(--muted); }

/* ── Instagram feed preview (entreprise) ── */
.ig-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 22px 24px;
  margin-bottom: 16px;
  background: var(--cream-pure);
  border: 1px solid var(--border);
  border-radius: 6px;
  flex-wrap: wrap;
}
.ig-head-left { display: flex; align-items: center; gap: 16px; }
.ig-avatar {
  width: 52px;
  height: 52px;
  flex: 0 0 52px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--cream-pure);
  background: linear-gradient(135deg, var(--orange-light), var(--orange-deep));
}
.ig-avatar svg { width: 26px; height: 26px; }
.ig-handle {
  display: inline-block;
  font-family: var(--f-display);
  font-size: 18px;
  font-weight: 600;
  color: var(--ink);
  text-decoration: none;
  letter-spacing: -0.01em;
}
.ig-handle:hover { color: var(--orange-deep); }
.ig-sub {
  font-family: var(--f-mono);
  font-size: 11px;
  letter-spacing: 0.04em;
  color: var(--muted);
  margin-top: 4px;
}
.ig-follow { white-space: nowrap; }
.ig-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 10px;
}
.ig-tile {
  position: relative;
  display: block;
  aspect-ratio: 1 / 1;
  overflow: hidden;
  border-radius: 4px;
  background: var(--paper);
}
.ig-tile img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.4s ease;
}
.ig-tile-ov {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--cream-pure);
  background: rgba(23,30,39,0.0);
  opacity: 0;
  transition: opacity 0.25s ease, background 0.25s ease;
}
.ig-tile-ov svg { width: 30px; height: 30px; }
.ig-tile:hover img { transform: scale(1.06); }
.ig-tile:hover .ig-tile-ov { opacity: 1; background: rgba(23,30,39,0.4); }
@media (max-width: 760px) {
  .ig-grid { grid-template-columns: repeat(3, 1fr); }
}
@media (max-width: 420px) {
  .ig-grid { grid-template-columns: repeat(2, 1fr); }
}

/* ═══════════════ UTILITY BAR — pastille horaire + langues drapeaux ═══════════════ */
.utility-left .status-pill {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 2px 10px;
  border-radius: 999px;
  font-family: var(--f-mono);
  font-size: 10px;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  line-height: 1.7;
  transition: background 0.3s, color 0.3s;
}
.status-pill .status-dot {
  width: 7px; height: 7px;
  border-radius: 50%;
  background: currentColor;
  flex-shrink: 0;
  /* override homepage .status-dot animation/box-shadow */
  box-shadow: none;
  animation: none;
}
.status-pill.is-open  { background: rgba(63,185,80,0.16);  color: #56d364; }
.status-pill.is-closed{ background: rgba(218,54,51,0.16);  color: #f06b66; }
.status-pill.is-open .status-dot { animation: pillPulse 2.2s ease-in-out infinite; }
@keyframes pillPulse {
  0%, 100% { box-shadow: 0 0 0 0 rgba(86,211,100,0.55); }
  70%      { box-shadow: 0 0 0 5px rgba(86,211,100,0); }
}

/* Phone with icon */
.utility-right .util-phone {
  display: inline-flex;
  align-items: center;
  gap: 7px;
}
.util-phone-ic {
  width: 12px; height: 12px;
  flex-shrink: 0;
  opacity: 0.85;
}

/* Language switcher with flags */
.util-langs {
  display: inline-flex;
  align-items: center;
  gap: 12px;
}
.util-langs .lang {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  opacity: 0.45;
  transition: opacity 0.2s;
}
.util-langs .lang.active,
.util-langs .lang:hover { opacity: 1; }
.flag {
  width: 17px;
  height: 11px;
  border-radius: 2px;
  display: block;
  flex-shrink: 0;
  box-shadow: 0 0 0 1px rgba(255,255,255,0.18);
}

@media (max-width: 720px) {
  .utility-left, .utility-right { gap: 14px; flex-wrap: wrap; justify-content: center; }
  .util-langs { gap: 10px; }
  .utility-left .util-divider { display: none; }
}

/* ═══════════════ NOTRE HISTOIRE — timeline scrollspy (page entreprise) ═══════════════ */
.histoire-tl { }
.histoire-tl .eyebrow { margin-bottom: 40px; }
.htl-grid {
  display: grid;
  grid-template-columns: 0.62fr 1.38fr;
  gap: 72px;
  align-items: start;
}

/* LEFT — sticky years acting like the guides TOC */
.htl-aside {
  position: sticky;
  top: 110px;
}
.htl-nav {
  display: flex;
  flex-direction: column;
  border-left: 1px solid var(--border);
  padding-left: 28px;
  position: relative;
}
.htl-link {
  display: flex;
  flex-direction: column;
  gap: 2px;
  padding: 16px 0;
  position: relative;
  text-decoration: none;
  opacity: 0.5;
  transition: opacity 0.3s var(--ease-quart);
}
.htl-link::before {
  content: '';
  position: absolute;
  left: -33px;
  top: 22px;
  width: 9px; height: 9px;
  border-radius: 50%;
  background: var(--cream-pure);
  border: 1.5px solid var(--orange);
  transition: all 0.3s var(--ease-quart);
}
.htl-link.is-active {
  opacity: 1;
}
.htl-link.is-active::before {
  background: var(--orange);
  box-shadow: 0 0 0 4px var(--orange-dim);
}
.htl-year {
  font-family: var(--f-display);
  font-size: 34px;
  font-weight: 600;
  line-height: 1;
  letter-spacing: -0.02em;
  color: var(--ink);
  transition: color 0.3s;
}
.htl-link.is-active .htl-year { color: var(--orange); }
.htl-cap {
  font-family: var(--f-mono);
  font-size: 10.5px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--muted);
}

/* RIGHT — chapters */
.htl-chapters {
  display: flex;
  flex-direction: column;
  gap: 64px;
}
.htl-chapter {
  scroll-margin-top: 120px;
}
.htl-chapter-head {
  display: flex;
  align-items: baseline;
  gap: 14px;
  margin-bottom: 14px;
}
.htl-chapter-year {
  font-family: var(--f-mono);
  font-size: 12px;
  letter-spacing: 0.16em;
  color: var(--orange);
  font-weight: 500;
}
.htl-chapter-kicker {
  font-family: var(--f-mono);
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--muted);
}
.htl-chapter-title {
  font-family: var(--f-display);
  font-weight: 500;
  font-size: clamp(26px, 3vw, 38px);
  line-height: 1.08;
  letter-spacing: -0.025em;
  color: var(--ink);
  margin-bottom: 18px;
}
.htl-chapter p {
  font-family: var(--f-editorial, var(--f-serif));
  font-size: 18px;
  line-height: 1.6;
  color: var(--ink);
  margin-bottom: 18px;
}
.htl-chapter p strong { font-weight: 600; }
.htl-chapter p em { font-style: italic; color: var(--orange); }
.htl-chapter .story-inline-photo {
  margin: 24px 0 8px;
  max-width: 78%;
}

@media (max-width: 900px) {
  .htl-grid { grid-template-columns: 1fr; gap: 36px; }
  .htl-aside { position: static; }
  /* On mobile the years become a horizontal scroll strip */
  .htl-nav {
    flex-direction: row;
    border-left: none;
    border-bottom: 1px solid var(--border);
    padding-left: 0;
    padding-bottom: 0;
    gap: 28px;
    overflow-x: auto;
  }
  .htl-link { padding: 0 0 16px; flex-shrink: 0; }
  .htl-link::before { display: none; }
  .htl-link.is-active { border-bottom: 2px solid var(--orange); }
  .htl-year { font-size: 26px; }
  .htl-chapter .story-inline-photo { max-width: 100%; }
}

/* ═══════════════ PAGES LÉGALES ═══════════════ */
.legal-section { background: var(--cream-pure); padding: 80px 0 110px; }
.legal-body { max-width: 770px; }
.legal-updated {
  font-family: var(--f-mono);
  font-size: 11px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 44px;
  padding-bottom: 24px;
  border-bottom: 1px solid var(--border);
}
.legal-body h2 {
  font-family: var(--f-display);
  font-weight: 500;
  font-size: clamp(22px, 2.4vw, 28px);
  line-height: 1.15;
  letter-spacing: -0.02em;
  color: var(--ink);
  margin: 52px 0 16px;
}
.legal-body h2:first-of-type { margin-top: 0; }
.legal-body h2 .num {
  font-family: var(--f-mono);
  font-size: 13px;
  color: var(--orange);
  margin-right: 12px;
  vertical-align: middle;
  letter-spacing: 0.04em;
}
.legal-body p,
.legal-body li {
  font-size: 16px;
  line-height: 1.72;
  color: #3a4654;
  margin-bottom: 16px;
}
.legal-body ul { padding-left: 22px; margin-bottom: 20px; }
.legal-body li { margin-bottom: 8px; }
.legal-body strong { font-weight: 600; color: var(--ink); }
.legal-body a { color: var(--orange-deep); text-decoration: underline; text-underline-offset: 2px; }
.legal-body a:hover { color: var(--orange); }
.legal-ident {
  background: var(--paper);
  border: 1px solid var(--border);
  border-radius: 4px;
  padding: 28px 30px;
  margin: 8px 0 8px;
}
.legal-ident p { margin-bottom: 6px; }
.legal-note {
  margin-top: 48px;
  padding-top: 24px;
  border-top: 1px solid var(--border);
  font-size: 13px;
  color: var(--muted);
  font-style: italic;
}
/* legal h3 sub-articles */
.legal-body h3 {
  font-family: var(--f-display);
  font-weight: 500;
  font-size: clamp(17px, 1.6vw, 20px);
  color: var(--ink);
  margin: 32px 0 10px;
  letter-spacing: -0.01em;
}
.legal-body .legal-note-box {
  background: var(--paper);
  border-left: 3px solid var(--orange);
  padding: 16px 20px;
  margin: 20px 0;
  font-size: 13px;
  color: var(--muted);
  line-height: 1.65;
}
.legal-body .legal-credit-warning {
  background: #fff8ec;
  border: 1px solid var(--orange-dim);
  border-radius: 3px;
  padding: 14px 18px;
  font-family: var(--f-mono);
  font-size: 11px;
  color: var(--ink);
  letter-spacing: 0.04em;
  text-transform: uppercase;
  margin: 16px 0;
}

/* ═══════════════ BEST SELLER ═══════════════ */
.bestseller {
  background: var(--cream-pure);
  padding: 96px 0;
  border-top: 1px solid var(--border);
}
.bs-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}
/* Badge */
.bs-badge {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  background: var(--orange-dim);
  color: var(--orange);
  font-family: var(--f-mono);
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 5px 14px;
  border-radius: 999px;
  margin-bottom: 18px;
}
/* Brand + model */
.bs-brand {
  font-family: var(--f-mono);
  font-size: 12px;
  letter-spacing: 0.16em;
  color: var(--muted);
  text-transform: uppercase;
  margin-bottom: 4px;
}
.bs-name {
  font-family: var(--f-display);
  font-size: clamp(52px, 6vw, 80px);
  font-weight: 700;
  letter-spacing: -0.04em;
  line-height: 0.9;
  color: var(--ink);
  margin-bottom: 18px;
}
.bs-tagline {
  font-family: var(--f-editorial);
  font-size: 17px;
  line-height: 1.55;
  color: var(--muted);
  margin-bottom: 36px;
  max-width: 420px;
}
/* Specs row */
.bs-specs {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  border-top: 1px solid var(--border);
  padding-top: 28px;
  margin-bottom: 36px;
}
.bs-spec { padding-right: 16px; }
.bs-spec + .bs-spec { padding-left: 16px; border-left: 1px solid var(--border); }
.bs-spec-val {
  display: block;
  font-family: var(--f-display);
  font-size: clamp(18px, 1.6vw, 22px);
  font-weight: 600;
  color: var(--ink);
  white-space: nowrap;
}
.bs-spec-key {
  display: block;
  font-family: var(--f-mono);
  font-size: 9px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--muted);
  margin-top: 4px;
}
/* Price */
.bs-price-row { margin-bottom: 32px; }
.bs-price {
  font-family: var(--f-display);
  font-size: clamp(36px, 3.6vw, 48px);
  font-weight: 700;
  letter-spacing: -0.03em;
  color: var(--ink);
  line-height: 1;
}
.bs-price-unit { font-size: 0.55em; color: var(--muted); margin-left: 4px; }
.bs-price-note {
  font-family: var(--f-mono);
  font-size: 11px;
  color: var(--muted);
  letter-spacing: 0.06em;
  margin-top: 6px;
}
/* CTAs */
.bs-ctas { display: flex; align-items: center; gap: 24px; flex-wrap: wrap; }
.bs-btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--orange);
  color: #fff;
  font-family: var(--f-mono);
  font-size: 13px;
  letter-spacing: 0.06em;
  padding: 14px 28px;
  border-radius: 3px;
  text-decoration: none;
  font-weight: 600;
  transition: background 0.2s, transform 0.15s;
}
.bs-btn-primary:hover { background: var(--orange-deep); transform: translateY(-1px); }
.bs-btn-secondary {
  font-family: var(--f-mono);
  font-size: 12px;
  color: var(--muted);
  text-decoration: underline;
  text-underline-offset: 3px;
  letter-spacing: 0.06em;
}
.bs-btn-secondary:hover { color: var(--orange); }
/* Photo */
.bs-photo-wrap {
  position: relative;
  border-radius: 6px;
  overflow: visible;
}
.bs-photo-bg {
  position: absolute;
  inset: 24px -16px -24px 16px;
  background: var(--paper);
  border-radius: 6px;
  z-index: 0;
  border: 1px solid var(--border);
}
.bs-photo-img {
  position: relative;
  z-index: 1;
  width: 100%;
  height: auto;
  display: block;
  border-radius: 4px;
  object-fit: cover;
}
.bs-photo-no1 {
  position: absolute;
  bottom: -18px;
  left: -18px;
  z-index: 2;
  width: 72px;
  height: 72px;
  background: var(--orange);
  border-radius: 50%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 24px rgba(242,129,28,0.45);
}
.bs-no1-label { font-family: var(--f-display); font-size: 18px; font-weight: 700; color: #fff; line-height: 1; }
.bs-no1-sub { font-family: var(--f-mono); font-size: 8px; letter-spacing: 0.08em; color: rgba(255,255,255,0.85); text-transform: uppercase; }

@media (max-width: 900px) {
  .bs-inner { grid-template-columns: 1fr; }
  .bs-photo-wrap { order: -1; }
  .bs-name { font-size: 52px; }
  .bs-specs { grid-template-columns: repeat(2,1fr); gap: 20px; }
  .bs-spec + .bs-spec { border: none; padding-left: 0; }
  .bs-spec:nth-child(n+3) { border-top: 1px solid var(--border); padding-top: 16px; }
  .bs-photo-bg { display: none; }
}

/* ═══════════════ NOTRE HISTOIRE v2 — animated timeline ═══════════════ */
.histoire-v2 {
  background: var(--ink);
  padding: 96px 0 80px;
}
.hv2-header {
  margin-bottom: 56px;
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: end;
  gap: 60px;
}
.hv2-header-text { min-width: 0; }
.hv2-header .eyebrow { color: var(--orange); }
.hv2-header .section-title { color: var(--cream); margin: 0; }
.hv2-header .section-title em { font-style: normal; color: var(--orange); }

/* ═══════════════ HISTOIRE — Photo du siège (intégrée au titre) ═══════════════ */
.hv2-locale {
  position: relative;
  margin: 0;
  width: 460px;
  max-width: 100%;
  border-radius: 3px;
  overflow: hidden;
  background: #0a0d12;
  box-shadow:
    0 0 0 1px rgba(244,239,228,0.08),
    0 20px 40px -16px rgba(0,0,0,0.5),
    0 40px 80px -40px rgba(0,0,0,0.65);
}
.hv2-locale img {
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  filter: contrast(1.04) saturate(0.92) brightness(0.96);
  transition: transform 1.6s cubic-bezier(0.16, 1, 0.3, 1), filter 0.8s ease;
}
.hv2-locale:hover img {
  transform: scale(1.025);
  filter: contrast(1.06) saturate(1) brightness(1);
}
.hv2-locale-vignette {
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    radial-gradient(ellipse 120% 80% at 50% 45%, transparent 55%, rgba(10,13,18,0.4) 100%),
    linear-gradient(to bottom, rgba(10,13,18,0) 65%, rgba(10,13,18,0.45) 100%);
}
.hv2-locale-plate {
  position: absolute;
  bottom: 14px;
  left: 14px;
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 6px 11px 6px 10px;
  background: rgba(15,19,26,0.82);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border: 1px solid rgba(244,239,228,0.1);
  border-radius: 2px;
  font-family: var(--f-mono);
  font-size: 9.5px;
  letter-spacing: 0.12em;
  color: rgba(244,239,228,0.85);
  text-transform: uppercase;
}
.hv2-locale-plate-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--orange);
  box-shadow: 0 0 0 2.5px rgba(232,107,33,0.18);
  animation: hv2LocaleDot 2.4s ease-in-out infinite;
}
@keyframes hv2LocaleDot {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.45; transform: scale(0.92); }
}

@media (max-width: 1100px) {
  .hv2-locale { width: 380px; }
}
@media (max-width: 900px) {
  .hv2-header {
    grid-template-columns: 1fr;
    gap: 32px;
  }
  .hv2-locale { width: 100%; }
}

/* Rail */
.hv2-rail { margin-bottom: 52px; position: relative; padding-top: 20px; }
.hv2-track {
  position: absolute;
  top: 30px; /* centered on dot */
  left: calc(12.5% - 8px);
  right: calc(12.5% - 8px);
  height: 2px;
  background: rgba(244,239,228,0.12);
  border-radius: 2px;
  overflow: hidden;
}
.hv2-progress {
  height: 100%;
  background: var(--orange);
  border-radius: 2px;
  width: 0%;
  transition: width 0.6s cubic-bezier(0.4,0,0.2,1);
}
.hv2-nodes {
  display: flex;
  justify-content: space-between;
  position: relative;
}
.hv2-node {
  background: none;
  border: none;
  cursor: pointer;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  padding: 0;
  width: 25%;
  transition: opacity 0.2s;
}
.hv2-node-dot {
  width: 16px;
  height: 16px;
  border-radius: 50%;
  border: 2px solid rgba(244,239,228,0.25);
  background: var(--ink);
  transition: all 0.35s cubic-bezier(0.34,1.56,0.64,1);
  position: relative;
  z-index: 1;
}
.hv2-node.is-active .hv2-node-dot {
  background: var(--orange);
  border-color: var(--orange);
  transform: scale(1.35);
  box-shadow: 0 0 0 5px var(--orange-dim);
  animation: hv2Pulse 2.4s ease-in-out infinite;
}
@keyframes hv2Pulse {
  0%,100% { box-shadow: 0 0 0 4px var(--orange-dim); }
  50%      { box-shadow: 0 0 0 8px rgba(242,129,28,0.08); }
}
.hv2-node-year {
  font-family: var(--f-display);
  font-size: clamp(22px, 2.4vw, 30px);
  font-weight: 600;
  letter-spacing: -0.02em;
  color: rgba(244,239,228,0.4);
  transition: color 0.3s;
  line-height: 1;
}
.hv2-node.is-active .hv2-node-year { color: var(--orange); }
.hv2-node-cap {
  font-family: var(--f-mono);
  font-size: 10px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(244,239,228,0.3);
  transition: color 0.3s;
}
.hv2-node.is-active .hv2-node-cap { color: rgba(244,239,228,0.7); }
.hv2-node:hover .hv2-node-year { color: var(--cream); }

/* Panels */
.hv2-panels {
  position: relative;
  min-height: 200px;
  border-top: 1px solid rgba(244,239,228,0.1);
  padding-top: 44px;
}
.hv2-panel {
  display: none;
  grid-template-columns: 1fr 2.2fr 0.8fr;
  gap: 40px;
  align-items: start;
  animation: hv2FadeIn 0.4s ease both;
}
.hv2-panel.is-active { display: grid; }
@keyframes hv2FadeIn {
  from { opacity: 0; transform: translateY(10px); }
  to   { opacity: 1; transform: translateY(0); }
}
.hv2-panel-year {
  font-family: var(--f-display);
  font-size: clamp(72px, 8vw, 110px);
  font-weight: 700;
  letter-spacing: -0.05em;
  color: rgba(244,239,228,0.06);
  line-height: 0.85;
  user-select: none;
  padding-top: 8px;
}
.hv2-panel-title {
  font-family: var(--f-display);
  font-size: clamp(26px, 2.8vw, 36px);
  font-weight: 500;
  letter-spacing: -0.025em;
  color: var(--cream);
  margin-bottom: 16px;
}
.hv2-panel-body p {
  font-family: var(--f-editorial);
  font-size: 17px;
  line-height: 1.65;
  color: rgba(244,239,228,0.6);
  max-width: 520px;
}
.hv2-panel-body p strong { color: var(--cream); font-weight: 600; }
.hv2-panel-stat {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  text-align: right;
  padding-top: 4px;
}
.hv2-stat-num {
  font-family: var(--f-display);
  font-size: clamp(40px, 4.5vw, 60px);
  font-weight: 700;
  color: var(--orange);
  line-height: 1;
  letter-spacing: -0.04em;
}
.hv2-stat-label {
  font-family: var(--f-mono);
  font-size: 10px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(244,239,228,0.45);
  margin-top: 6px;
}
/* Quote */
.hv2-quote {
  margin-top: 56px;
  padding-top: 32px;
  border-top: 1px solid rgba(244,239,228,0.1);
  font-family: var(--f-editorial);
  font-size: clamp(20px, 2.2vw, 28px);
  color: rgba(244,239,228,0.55);
  font-style: italic;
  text-align: center;
}
.hv2-quote em { font-style: italic; color: var(--orange); }
.hv2-quote-attr {
  font-family: var(--f-mono);
  font-size: 11px;
  letter-spacing: 0.1em;
  color: rgba(244,239,228,0.3);
  text-transform: uppercase;
  margin-top: 10px;
  font-style: normal;
}
@media (max-width: 900px) {
  .hv2-panel.is-active { grid-template-columns: 1fr; }
  .hv2-panel-year { display: none; }
  .hv2-panel-stat { align-items: flex-start; text-align: left; }
  .hv2-track { left: 12%; right: 12%; }
  .hv2-node-year { font-size: 20px; }
  .hv2-node-cap { display: none; }
}

/* ═══════════════ CATALOGUE v2 — refondu, fond paper, logos ═══════════════ */
.catalogue-v2 {
  background: var(--paper);
  padding: 110px 0 100px;
  position: relative;
  overflow: hidden;
}
/* subtle track-mark overlay that drifts on scroll */
.cat-track-overlay {
  position: absolute;
  inset: 0;
  pointer-events: none;
  background-image:
    repeating-linear-gradient(90deg,
      transparent 0 38px,
      rgba(33,42,53,0.04) 38px 40px,
      transparent 40px 80px),
    repeating-linear-gradient(90deg,
      transparent 0 38px,
      rgba(33,42,53,0.04) 38px 40px,
      transparent 40px 80px);
  background-position: 0 18%, 0 78%;
  background-size: 80px 14px;
  background-repeat: repeat-x;
  opacity: 0.7;
}

/* HEADER — split title left, intro+meta right */
.catv2-header {
  display: grid;
  grid-template-columns: 1fr 1.05fr;
  gap: 80px;
  align-items: end;
  margin-bottom: 64px;
  padding-bottom: 48px;
  border-bottom: 1px solid var(--border);
}
.catv2-head-left .eyebrow { color: var(--orange); margin-bottom: 22px; }
.catv2-head-left .section-title {
  font-family: var(--f-display);
  font-weight: 500;
  font-size: clamp(38px, 5vw, 64px);
  line-height: 1;
  letter-spacing: -0.035em;
  color: var(--ink);
  margin: 0;
}
.catv2-head-left .section-title em { font-style: normal; color: var(--orange); }
.catv2-head-right {
  display: flex;
  flex-direction: column;
  gap: 32px;
}
.catv2-intro {
  font-family: var(--f-editorial);
  font-size: 18px;
  line-height: 1.55;
  color: var(--muted);
  max-width: 480px;
}
.catv2-meta { display: flex; gap: 48px; }
.catv2-meta-stat { }
.catv2-meta-num {
  font-family: var(--f-display);
  font-size: clamp(36px, 3.4vw, 46px);
  font-weight: 600;
  color: var(--ink);
  letter-spacing: -0.035em;
  line-height: 1;
}
.catv2-meta-num .catv2-meta-sm {
  font-size: 0.6em;
  color: var(--orange);
  font-weight: 400;
  margin: 0 4px;
}
.catv2-meta-lab {
  font-family: var(--f-mono);
  font-size: 10px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--muted);
  margin-top: 8px;
  line-height: 1.4;
}

/* CARDS */
.catv2-cards {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
}
.catv2-card {
  position: relative;
  background: var(--cream-pure);
  border: 1px solid var(--border);
  border-radius: 6px;
  padding: 40px 38px 36px;
  text-decoration: none;
  color: var(--ink);
  overflow: hidden;
  transition: transform 0.4s var(--ease-quart), box-shadow 0.4s var(--ease-quart);
  display: flex;
  flex-direction: column;
  min-height: 480px;
}
.catv2-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 24px 50px rgba(33,42,53,0.12);
}
.catv2-stripe {
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 5px;
}
.catv2-card--sonca .catv2-stripe { background: #F5C518; }
.catv2-card--xcavator .catv2-stripe { background: var(--orange); }
.catv2-num {
  position: absolute;
  top: 26px; right: 30px;
  font-family: var(--f-mono);
  font-size: 11px;
  letter-spacing: 0.14em;
  color: var(--muted);
  font-weight: 500;
}
.catv2-logo-wrap {
  height: 80px;
  display: flex;
  align-items: center;
  margin-bottom: 26px;
  margin-top: 4px;
}
.catv2-logo {
  max-height: 60px;
  max-width: 280px;
  width: auto;
  height: auto;
  object-fit: contain;
  filter: drop-shadow(0 1px 2px rgba(0,0,0,0.04));
}
.catv2-card--xcavator .catv2-logo { max-height: 48px; }
.catv2-tag {
  font-family: var(--f-editorial);
  font-style: italic;
  font-size: 18px;
  line-height: 1.3;
  color: var(--orange);
  margin-bottom: 14px;
  letter-spacing: -0.005em;
}
.catv2-desc {
  font-family: var(--f-body);
  font-size: 15px;
  line-height: 1.6;
  color: var(--muted);
  margin-bottom: 28px;
  flex-grow: 1;
}
.catv2-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-top: 1px solid var(--border);
  padding-top: 22px;
  margin-bottom: 26px;
  gap: 0;
}
.catv2-stats > div {
  padding-right: 12px;
}
.catv2-stats > div + div { border-left: 1px solid var(--border); padding-left: 18px; }
.catv2-stats strong {
  display: block;
  font-family: var(--f-display);
  font-size: clamp(18px, 1.7vw, 22px);
  font-weight: 600;
  color: var(--ink);
  letter-spacing: -0.02em;
  white-space: nowrap;
}
.catv2-stats span {
  display: block;
  font-family: var(--f-mono);
  font-size: 9.5px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--muted);
  margin-top: 5px;
}
.catv2-cta {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  font-family: var(--f-mono);
  font-size: 12px;
  letter-spacing: 0.08em;
  color: var(--orange);
  text-transform: uppercase;
  font-weight: 600;
  align-self: flex-start;
  transition: gap 0.3s var(--ease-quart);
}
.catv2-card:hover .catv2-cta { gap: 13px; }
.catv2-cta svg { stroke: var(--orange); }
.catv2-glow {
  position: absolute;
  bottom: -120px; right: -120px;
  width: 280px; height: 280px;
  border-radius: 50%;
  background: radial-gradient(circle at center, rgba(242,129,28,0.16), transparent 70%);
  opacity: 0;
  transition: opacity 0.5s var(--ease-quart);
  pointer-events: none;
}
.catv2-card--sonca .catv2-glow { background: radial-gradient(circle at center, rgba(245,197,24,0.2), transparent 70%); }
.catv2-card:hover .catv2-glow { opacity: 1; }

@media (max-width: 900px) {
  .catv2-header { grid-template-columns: 1fr; gap: 36px; padding-bottom: 36px; margin-bottom: 44px; }
  .catv2-cards  { grid-template-columns: 1fr; gap: 22px; }
  .catv2-card   { min-height: 0; padding: 32px 28px 28px; }
}

/* ═══════════════ SCROLL ANIMATIONS — plane / truck / tracks / floating ═══════════════ */

/* PLANE on .pourquoi */
.pourquoi { position: relative; overflow: hidden; }
.anim-plane-wrap {
  position: absolute;
  top: 14%;
  left: 0;
  width: 240px;
  height: 80px;
  pointer-events: none;
  z-index: 0;
  will-change: transform;
}
.anim-plane { width: 100%; height: 100%; opacity: 0.55; transform: scaleX(-1); }

/* Make sure .pourquoi content stays above plane */
.pourquoi .container { position: relative; z-index: 1; }

/* PARTNERS — gentle floating */
.partners-strip .partner-logo,
.partners-strip img {
  animation: partnerFloat 4s ease-in-out infinite;
  display: inline-block;
}
.partners-strip > *:nth-child(1) img,
.partners-strip .partner-logo:nth-child(1) { animation-delay: 0s; }
.partners-strip > *:nth-child(2) img,
.partners-strip .partner-logo:nth-child(2) { animation-delay: 0.6s; }
.partners-strip > *:nth-child(3) img,
.partners-strip .partner-logo:nth-child(3) { animation-delay: 1.2s; }
.partners-strip > *:nth-child(4) img,
.partners-strip .partner-logo:nth-child(4) { animation-delay: 1.8s; }
.partners-strip > *:nth-child(5) img,
.partners-strip .partner-logo:nth-child(5) { animation-delay: 2.4s; }
.partners-strip > *:nth-child(6) img,
.partners-strip .partner-logo:nth-child(6) { animation-delay: 3.0s; }
@keyframes partnerFloat {
  0%, 100% { transform: translateY(0); }
  50%      { transform: translateY(-6px); }
}

/* Respect reduced-motion */
@media (prefers-reduced-motion: reduce) {
  .anim-plane-wrap { display: none; }
  .partners-strip img, .partners-strip .partner-logo { animation: none; }
}

  /* Hover expansion on the utility bar */
  .utility-bar {
    transition: padding 0.28s cubic-bezier(0.4,0,0.2,1),
                font-size 0.28s cubic-bezier(0.4,0,0.2,1);
  }
  .utility-bar .flag,
  .utility-bar .util-phone-ic {
    transition: transform 0.28s cubic-bezier(0.4,0,0.2,1);
  }
  .utility-bar:hover {
    padding: 14px 0;
    font-size: 13.5px;
  }
  .utility-bar:hover .flag {
    width: 21px;
    height: 14px;
    transform: scale(1.05);
  }
  .utility-bar:hover .util-phone-ic {
    width: 15px;
    height: 15px;
  }
  .utility-bar:hover .status-pill {
    padding: 4px 13px;
    font-size: 11.5px;
  }
  @media (max-width: 720px) {
    /* No hover on touch: keep static */
    .utility-bar { transition: none; }
    .utility-bar:hover { padding: 8px 0; font-size: 10px; }
  }


/* ═══════════════ HERO — photo background + animated underline ═══════════════ */
.hero-bg-photo {
  position: absolute;
  top: 0;
  right: -14%;                    /* image overflows 14% past the right edge to physically shift content rightward */
  left: auto;
  width: 86%;                     /* widened from 72% to give object-fit more horizontal slack */
  height: 100%;
  object-fit: cover;
  object-position: center center;
  z-index: 1;
  opacity: 0;
  animation: heroPhotoIn 1.6s var(--ease-quart, cubic-bezier(0.76,0,0.24,1)) 0.1s forwards;
}
@keyframes heroPhotoIn {
  from { opacity: 0; transform: scale(1.05); }
  to   { opacity: 1; transform: scale(1); }
}
.hero-bg-overlay {
  position: absolute;
  inset: 0;
  z-index: 2;
  background:
    linear-gradient(to right,
      rgba(23,30,39,1) 0%,
      rgba(23,30,39,1) 28%,         /* solid dark on left, masks where image begins */
      rgba(23,30,39,0.92) 38%,
      rgba(23,30,39,0.68) 50%,
      rgba(23,30,39,0.35) 65%,
      rgba(23,30,39,0.18) 80%,
      rgba(23,30,39,0.12) 100%),
    linear-gradient(to top,
      rgba(23,30,39,0.65) 0%,
      transparent 35%);
  pointer-events: none;
}
/* Mobile: photo goes back to full-bleed behind the text for impact */
@media (max-width: 900px) {
  .hero-bg-photo {
    left: 0;
    right: auto;
    width: 100%;
    object-position: 55% center;
  }
  .hero-bg-overlay {
    background:
      linear-gradient(to right,
        rgba(23,30,39,0.93) 0%,
        rgba(23,30,39,0.88) 40%,
        rgba(23,30,39,0.65) 100%),
      linear-gradient(to top,
        rgba(23,30,39,0.85) 0%,
        transparent 40%);
  }
}
/* Keep the existing hero::after fade-to-oak at bottom on top of overlay */
.hero::after { z-index: 3; }
/* Glow goes above overlay for atmosphere */
.hero-glow { z-index: 4; mix-blend-mode: screen; opacity: 0.6; }
/* Content sits above everything */
.hero-content { z-index: 5; }
.hero-meta { z-index: 5; }
/* The old SVG class is no longer in the DOM, but make sure no orphan rule shows it */
.hero-machine { display: none; }

@media (prefers-reduced-motion: reduce) {
  .hero-bg-photo { animation: none; opacity: 1; transform: none; }
}


/* ═══════════════ CATALOGUE — animated SVG showcase ═══════════════ */
.catv2-showcase {
  position: relative;
  margin: 18px 0 56px;
  padding: 32px 24px 0;
  display: flex;
  justify-content: center;
  align-items: flex-end;
  overflow: hidden;
}
.catv2-showcase-bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at center 90%, rgba(242,129,28,0.12) 0%, transparent 60%),
    repeating-linear-gradient(0deg, transparent 0 38px, rgba(33,42,53,0.045) 38px 39px, transparent 39px);
  pointer-events: none;
  z-index: 0;
}
.catv2-showcase .czn-digger {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: 380px;
  height: auto;
  display: block;
  filter: drop-shadow(0 16px 24px rgba(33,42,53,0.18));
}
.catv2-showcase-floor {
  position: absolute;
  bottom: 0; left: 8%; right: 8%;
  height: 1px;
  background: linear-gradient(to right, transparent, rgba(33,42,53,0.18), transparent);
  z-index: 1;
}
@media (max-width: 700px) {
  .catv2-showcase { margin: 8px 0 30px; padding: 16px 8px 0; }
  .catv2-showcase .czn-digger { max-width: 280px; }
}

/* ═══════════════ DIAGONAL STRIPE SEPARATOR (ink + orange) ═══════════════ */
.stripe-separator {
  height: 18px;
  background-image: repeating-linear-gradient(
    -55deg,
    var(--orange) 0 22px,
    var(--ink) 22px 44px
  );
  box-shadow: 0 -1px 0 rgba(33,42,53,0.08) inset, 0 1px 0 rgba(33,42,53,0.08) inset;
}
@media (max-width: 720px) {
  .stripe-separator { height: 14px; }
}

/* ═══════════════ PAGE HERO — drone photo background (entreprise) ═══════════════ */
.page-hero--split { position: relative; min-height: 520px; }
.page-hero--split .page-hero-bg {
  position: absolute !important;
  inset: 0;
  z-index: 0;
  overflow: hidden;
  pointer-events: none;
}
.page-hero--split .page-hero-bg picture,
.page-hero--split .page-hero-bg img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 40%;
}
.page-hero--split .page-hero-bg img {
  opacity: 0;
  animation: heroPhotoIn 1.6s var(--ease-quart, cubic-bezier(0.76,0,0.24,1)) 0.1s forwards;
}
.page-hero--split .page-hero-bg-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(to right,
      rgba(23,30,39,0.95) 0%,
      rgba(23,30,39,0.88) 30%,
      rgba(23,30,39,0.68) 55%,
      rgba(23,30,39,0.45) 80%,
      rgba(23,30,39,0.35) 100%),
    linear-gradient(to bottom,
      rgba(23,30,39,0.25) 0%,
      transparent 30%,
      rgba(23,30,39,0.55) 100%);
}
/* Lift content above background */
.page-hero--split .container { position: relative; z-index: 2; }
.page-hero--split .hero-split-grid { grid-template-columns: 1fr; }
.page-hero--split .hero-split-content { max-width: 720px; padding-bottom: 80px; }
.page-hero--split::after { z-index: 2; }

@media (max-width: 900px) {
  .page-hero--split .page-hero-bg img { object-position: 60% 40%; }
  .page-hero--split .page-hero-bg-overlay {
    background:
      linear-gradient(to right,
        rgba(23,30,39,0.93) 0%,
        rgba(23,30,39,0.85) 60%,
        rgba(23,30,39,0.7) 100%),
      linear-gradient(to bottom,
        rgba(23,30,39,0.4) 0%,
        transparent 40%,
        rgba(23,30,39,0.7) 100%);
  }
}

@media (prefers-reduced-motion: reduce) {
  .page-hero--split .page-hero-bg img { animation: none; opacity: 1; }
}

/* ── Accessoires : hero contenu + image latérale (tarière) ── */
.page-hero--split.page-hero--media .hero-split-grid {
  grid-template-columns: 1.25fr 0.75fr;
  gap: 56px;
  align-items: center;
}
.page-hero--split.page-hero--media .hero-split-content {
  max-width: none;
}
.page-hero--split.page-hero--media .hero-split-img {
  align-self: center;
  padding: 24px 28px;
  position: relative;
  isolation: isolate;
}
/* Cadre fin décalé derrière la photo (effet "passe-partout") */
.page-hero--split.page-hero--media .hero-split-img::before {
  content: "";
  position: absolute;
  inset: 4px 4px 44px 44px;
  border: 1px solid rgba(244,239,228,0.18);
  border-radius: 8px;
  z-index: -1;
}
/* Équerre d'accent orange en haut à gauche */
.page-hero--split.page-hero--media .hero-split-img::after {
  content: "";
  position: absolute;
  top: 8px;
  left: 12px;
  width: 64px;
  height: 64px;
  border-top: 2px solid var(--orange);
  border-left: 2px solid var(--orange);
  border-top-left-radius: 8px;
  z-index: 2;
  pointer-events: none;
}
.page-hero--split.page-hero--media .hero-img-frame {
  position: relative;
  border-radius: 8px;
  overflow: hidden;
  border: 1px solid rgba(244,239,228,0.1);
  box-shadow:
    0 34px 70px -24px rgba(0,0,0,0.75),
    0 12px 28px -14px rgba(0,0,0,0.55);
  transition: transform 0.5s var(--ease-quart, cubic-bezier(0.76,0,0.24,1)),
              box-shadow 0.5s var(--ease-quart, cubic-bezier(0.76,0,0.24,1));
}
/* Surbrillance interne + léger fondu en bas pour ancrer le produit */
.page-hero--split.page-hero--media .hero-img-frame::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 8px;
  background:
    linear-gradient(180deg, rgba(244,239,228,0.08) 0%, transparent 24%),
    linear-gradient(180deg, transparent 62%, rgba(23,30,39,0.4) 100%);
  pointer-events: none;
  z-index: 1;
}
.page-hero--split.page-hero--media .hero-img-frame:hover {
  transform: translateY(-4px);
  box-shadow:
    0 44px 84px -22px rgba(0,0,0,0.8),
    0 16px 34px -14px rgba(0,0,0,0.6);
}
.page-hero--split.page-hero--media .hero-split-img picture {
  display: block;
}
.page-hero--split.page-hero--media .hero-split-img img {
  display: block;
  width: 100%;
  height: 100%;
  max-height: 560px;
  object-fit: cover;
  object-position: 50% 55%;
  border-radius: 8px;
}
/* Anti-chevauchement des stats : la valeur multi-mots peut passer à la ligne */
.page-hero--media .hero-stats--compact .hero-stat-num {
  white-space: normal;
  font-size: clamp(19px, 1.6vw, 24px);
  line-height: 1.1;
}
@media (max-width: 900px) {
  .page-hero--split.page-hero--media .hero-split-grid { grid-template-columns: 1fr; }
  .page-hero--split.page-hero--media .hero-split-img { display: none; }
}

/* ── Variante paysage du hero média (page Entreprise : photo des bureaux) ── */
.page-hero--split.page-hero--media-land .hero-split-grid {
  grid-template-columns: 1.05fr 0.95fr;
}
.page-hero--split.page-hero--media-land .hero-split-img img {
  max-height: 440px;
  object-position: center 42%;
}
@media (max-width: 900px) {
  .page-hero--split.page-hero--media-land .hero-split-grid { grid-template-columns: 1fr; }
}

/* ── Badge "clients équipés" (mise en avant +5 500 clients) ── */
.trust-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 15px;
  border-radius: 100px;
  background: var(--orange);
  color: #1a232e;
  font-family: var(--f-mono);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.03em;
  line-height: 1;
  white-space: nowrap;
}
.trust-badge .tb-icon { flex-shrink: 0; }
.trust-badge strong { font-weight: 800; }
/* Espacements selon le contexte */
.section-header .trust-badge { margin-top: 20px; }
.hero-split-content .trust-badge { margin-top: 22px; }

/* ═══════════════════════════════════════════════════════
   MOBILE HEADER & TOP BAR — burger, drawer, lang dropdown
   (injectés par /mobile-nav.js)
   ═══════════════════════════════════════════════════════ */

/* Masqués par défaut (desktop) */
.nav-burger, .lang-dd, .mobile-drawer { display: none; }

/* ── Dropdown langue (top bar) ── */
.lang-dd { position: relative; }
.lang-dd-btn {
  display: inline-flex; align-items: center; gap: 6px;
  background: transparent; border: 1px solid rgba(255,250,235,0.28);
  border-radius: 999px; padding: 4px 10px;
  color: var(--cream); font-family: var(--f-mono);
  font-size: 10.5px; letter-spacing: 0.08em; cursor: pointer;
}
.lang-dd-btn .flag { width: 16px; height: 11px; border-radius: 2px; display: block; }
.lang-dd-caret { transition: transform 0.2s; }
.lang-dd.open .lang-dd-caret { transform: rotate(180deg); }
.lang-dd-menu {
  position: absolute; top: calc(100% + 8px); right: 0;
  min-width: 138px; background: var(--ink);
  border: 1px solid rgba(255,250,235,0.18); border-radius: 10px;
  padding: 6px; z-index: 300;
  box-shadow: 0 14px 34px rgba(0,0,0,0.4);
  opacity: 0; transform: translateY(-6px); pointer-events: none;
  transition: opacity 0.18s, transform 0.18s;
}
.lang-dd.open .lang-dd-menu { opacity: 1; transform: translateY(0); pointer-events: auto; }
.lang-dd-menu a {
  display: flex; align-items: center; gap: 9px;
  padding: 8px 10px; border-radius: 7px;
  color: var(--cream); text-decoration: none;
  font-family: var(--f-mono); font-size: 11px; letter-spacing: 0.05em;
}
.lang-dd-menu a .flag { width: 17px; height: 11px; border-radius: 2px; }
.lang-dd-menu a:hover { background: rgba(255,250,235,0.08); color: var(--orange-light); }
.lang-dd-menu a.active { color: var(--orange); }

/* ── Burger ── */
.nav-burger {
  width: 42px; height: 42px; flex-shrink: 0;
  background: transparent; border: 1px solid var(--border);
  border-radius: 10px; cursor: pointer;
  flex-direction: column; align-items: center; justify-content: center; gap: 5px;
  padding: 0;
}
.nav-burger span {
  display: block; width: 18px; height: 2px;
  background: var(--ink); border-radius: 2px;
  transition: transform 0.3s var(--ease-quart), opacity 0.2s;
}
.nav-burger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-burger.open span:nth-child(2) { opacity: 0; }
.nav-burger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ── Drawer ── */
.mobile-drawer { position: fixed; inset: 0; z-index: 400; pointer-events: none; }
.mobile-drawer-backdrop {
  position: absolute; inset: 0;
  background: rgba(20,26,34,0.55); backdrop-filter: blur(3px);
  opacity: 0; transition: opacity 0.3s;
}
.mobile-drawer-panel {
  position: absolute; top: 0; right: 0; bottom: 0;
  width: min(330px, 86vw);
  background: var(--ink); color: var(--cream);
  display: flex; flex-direction: column;
  padding: 18px 22px calc(22px + env(safe-area-inset-bottom));
  transform: translateX(100%);
  transition: transform 0.38s var(--ease-quart);
  box-shadow: -20px 0 60px rgba(0,0,0,0.35);
  overflow-y: auto;
}
.mobile-drawer.open { pointer-events: auto; }
.mobile-drawer.open .mobile-drawer-backdrop { opacity: 1; }
.mobile-drawer.open .mobile-drawer-panel { transform: translateX(0); }
body.drawer-locked { overflow: hidden; }

.mobile-drawer-head {
  display: flex; align-items: center; justify-content: space-between;
  padding-bottom: 16px; margin-bottom: 10px;
  border-bottom: 1px solid rgba(255,250,235,0.14);
}
.mobile-drawer-title {
  font-family: var(--f-mono); font-size: 11px;
  letter-spacing: 0.18em; text-transform: uppercase;
  color: rgba(244,239,228,0.55);
}
.mobile-drawer-close {
  width: 38px; height: 38px; border-radius: 9px;
  background: transparent; border: 1px solid rgba(255,250,235,0.2);
  color: var(--cream); cursor: pointer;
  display: flex; align-items: center; justify-content: center;
}
.mobile-drawer-links { list-style: none; margin: 0; padding: 0; flex: 1; }
.mobile-drawer-links li { border-bottom: 1px solid rgba(255,250,235,0.08); }
.mobile-drawer-links a {
  display: block; padding: 15px 2px;
  color: var(--cream); text-decoration: none;
  font-family: var(--f-display, 'Bricolage Grotesque', sans-serif);
  font-size: 19px; font-weight: 600; letter-spacing: -0.01em;
  transition: color 0.2s, padding-left 0.2s;
}
.mobile-drawer-links a:hover, .mobile-drawer-links a.nav-active { color: var(--orange); }
.mobile-drawer.open .mobile-drawer-links li {
  animation: drawerLink 0.45s var(--ease-quart) both;
  animation-delay: calc(0.06s * var(--i, 0) + 0.1s);
}
@keyframes drawerLink {
  from { opacity: 0; transform: translateX(18px); }
  to   { opacity: 1; transform: translateX(0); }
}
.mobile-drawer-foot {
  margin-top: 20px; padding-top: 18px;
  border-top: 1px solid rgba(255,250,235,0.14);
  display: flex; flex-direction: column; gap: 12px;
}
.mobile-drawer-cta {
  display: inline-flex; align-items: center; justify-content: center; gap: 9px;
  background: var(--orange); color: var(--cream-pure);
  padding: 14px 18px; border-radius: 10px; text-decoration: none;
  font-family: var(--f-mono); font-size: 12px;
  letter-spacing: 0.1em; text-transform: uppercase; font-weight: 500;
}
.mobile-drawer-phone {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  color: rgba(244,239,228,0.8); text-decoration: none;
  font-family: var(--f-mono); font-size: 12.5px; letter-spacing: 0.06em;
}
.mobile-drawer-phone:hover { color: var(--orange-light); }

/* ── ≤1024px : burger visible (les .nav-links sont déjà masqués ici) ── */
@media (max-width: 1024px) {
  .nav-burger { display: flex; }
  .mobile-drawer { display: block; }
}

/* ── ≤768px : top bar 1 ligne + header logo / RDV centré / burger ── */
@media (max-width: 768px) {

  /* — TOP BAR : pastille · Appeler · langue, sur UNE ligne — */
  .utility-bar { padding: 7px 0; font-size: 10px; }
  .utility-bar .container {
    flex-direction: row; flex-wrap: nowrap;
    justify-content: space-between; align-items: center; gap: 8px;
  }
  .utility-left > span:not(.status-pill),
  .util-hours, .util-divider { display: none !important; }
  .utility-left, .utility-right { gap: 10px; flex-shrink: 0; }

  /* Numéro → bouton "Appeler" */
  .utility-right .util-phone {
    display: inline-flex; align-items: center; gap: 6px;
    border: 1px solid rgba(255,250,235,0.3); border-radius: 999px;
    padding: 4px 12px; color: var(--cream);
  }
  .util-phone > span { display: none; }
  .util-phone::after { content: "Appeler"; letter-spacing: 0.08em; }
  html[lang="en"] .util-phone::after { content: "Call"; }

  /* Liens FR/EN desktop masqués → dropdown */
  .util-langs { display: none !important; }
  .lang-dd { display: block; }

  /* Pas d'effet hover-expansion sur tactile */
  .utility-bar:hover { padding: 7px 0; font-size: 10px; }

  /* — HEADER : logo · RDV centré · burger — */
  #mainNav .nav-inner {
    display: grid;
    grid-template-columns: auto 1fr auto;
    align-items: center; gap: 12px;
  }
  #mainNav .nav-links { display: none; }
  #mainNav .nav-actions { justify-self: center; }
  #mainNav .nav-icon { display: none; }   /* loupe masquée en mobile */
  #mainNav .nav-cta { padding: 11px 16px; font-size: 11px; white-space: nowrap; }
  #mainNav .nav-burger { justify-self: end; }
}

/* Très petits écrans : on compacte encore */
@media (max-width: 420px) {
  .utility-bar .container { padding: 0 14px; gap: 6px; }
  .utility-left, .utility-right { gap: 8px; }
  .status-pill { padding: 3px 10px; }
  .utility-right .util-phone { padding: 4px 10px; }
  .lang-dd-btn { padding: 4px 8px; }
}
@media (max-width: 360px) {
  .status-pill .status-text { font-size: 9px; }
  #mainNav .nav-cta { padding: 10px 12px; font-size: 10px; }
}

/* ═══════════════ AJUSTEMENTS MOBILE — Page d'accueil (override fin de fichier) ═══════════════
   Ces blocs ont leurs styles d'origine définis plus haut dans le fichier ; pour que
   l'ajustement mobile l'emporte, il doit être placé APRÈS eux (ordre de cascade CSS).
   On réduit l'espace AU-DESSUS du texte orange (eyebrow) sans toucher l'écart eyebrow → titre. */
@media (max-width: 720px) {
  .bestseller   { padding-top: 36px; }  /* moins de vide entre le bandeau défilant et la photo */
  .histoire-v2  { padding-top: 44px; }
  .catalogue-v2 { padding-top: 44px; }
  .catv2-showcase { display: none; }  /* masquer le visuel mini-pelle + sa zone vide en fin de catalogue */
}

/* ═══════════════ ACCUEIL MOBILE — Centrage des en-têtes (eyebrow + titre) ═══════════════
   Scopé à .page-home pour ne PAS toucher les autres pages qui partagent le même CSS.
   Les conteneurs d'en-tête passent en pleine largeur sur mobile → text-align:center
   centre la petite ligne orange (inline-flex) et le titre. */
@media (max-width: 720px) {
  .page-home .hv2-header-text,
  .page-home .catv2-head-left,
  .page-home .config-content,
  .page-home .section-header,
  .page-home .faq-header,
  .page-home .loc-header { text-align: center; }

  /* featured-header est en flex-colonne → on centre aussi ses items */
  .page-home .featured-header { align-items: center; text-align: center; }

  /* Notre histoire : rétablir l'écart entre le texte orange et le titre (annule margin:0) */
  .page-home .hv2-header .section-title { margin-top: 18px; }
}

/* ═══════════════ ACCUEIL MOBILE — Réglages par bloc (lot 4) ═══════════════ */
@media (max-width: 720px) {
  /* Catalogue : centrer l'intro + les 2 stats (20 modèles / 600kg→4T) */
  .page-home .catv2-head-right { text-align: center; }
  .page-home .catv2-intro { max-width: none; margin-left: auto; margin-right: auto; }
  .page-home .catv2-meta { justify-content: center; }
  .page-home .catv2-meta-stat { text-align: center; }

  /* Best-sellers : centrer les filtres Tous / Sonca / Xcavator */
  .page-home .featured-filters { justify-content: center; }

  /* Configurateur : 4 points sur 4 lignes, alignés à gauche (pas en 2 colonnes) */
  .page-home .config-features { grid-template-columns: 1fr; text-align: left; }

  /* Livraison : centrer les 4 infos (5 jours / 100% / 6 zones / Porte-engin) */
  .page-home .liv-stat { text-align: center; }

  /* Showroom & SAV : Horaires | Téléphone en 2 colonnes, Adresse pleine largeur dessous */
  .page-home .loc-info {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 32px 16px;
    align-items: start;
  }
  .page-home .loc-block { width: auto; padding: 0; border: none; }
  .page-home .loc-block:nth-child(2) { order: 1; }              /* Horaires */
  .page-home .loc-block:nth-child(3) { order: 2; }              /* Téléphone */
  .page-home .loc-block:nth-child(1) { order: 3; grid-column: 1 / -1; }  /* Adresse */
  .page-home .loc-block--cta        { order: 4; grid-column: 1 / -1; }   /* bouton Maps */

  /* FAQ : type un peu plus petit + réponse pleine largeur */
  .page-home .faq-q { font-size: 16px; }
  .page-home .faq-a { font-size: 14px; padding-right: 0; }

  /* 6 raisons : cartes un peu plus compactes + numéro et icône sur la même ligne */
  .page-home .pourquoi-item { padding: 30px 26px 30px; }
  .page-home .pq-number { display: inline-block; vertical-align: middle; margin: 0 12px 0 0; }
  .page-home .pq-icon   { display: inline-block; vertical-align: middle; margin: 0; }
  .page-home .pq-title  { margin-top: 16px; }
}

/* ═══════════════ PAGES INTÉRIEURES — Réglages mobile ═══════════════ */
@media (max-width: 720px) {
  /* — Accessoires : héro empilé, contenu centré, espace du haut réduit — */
  .page-accessoires .page-hero { padding-top: 28px; }
  .page-accessoires .page-hero--media .hero-split-grid { grid-template-columns: 1fr; }
  .page-accessoires .hero-split-content { padding-top: 18px; text-align: center; }
  .page-accessoires .hero-stat { text-align: center; }

  /* — Guides : héro centré + 4 stats (2 colonnes) centrées — */
  .page-guides .page-hero { text-align: center; }
  .page-guides .hero-stat { text-align: center; }

  /* — Contact : héro centré + 4 stats (2 colonnes) centrées — */
  .page-contact .page-hero { text-align: center; }
  .page-contact .hero-stat { text-align: center; }

  /* — Entreprise : héro centré, espaces réduits (haut + stats↔photo) — */
  .page-entreprise .page-hero { padding-top: 28px; }
  .page-entreprise .hero-split-content { padding-top: 18px; padding-bottom: 14px; text-align: center; }
  .page-entreprise .hero-stat { text-align: center; }
  .page-entreprise .page-hero--media .hero-split-img { padding: 8px 0 0; }
  .page-entreprise .sec-cream,
  .page-entreprise .sec-paper { padding-top: 44px; }
  /* Informations légales : infos centrées */
  .page-entreprise .company-cell { text-align: center; }
  /* Sur les réseaux : bouton « Suivre » pleine largeur dans la carte */
  .page-entreprise .ig-head { flex-direction: column; align-items: stretch; }
  .page-entreprise .ig-follow { width: 100%; text-align: center; }
}

/* Entreprise : réafficher la photo des bureaux sous le contenu du héros sur mobile/tablette
   (les héros média masquent l'image ≤900px — on la réautorise pour cette page). */
@media (max-width: 900px) {
  .page-entreprise .page-hero--media .hero-split-img { display: block; }
}
