
    :root {
      --ink:      #16120e;
      --ink-2:    #3d342a;
      --muted:    #7a6e64;
      --warm-50:  #faf7f3;
      --warm-100: #f4ede3;
      --warm-200: #e8ddd0;
      --warm-300: #d4c4b0;
      --iron:     #1c2430;
      --rust:     #b84c1a;
      --rust-dk:  #8c3610;
      --rust-lt:  #f5ddd2;
      --gold:     #c9903a;
      --green:    #2a5c43;
      --radius:   4px;
      --radius-md:10px;
      --radius-lg:18px;
      --max:      1200px;
      --shadow-sm:0 2px 8px rgba(22,18,14,.08);
      --shadow:   0 8px 32px rgba(22,18,14,.12);
      --shadow-lg:0 20px 60px rgba(22,18,14,.16);
    }

    *, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
    html { scroll-behavior: smooth; font-size: 16px; }

    body {
      font-family: 'DM Sans', system-ui, sans-serif;
      background: var(--warm-50);
      color: var(--ink);
      line-height: 1.6;
      overflow-x: hidden;
    }

    a { color: inherit; text-decoration: none; }
    img { display: block; max-width: 100%; }

    .container {
      width: min(calc(100% - 40px), var(--max));
      margin: 0 auto;
    }

    /* ─── TOPBAR ─── */
    .topbar {
      background: var(--iron);
      color: rgba(255,255,255,.85);
      font-size: .875rem;
    }
    .topbar__inner {
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 16px;
      padding: 10px 0;
      flex-wrap: wrap;
    }
    .topbar__left { display: flex; gap: 20px; align-items: center; flex-wrap: wrap; }
    .topbar__item { display: flex; align-items: center; gap: 7px; }
    .topbar__item svg { opacity: .7; flex-shrink: 0; }
    .topbar__phone {
      font-weight: 700;
      color: #fff;
      font-size: .95rem;
    }
    .topbar__badge {
      display: inline-flex; align-items: center; gap: 6px;
      background: rgba(201,144,58,.22);
      border: 1px solid rgba(201,144,58,.35);
      color: #e8b870;
      padding: 3px 10px; border-radius: 99px;
      font-size: .8rem; font-weight: 600;
    }
    .topbar__badge::before {
      content: ''; display: block;
      width: 7px; height: 7px; border-radius: 50%;
      background: #e8b870;
      animation: pulse 2s infinite;
    }
    @keyframes pulse {
      0%,100%{opacity:1;transform:scale(1)}
      50%{opacity:.5;transform:scale(1.3)}
    }

    /* ─── HEADER / NAV ─── */
    header {
      position: sticky; top: 0; z-index: 100;
      background: rgba(250,247,243,.96);
      backdrop-filter: blur(14px);
      border-bottom: 1px solid var(--warm-200);
      box-shadow: var(--shadow-sm);
    }
    .nav {
      display: flex; align-items: center;
      justify-content: space-between; gap: 24px;
      min-height: 76px;
    }
    .brand { display: flex; align-items: center; gap: 14px; }
    .brand__icon {
      width: 46px; height: 46px;
      background: var(--rust);
      border-radius: var(--radius-md);
      display: flex; align-items: center; justify-content: center;
      flex-shrink: 0;
      box-shadow: 0 4px 14px rgba(184,76,26,.3);
    }
    .brand__text { display: flex; flex-direction: column; gap: 2px; }
    .brand__name {
      font-family: 'DM Serif Display', Georgia, serif;
      font-size: 1.22rem;
      color: var(--ink);
      line-height: 1;
    }
    .brand__sub { font-size: .78rem; color: var(--muted); font-weight: 500; letter-spacing: .04em; text-transform: uppercase; }

    .nav__links {
      display: flex; gap: 4px; align-items: center;
      list-style: none;
    }
    .nav__links a {
      padding: 8px 14px; border-radius: var(--radius-md);
      font-weight: 500; font-size: .9rem; color: var(--ink-2);
      transition: background .15s, color .15s;
    }
    .nav__links a:hover { background: var(--warm-100); color: var(--rust); }

    .btn {
      display: inline-flex; align-items: center; gap: 8px;
      padding: 11px 22px; border-radius: var(--radius-md);
      font-weight: 600; font-size: .9rem;
      border: none; cursor: pointer;
      transition: transform .15s, box-shadow .15s, background .15s;
      white-space: nowrap;
    }
    .btn:hover { transform: translateY(-1px); }
    .btn--rust {
      background: var(--rust); color: #fff;
      box-shadow: 0 4px 18px rgba(184,76,26,.28);
    }
    .btn--rust:hover { background: var(--rust-dk); box-shadow: 0 6px 24px rgba(184,76,26,.36); }
    .btn--outline {
      background: transparent; color: var(--ink);
      box-shadow: inset 0 0 0 1.5px var(--warm-300);
    }
    .btn--outline:hover { background: var(--warm-100); }
    .btn--lg { padding: 14px 28px; font-size: 1rem; border-radius: var(--radius-lg); }

    /* ─── HERO ─── */
    .hero {
      padding: 72px 0 60px;
      position: relative;
    }
    .hero::before {
      content: '';
      position: absolute; inset: 0;
      background: radial-gradient(ellipse 900px 600px at 70% 50%, rgba(184,76,26,.06) 0%, transparent 70%);
      pointer-events: none;
    }

    .hero__layout {
      display: grid;
      grid-template-columns: 1fr 420px;
      gap: 48px;
      align-items: start;
    }

    .hero__kicker {
      display: inline-flex; align-items: center; gap: 8px;
      background: var(--rust-lt); color: var(--rust-dk);
      padding: 6px 14px; border-radius: 99px;
      font-size: .83rem; font-weight: 700; letter-spacing: .04em; text-transform: uppercase;
      margin-bottom: 24px;
    }
    .hero__kicker::before {
      content: ''; width: 6px; height: 6px; border-radius: 50%;
      background: var(--rust); flex-shrink: 0;
    }

    h1 {
      font-family: 'DM Serif Display', Georgia, serif;
      font-size: clamp(2.8rem, 5vw, 4.8rem);
      line-height: 1.02;
      letter-spacing: -.02em;
      color: var(--ink);
      margin-bottom: 22px;
    }
    h1 em {
      font-style: italic;
      color: var(--rust);
    }

    .hero__lead {
      font-size: 1.12rem;
      color: var(--ink-2);
      max-width: 54ch;
      line-height: 1.65;
      margin-bottom: 34px;
    }

    .hero__cta { display: flex; gap: 12px; flex-wrap: wrap; margin-bottom: 48px; }

    .trust-row {
      display: flex; gap: 28px; flex-wrap: wrap;
      border-top: 1px solid var(--warm-200);
      padding-top: 28px;
    }
    .trust-item { display: flex; align-items: center; gap: 10px; }
    .trust-item__icon {
      width: 38px; height: 38px; border-radius: 10px;
      background: var(--warm-100); border: 1px solid var(--warm-200);
      display: flex; align-items: center; justify-content: center;
      flex-shrink: 0;
    }
    .trust-item__text { line-height: 1.3; }
    .trust-item__label { font-size: .77rem; color: var(--muted); text-transform: uppercase; letter-spacing: .05em; font-weight: 600; }
    .trust-item__value { font-size: .95rem; font-weight: 700; color: var(--ink); }

    /* ─── HERO SIDE CARD ─── */
    .hero__card {
      background: #fff;
      border: 1px solid var(--warm-200);
      border-radius: 20px;
      box-shadow: var(--shadow-lg);
      overflow: hidden;
      position: sticky; top: 96px;
    }
    .hero__card-header {
      background: var(--iron);
      color: #fff;
      padding: 22px 26px;
    }
    .hero__card-header h3 {
      font-family: 'DM Serif Display', Georgia, serif;
      font-size: 1.25rem;
      margin-bottom: 4px;
	  color:#faf7f3
    }
	.hero__card-header .titre {
      font-family: 'DM Serif Display', Georgia, serif;
      font-size: 1.25rem;
      margin-bottom: 4px;
	  color:#faf7f3
    }
    .hero__card-header p { font-size: .87rem; opacity: .7; }
    .hero__card-body { padding: 24px 26px; }

    .fault-list { list-style: none; display: flex; flex-direction: column; gap: 10px; margin-bottom: 22px; }
    .fault-list li {
      display: flex; align-items: center; gap: 12px;
      padding: 12px 14px;
      background: var(--warm-50);
      border: 1px solid var(--warm-200);
      border-radius: var(--radius-md);
      font-size: .9rem; color: var(--ink-2);
    }
    .fault-list li::before {
      content: '▸'; color: var(--rust); font-size: .75rem; flex-shrink: 0;
    }

    .price-table { display: flex; flex-direction: column; gap: 0; border: 1px solid var(--warm-200); border-radius: var(--radius-md); overflow: hidden; margin-bottom: 22px; }
    .price-row {
      display: flex; justify-content: space-between; align-items: center;
      padding: 11px 14px; gap: 12px;
      border-bottom: 1px solid var(--warm-200);
      font-size: .875rem;
    }
    .price-row:last-child { border-bottom: none; }
    .price-row:nth-child(even) { background: var(--warm-50); }
    .price-label { color: var(--ink-2); }
    .price-value { font-weight: 700; color: var(--rust); white-space: nowrap; }

    .card-cta { display: flex; flex-direction: column; gap: 8px; }
    .card-cta .btn { width: 100%; justify-content: center; }

    /* ─── SECTION COMMONS ─── */
    section { padding: 80px 0; }
    section + section { padding-top: 0; }

    .section-label {
      display: inline-flex; align-items: center; gap: 8px;
      font-size: .77rem; font-weight: 700; letter-spacing: .1em; text-transform: uppercase;
      color: var(--rust);
      margin-bottom: 16px;
    }
    .section-label::before { content: ''; display: block; width: 24px; height: 2px; background: var(--rust); }

    h2 {
      font-family: 'DM Serif Display', Georgia, serif;
      font-size: clamp(1.9rem, 3.5vw, 3rem);
      line-height: 1.08;
      letter-spacing: -.025em;
      color: var(--ink);
      margin-bottom: 16px;
    }
    h3 {
      font-family: 'DM Serif Display', Georgia, serif;
      font-size: 1.25rem;
      color: var(--ink);
      margin-bottom: 10px;
    }

    .section-intro { display: grid; grid-template-columns: 1fr 1fr; gap: 40px 80px; align-items: end; margin-bottom: 52px; }
    .section-intro p { color: var(--ink-2); font-size: 1.05rem; line-height: 1.65; }
    .section-intro-link { color: var(--rust); font-weight: 600; display: inline-flex; align-items: center; gap: 6px; margin-top: 8px; font-size: .95rem; }
    .section-intro-link:hover { text-decoration: underline; }

    /* ─── SERVICES GRID ─── */
    .services-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 24px; }
    .service-card {
      background: #fff;
      border: 1px solid var(--warm-200);
      border-radius: var(--radius-lg);
      padding: 32px 28px;
      box-shadow: var(--shadow-sm);
      position: relative;
      overflow: hidden;
      transition: box-shadow .2s, transform .2s;
    }
    .service-card:hover { box-shadow: var(--shadow); transform: translateY(-3px); }
    .service-card::after {
      content: '';
      position: absolute; top: 0; left: 0; right: 0; height: 3px;
      background: var(--rust);
      transform: scaleX(0); transform-origin: left;
      transition: transform .25s;
    }
    .service-card:hover::after { transform: scaleX(1); }

    .service-card__num {
      font-family: 'DM Serif Display', Georgia, serif;
      font-size: 3.5rem;
      color: var(--warm-200);
      line-height: 1;
      position: absolute; right: 24px; top: 20px;
      font-style: italic;
    }
    .service-card__icon {
      width: 52px; height: 52px; border-radius: var(--radius-md);
      background: var(--rust-lt);
      display: flex; align-items: center; justify-content: center;
      margin-bottom: 20px;
    }
    .service-card p { color: var(--muted); font-size: .93rem; line-height: 1.6; margin-bottom: 20px; }
    .text-link {
      color: var(--rust); font-weight: 600; font-size: .88rem;
      display: inline-flex; align-items: center; gap: 5px;
      transition: gap .15s;
    }
    .text-link:hover { gap: 9px; text-decoration: underline; }

    /* ─── PROCESS ─── */
    .process-section { background: var(--iron); color: #fff; padding: 80px 0; }
    .process-section h2 { color: #fff; }
    .process-section .section-label { color: #e8b870; }
    .process-section .section-label::before { background: #e8b870; }

    .process-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 2px; margin-top: 48px; }
    .process-step {
      background: rgba(255,255,255,.04);
      border: 1px solid rgba(255,255,255,.08);
      padding: 32px 24px;
      position: relative;
    }
    .process-step:first-child { border-radius: var(--radius-lg) 0 0 var(--radius-lg); }
    .process-step:last-child  { border-radius: 0 var(--radius-lg) var(--radius-lg) 0; }
    .process-step__n {
      font-family: 'DM Serif Display', Georgia, serif;
      font-size: 2.5rem; font-style: italic;
      color: rgba(201,144,58,.35); line-height: 1;
      margin-bottom: 16px;
    }
    .process-step h3 { font-family: 'DM Sans', sans-serif; color: #fff; font-size: 1rem; font-weight: 700; margin-bottom: 8px; }
    .process-step p { font-size: .875rem; color: rgba(255,255,255,.55); line-height: 1.6; }

    /* ─── ZONE ─── */
    .zone-section { padding: 80px 0; }
    .zone-layout { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; }
    .zone-map-placeholder {
      background: var(--warm-100);
      border: 1.5px solid var(--warm-200);
      border-radius: var(--radius-lg);
      height: 380px;
      display: flex; align-items: center; justify-content: center;
      overflow: hidden; position: relative;
    }
    .zone-map-placeholder svg { opacity: .25; }
    .zone-map-label {
      position: absolute; inset: 0;
      display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 10px;
      color: var(--muted);
    }
    .zone-map-label span { font-size: .83rem; letter-spacing: .08em; text-transform: uppercase; font-weight: 600; }

    .chips { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 22px; }
    .chip {
      background: #fff; border: 1px solid var(--warm-200);
      padding: 6px 14px; border-radius: 99px;
      font-size: .85rem; font-weight: 500; color: var(--ink-2);
      box-shadow: var(--shadow-sm);
      transition: background .15s, border-color .15s, color .15s;
    }
    .chip:hover { background: var(--rust-lt); border-color: var(--rust); color: var(--rust-dk); }

    /* ─── FAQ ─── */
    .faq-section { background: var(--warm-100); padding: 80px 0; }
    .faq-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 40px; }
    .faq-intro { padding-top: 12px; }
    .faq-intro p { color: var(--ink-2); line-height: 1.65; margin-bottom: 24px; }

    .faq-list { display: flex; flex-direction: column; gap: 12px; }
    details {
      background: #fff; border: 1px solid var(--warm-200);
      border-radius: var(--radius-md);
      overflow: hidden;
    }
    details[open] { border-color: var(--rust); box-shadow: 0 0 0 3px rgba(184,76,26,.08); }
    summary {
      padding: 18px 20px; cursor: pointer;
      font-weight: 600; font-size: .95rem; color: var(--ink);
      display: flex; justify-content: space-between; align-items: center;
      list-style: none; user-select: none;
      transition: background .15s;
    }
    summary::-webkit-details-marker { display: none; }
    summary:hover { background: var(--warm-50); }
    summary::after {
      content: '+'; font-size: 1.4rem; font-weight: 300;
      color: var(--rust); flex-shrink: 0; margin-left: 16px;
      transition: transform .2s;
    }
    details[open] summary::after { transform: rotate(45deg); }
    details p {
      padding: 0 20px 18px;
      color: var(--muted); font-size: .92rem; line-height: 1.65;
      border-top: 1px solid var(--warm-100);
      padding-top: 14px;
    }

    /* ─── CTA BAND ─── */
    .cta-section { padding: 80px 0; }
    .cta-band {
      background: var(--rust);
      border-radius: 24px;
      padding: 56px 60px;
      display: grid; grid-template-columns: 1fr auto;
      gap: 40px; align-items: center;
      position: relative; overflow: hidden;
    }
    .cta-band::before {
      content: '';
      position: absolute; right: -80px; top: -80px;
      width: 360px; height: 360px; border-radius: 50%;
      background: rgba(255,255,255,.06);
      pointer-events: none;
    }
    .cta-band::after {
      content: '';
      position: absolute; right: 80px; bottom: -120px;
      width: 240px; height: 240px; border-radius: 50%;
      background: rgba(255,255,255,.04);
      pointer-events: none;
    }
    .cta-band h2 { color: #fff; font-size: clamp(1.7rem, 3vw, 2.4rem); margin-bottom: 10px; }
    .cta-band p { color: rgba(255,255,255,.78); font-size: 1.05rem; max-width: 52ch; }
    .cta-buttons { display: flex; flex-direction: column; gap: 10px; position: relative; z-index: 1; }
    .btn--white {
      background: #fff; color: var(--rust);
      box-shadow: 0 4px 18px rgba(0,0,0,.15);
    }
    .btn--white:hover { background: var(--warm-50); }
    .btn--ghost {
      background: rgba(255,255,255,.15); color: #fff;
      box-shadow: inset 0 0 0 1.5px rgba(255,255,255,.3);
    }
    .btn--ghost:hover { background: rgba(255,255,255,.22); }

    /* ─── FOOTER ─── */
    footer { background: var(--iron); color: rgba(255,255,255,.7); padding: 60px 0 36px; }
    .footer__grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 40px; margin-bottom: 48px; }
    .footer__brand { display: flex; align-items: center; gap: 12px; margin-bottom: 16px; }
    .footer__brand-icon { width: 38px; height: 38px; background: var(--rust); border-radius: 8px; display: flex; align-items: center; justify-content: center; }
    .footer__brand-name { font-family: 'DM Serif Display', Georgia, serif; color: #fff; font-size: 1.05rem; }
    .footer__desc { font-size: .875rem; line-height: 1.65; max-width: 30ch; }
    footer h4 { color: #fff; font-size: .875rem; font-weight: 700; margin-bottom: 14px; letter-spacing: .04em; text-transform: uppercase; }
    .footer__list { list-style: none; display: flex; flex-direction: column; gap: 8px; font-size: .875rem; }
    .footer__list a:hover { color: #fff; }
    .footer__bottom {
      border-top: 1px solid rgba(255,255,255,.1);
      padding-top: 24px;
      display: flex; justify-content: space-between; align-items: center;
      flex-wrap: wrap; gap: 12px;
      font-size: .8rem; color: rgba(255,255,255,.4);
    }

    /* ─── ANIMATIONS ─── */
    @keyframes fadeUp {
      from { opacity: 0; transform: translateY(22px); }
      to   { opacity: 1; transform: translateY(0); }
    }
    .hero__kicker { animation: fadeUp .4s ease both; }
    h1 { animation: fadeUp .5s .08s ease both; }
    .hero__lead { animation: fadeUp .5s .16s ease both; }
    .hero__cta { animation: fadeUp .5s .24s ease both; }
    .trust-row { animation: fadeUp .5s .32s ease both; }
    .hero__card { animation: fadeUp .5s .14s ease both; }

    /* ─── MOBILE ─── */
    @media (max-width: 1024px) {
      .hero__layout { grid-template-columns: 1fr; }
      .hero__card { position: static; }
      .services-grid { grid-template-columns: 1fr 1fr; }
      .section-intro { grid-template-columns: 1fr; gap: 12px; }
      .zone-layout { grid-template-columns: 1fr; }
      .faq-grid { grid-template-columns: 1fr; }
      .footer__grid { grid-template-columns: 1fr 1fr; }
    }
    @media (max-width: 700px) {
      section { padding: 56px 0; }
      .services-grid { grid-template-columns: 1fr; }
      .process-grid { grid-template-columns: 1fr 1fr; }
      .cta-band { grid-template-columns: 1fr; padding: 40px 28px; }
      .nav__links, .topbar__left .topbar__item:not(:first-child):not(:last-child) { display: none; }
      .footer__grid { grid-template-columns: 1fr; }
      .trust-row { gap: 18px; }
    }
