*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; letter-spacing: 0; }
  :root {
    --ink: #201a17;
    --anthracite: #382923;
    --steel: #78655b;
    --silver: #dcc9bc;
    --brushed-steel: #bc8d6a;
    --pale-silver: #f3ebe2;
    --cream: #f8f1e9;
    --white: #ffffff;
    --line: rgba(32, 26, 23, 0.12);
    --muted: rgba(32, 26, 23, 0.68);
    --max: 860px;
    /* silver palette — identique au hero desktop */
    --s-dark:   #4a5258;
    --s-mid:    #909aa4;
    --s-light:  #bcc6cf;
    --s-chrome: #e7edf2;
  }
  html { scroll-behavior: smooth; }
  body {
    font-family: "Avenir Next", Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    background: var(--cream);
    color: var(--ink);
    line-height: 1.5;
    font-size: 16px;
    -webkit-font-smoothing: antialiased;
  }
  a { color: inherit; text-decoration: none; }
  img { max-width: 100%; display: block; }

  /* ── Header ── */
  .site-header {
    position: sticky;
    top: 0;
    z-index: 30;
    background: rgba(248, 241, 233, 0.92);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
    border-bottom: 1px solid var(--line);
    padding: 14px 32px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
  }
  .site-header__logo {
    display: inline-flex;
    align-items: center;
    flex: 0 0 auto;
  }
  .site-header__logo img {
    height: 54px;
    width: auto;
  }
  .site-header__phone {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    background: linear-gradient(135deg, var(--white), var(--s-light));
    color: var(--ink);
    border: 1px solid rgba(23, 24, 25, 0.16);
    box-shadow: 0 10px 22px rgba(32, 26, 23, 0.1);
    font-weight: 750;
    font-size: 0.875rem;
    padding: 10px 20px;
    border-radius: 6px;
    white-space: nowrap;
    transition:
      background 160ms ease,
      border-color 160ms ease,
      box-shadow 160ms ease,
      filter 160ms ease,
      transform 160ms ease;
  }
  .site-header__phone:hover {
    background: linear-gradient(135deg, var(--white), var(--s-chrome) 42%, var(--s-light));
    border-color: rgba(23, 24, 25, 0.24);
    box-shadow: 0 16px 30px rgba(32, 26, 23, 0.16);
    filter: brightness(1.04) saturate(1.08);
    transform: translateY(-2px);
  }
  .site-header__phone:active {
    box-shadow: 0 7px 16px rgba(32, 26, 23, 0.1);
    transform: translateY(0) scale(0.985);
  }
  .site-header__phone:focus-visible {
    outline: 3px solid rgba(188, 141, 106, 0.34);
    outline-offset: 3px;
  }

  /* ── Breadcrumb ── */
  .breadcrumb {
    padding: 14px 32px;
    font-size: 0.78rem;
    color: var(--steel);
    max-width: var(--max);
    margin: 0 auto;
  }
  .breadcrumb a { color: var(--steel); text-decoration: underline; text-underline-offset: 3px; }
  .breadcrumb a:hover { color: var(--ink); }
  .breadcrumb__sep { margin: 0 6px; opacity: 0.35; }

  /* ── Hero ── */
  .hero {
    position: relative;
    min-height: 540px;
    display: flex;
    align-items: flex-end;
    margin: 0 0 18px;
    overflow: hidden;
    background:
      var(--hero-overlay),
      linear-gradient(180deg, rgba(23, 24, 25, 0.16), rgba(23, 24, 25, 0.48)),
      var(--hero-image);
    background-position: center center, center center, var(--hero-position);
    background-size: cover, cover, cover;
    background-repeat: no-repeat;
  }
  .hero::after {
    content: "";
    position: absolute;
    inset: auto 0 0;
    height: 120px;
    background: linear-gradient(180deg, rgba(248, 241, 233, 0), var(--cream));
    pointer-events: none;
  }
  .hero__inner {
    position: relative;
    z-index: 1;
    width: min(100%, 1120px);
    margin: 0 auto;
    padding: 108px 32px 82px;
  }
  .hero__copy {
    width: min(100%, 700px);
    padding: 30px 30px 32px;
    border-radius: 28px;
    background:
      linear-gradient(180deg, rgba(255, 255, 255, 0.16), rgba(255, 255, 255, 0.08)),
      linear-gradient(180deg, rgba(23, 24, 25, 0.42), rgba(23, 24, 25, 0.28));
    border: 1px solid rgba(255, 255, 255, 0.18);
    box-shadow: 0 28px 70px rgba(23, 24, 25, 0.24);
    backdrop-filter: blur(8px);
  }
  .kicker {
    display: block;
    margin: 0 0 14px;
    color: rgba(255, 255, 255, 0.78);
    font-size: 13px;
    font-weight: 850;
    text-transform: uppercase;
    letter-spacing: 0.08em;
  }
  .hero h1 {
    font-size: clamp(2.4rem, 5vw, 4.3rem);
    font-weight: 820;
    line-height: 0.98;
    letter-spacing: -0.03em;
    margin-bottom: 18px;
    color: var(--white);
    text-wrap: balance;
  }
  .hero__lead {
    font-size: 1.08rem;
    color: rgba(255, 255, 255, 0.88);
    max-width: 560px;
    margin-bottom: 28px;
    line-height: 1.6;
  }
  .hero__actions { display: flex; flex-wrap: wrap; gap: 12px; }

  /* ── Buttons ── */
  .btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    min-height: 50px;
    padding: 0 24px;
    border-radius: 6px;
    font-weight: 850;
    font-size: 0.9rem;
    cursor: pointer;
    border: 1px solid transparent;
    box-shadow: 0 12px 26px rgba(32, 26, 23, 0.08);
    transition:
      background 170ms ease,
      border-color 170ms ease,
      box-shadow 170ms ease,
      filter 170ms ease,
      transform 170ms ease;
  }
  .btn:hover {
    box-shadow: 0 22px 40px rgba(32, 26, 23, 0.15);
    filter: brightness(1.04) saturate(1.08);
    transform: translateY(-3px);
  }
  .btn:active {
    box-shadow: 0 8px 18px rgba(32, 26, 23, 0.11);
    transform: translateY(0) scale(0.985);
  }
  .btn:focus-visible {
    outline: 3px solid rgba(188, 141, 106, 0.34);
    outline-offset: 3px;
  }
  .btn--primary {
    background: linear-gradient(135deg, var(--white), var(--s-light));
    color: var(--ink);
    border: 1px solid rgba(23, 24, 25, 0.16);
  }
  .btn--primary:hover {
    background: linear-gradient(135deg, var(--white), var(--s-chrome) 42%, var(--s-light));
    border-color: rgba(23, 24, 25, 0.24);
  }
  .btn--secondary {
    background: rgba(255, 255, 255, 0.72);
    color: var(--ink);
    border-color: var(--line);
  }
  .btn--secondary:hover {
    background: rgba(255, 255, 255, 0.94);
    border-color: rgba(32, 26, 23, 0.2);
  }

  /* ── Sections ── */
  .section {
    padding: 64px 32px;
    max-width: var(--max);
    margin: 0 auto;
  }
  .section--contrast {
    background: linear-gradient(180deg, rgba(255, 252, 248, 0.94), rgba(244, 233, 223, 0.86));
    border: 1px solid rgba(32, 26, 23, 0.08);
    border-radius: 28px;
    margin: 0 16px;
  }
  .section--contrast .section { background: none; }
  .section h2 {
    font-size: clamp(1.25rem, 3.5vw, 1.75rem);
    font-weight: 780;
    letter-spacing: -0.02em;
    margin-bottom: 10px;
    line-height: 1.2;
    color: var(--ink);
  }
  .section__intro {
    color: var(--muted);
    margin-bottom: 36px;
    max-width: 520px;
    line-height: 1.55;
    font-size: 0.975rem;
  }

  /* ── Service cards ── */
  .services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(230px, 1fr));
    gap: 14px;
    margin-top: 32px;
  }
  .service-card {
    background: linear-gradient(135deg, rgba(255,255,255,0.9), rgba(248,241,233,0.7));
    border: 1px solid rgba(32, 26, 23, 0.12);
    border-radius: 14px;
    padding: 24px 22px;
  }
  .service-card__icon { font-size: 1.4rem; margin-bottom: 12px; }
  .service-card h3 {
    font-size: 0.95rem;
    font-weight: 720;
    margin-bottom: 8px;
    color: var(--ink);
  }
  .service-card p { font-size: 0.85rem; color: var(--muted); line-height: 1.55; }
  .service-card--highlight {
    background: linear-gradient(135deg, rgba(188,198,207,0.18), rgba(231,237,242,0.32));
    border-color: var(--s-light);
  }
  .service-card--highlight h3 { color: var(--s-dark); }

  /* ── About ── */
  .about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 56px;
    align-items: start;
  }
  @media (max-width: 640px) { .about-grid { grid-template-columns: 1fr; gap: 32px; } }
  .about-points {
    list-style: none;
    margin-top: 20px;
    display: flex;
    flex-direction: column;
    gap: 10px;
  }
  .about-points li {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    font-size: 0.925rem;
    color: var(--muted);
  }
  .about-points li::before {
    content: '→';
    color: var(--s-dark);
    flex-shrink: 0;
    font-weight: 700;
  }
  .rating-badge {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    background: var(--white);
    border: 1px solid var(--line);
    border-radius: 10px;
    padding: 12px 18px;
    margin-top: 24px;
    box-shadow: 0 4px 16px rgba(32,26,23,0.06);
  }
  .rating-badge__stars { color: #d97706; font-size: 1rem; letter-spacing: 2px; }
  .rating-badge__score { font-weight: 780; font-size: 1.05rem; color: var(--ink); }
  .rating-badge__text { font-size: 0.85rem; color: var(--muted); }

  /* ── Tag cloud ── */
  .tag-cloud { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 18px; }
  .tag {
    background: var(--white);
    border: 1px solid var(--line);
    border-radius: 100px;
    padding: 5px 14px;
    font-size: 0.8rem;
    color: var(--steel);
  }

  /* ── CTA block ── */
  .cta-block {
    background: linear-gradient(135deg, #1c2226 0%, #3a4448 50%, var(--s-dark) 100%);
    border-radius: 24px;
    padding: 52px 44px;
    text-align: center;
    color: var(--white);
    box-shadow: 0 28px 64px rgba(32,26,23,0.18);
  }
  .cta-block h2 { color: var(--white); margin-bottom: 12px; }
  .cta-block p {
    color: rgba(255,255,255,0.72);
    margin-bottom: 28px;
    max-width: 420px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.55;
  }
  .cta-block__phone {
    display: block;
    font-size: 1.6rem;
    font-weight: 800;
    color: var(--white);
    letter-spacing: 0.02em;
    margin-bottom: 24px;
    transition: color 160ms ease, text-shadow 160ms ease, transform 160ms ease;
  }
  .cta-block__phone:hover {
    color: var(--s-chrome);
    text-shadow: 0 10px 24px rgba(255,255,255,0.22);
    transform: translateY(-2px);
  }
  .cta-block__actions { display: flex; flex-wrap: wrap; justify-content: center; gap: 12px; }
  .cta-block .btn--primary {
    background: linear-gradient(135deg, var(--white), var(--s-chrome));
    color: var(--ink);
    border-color: rgba(255,255,255,0.6);
  }
  .cta-block .btn--secondary {
    background: transparent;
    color: rgba(255,255,255,0.88);
    border-color: rgba(255,255,255,0.32);
  }
  .cta-block .btn--secondary:hover {
    background: rgba(255,255,255,0.12);
    border-color: rgba(255,255,255,0.52);
  }

  /* ── Floating contact modal ── */
  .contact-modal[hidden] { display: none; }
  .contact-modal {
    position: fixed;
    inset: 0;
    z-index: 80;
    display: grid;
    place-items: center;
    padding: 24px;
  }
  .contact-modal.is-open { display: grid; }
  .contact-modal__backdrop {
    position: absolute;
    inset: 0;
    border: 0;
    background: rgba(32, 26, 23, 0.48);
    backdrop-filter: blur(8px);
    cursor: pointer;
  }
  .contact-modal__panel {
    position: relative;
    z-index: 1;
    width: min(100%, 660px);
    max-height: min(88vh, 860px);
    overflow: auto;
    border-radius: 28px;
    background:
      linear-gradient(180deg, rgba(255, 255, 255, 0.97), rgba(248, 241, 233, 0.96)),
      linear-gradient(180deg, rgba(255, 255, 255, 0.28), rgba(32, 26, 23, 0.02));
    border: 1px solid rgba(32, 26, 23, 0.08);
    box-shadow: 0 34px 90px rgba(32, 26, 23, 0.28);
  }
  .contact-modal__close {
    position: absolute;
    top: 16px;
    right: 16px;
    width: 42px;
    height: 42px;
    border: 1px solid rgba(32, 26, 23, 0.1);
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.86);
    color: var(--ink);
    font: inherit;
    font-size: 1.35rem;
    line-height: 1;
    cursor: pointer;
    transition: transform 160ms ease, box-shadow 160ms ease, background 160ms ease;
  }
  .contact-modal__close:hover {
    background: var(--white);
    box-shadow: 0 14px 26px rgba(32, 26, 23, 0.14);
    transform: translateY(-2px);
  }
  .contact-modal__content {
    padding: 34px;
  }
  .contact-modal__kicker {
    margin: 0 0 10px;
    color: #6e7880;
    font-size: 0.78rem;
    font-weight: 850;
    letter-spacing: 0.08em;
    text-transform: uppercase;
  }
  .contact-modal__title {
    margin: 0;
    color: var(--ink);
    font-size: clamp(1.6rem, 4vw, 2.2rem);
    line-height: 1.08;
  }
  .contact-modal__lead {
    margin: 16px 0 0;
    color: var(--muted);
    font-size: 1rem;
    line-height: 1.6;
  }
  .contact-modal__actions {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 22px;
  }
  .contact-modal__mail {
    display: flex;
    flex-direction: column;
    gap: 4px;
    margin-top: 18px;
    padding: 14px 16px;
    background: rgba(32, 26, 23, 0.03);
    border: 1.5px dashed rgba(32, 26, 23, 0.18);
    border-radius: 16px;
    transition: border-color 160ms ease, background 160ms ease, transform 160ms ease;
  }
  .contact-modal__mail:hover {
    background: rgba(32, 26, 23, 0.05);
    border-color: rgba(32, 26, 23, 0.3);
    transform: translateY(-1px);
  }
  .contact-modal__mail strong {
    font-size: 0.92rem;
    color: var(--ink);
  }
  .contact-modal__mail span {
    font-size: 0.8rem;
    color: var(--muted);
  }
  .contact-form {
    display: grid;
    gap: 14px;
    margin-top: 24px;
  }
  .contact-form label {
    display: grid;
    gap: 8px;
    color: var(--ink);
    font-size: 0.88rem;
    font-weight: 740;
  }
  .contact-form input,
  .contact-form textarea {
    width: 100%;
    padding: 14px 16px;
    color: var(--ink);
    background: rgba(255, 255, 255, 0.82);
    border: 1px solid rgba(32, 26, 23, 0.12);
    border-radius: 16px;
    font: inherit;
    outline: none;
    transition: border-color 160ms ease, box-shadow 160ms ease, background 160ms ease;
  }
  .contact-form input:focus,
  .contact-form textarea:focus {
    background: var(--white);
    border-color: rgba(32, 26, 23, 0.24);
    box-shadow: 0 0 0 4px rgba(188, 141, 106, 0.16);
  }
  .contact-form textarea {
    min-height: 136px;
    resize: vertical;
  }
  .contact-form__submit {
    width: 100%;
  }
  .contact-form__submit:disabled {
    cursor: wait;
    opacity: 0.7;
    filter: none;
    transform: none;
  }
  .contact-form__error {
    color: #b93b28;
    font-size: 0.85rem;
    font-weight: 700;
  }
  .contact-form__note {
    color: var(--muted);
    font-size: 0.8rem;
    line-height: 1.5;
  }
  .contact-form__success {
    display: grid;
    gap: 12px;
    justify-items: center;
    padding: 22px 8px 8px;
    text-align: center;
  }
  .contact-form__success-badge {
    width: 56px;
    height: 56px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 999px;
    background: linear-gradient(135deg, var(--white), var(--s-light));
    border: 1px solid rgba(32, 26, 23, 0.12);
    box-shadow: 0 14px 30px rgba(32, 26, 23, 0.1);
    color: var(--ink);
    font-size: 1.35rem;
    font-weight: 800;
  }
  .contact-form__success p {
    color: var(--ink);
    font-size: 1rem;
    font-weight: 760;
  }

  /* ── Footer ── */
  .site-footer {
    margin-top: 80px;
    background:
      radial-gradient(circle at top right, rgba(255,255,255,0.06), transparent 20%),
      linear-gradient(135deg, #242728 0%, #42484a 100%);
    color: rgba(255,255,255,0.6);
    padding: 40px 32px 32px;
    text-align: center;
    font-size: 11px;
    font-weight: 600;
  }
  .site-footer a { color: rgba(255,255,255,0.72); text-decoration: none; }
  .site-footer a:hover { color: var(--white); text-decoration: underline; text-underline-offset: 3px; }
  .site-footer__links { margin-top: 10px; }
  .site-footer__copy { margin-top: 32px; color: rgba(255,255,255,0.5); }

  /* ── Footer nav (maillage interne) ── */
  .footer-nav {
    display: grid;
    grid-template-columns: 1.5fr repeat(5, 1fr);
    gap: 28px 22px;
    max-width: 1180px;
    margin: 0 auto;
    text-align: left;
    padding-bottom: 8px;
  }
  @media (max-width: 1080px) { .footer-nav { grid-template-columns: 1fr 1fr 1fr; } }
  .footer-col h3 {
    font-size: 12px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    color: rgba(255,255,255,0.9);
    margin-bottom: 12px;
  }
  .footer-col ul { list-style: none; display: flex; flex-direction: column; gap: 7px; }
  .footer-col li { font-size: 12px; font-weight: 500; line-height: 1.4; }
  .footer-col--brand img { height: 40px; width: auto; margin-bottom: 14px; }
  .footer-col--brand p { font-size: 12px; line-height: 1.5; margin-bottom: 8px; max-width: 260px; }
  .footer-brand__name { font-weight: 800; color: rgba(255,255,255,0.92); }
  @media (max-width: 860px) {
    .footer-nav { grid-template-columns: 1fr 1fr; }
    .footer-col--brand { grid-column: 1 / -1; }
  }
  @media (max-width: 460px) {
    .footer-nav { grid-template-columns: 1fr; gap: 24px; }
  }

  @media (max-width: 520px) {
    .hero {
      min-height: 460px;
      margin-bottom: 12px;
    }
    .hero__inner { padding: 92px 20px 62px; }
    .hero__copy {
      padding: 24px 20px 24px;
      border-radius: 22px;
    }
    .hero h1 { font-size: clamp(2rem, 10vw, 2.9rem); }
    .hero__lead { font-size: 0.98rem; }
    .section { padding: 48px 20px; }
    .cta-block { padding: 36px 22px; }
    .site-header { padding: 12px 20px; }
    .site-header__logo img { height: 46px; }
    .section--contrast { margin: 0 8px; }
    .contact-modal { padding: 14px; }
    .contact-modal__content { padding: 24px 20px 22px; }
    .contact-modal__close { top: 12px; right: 12px; }
  }

  /* ── Contenu long (prose) ── */
  .prose { max-width: var(--max); }
  .prose p { color: var(--muted); line-height: 1.7; margin-bottom: 16px; font-size: 1rem; }
  .prose h2 { margin-top: 8px; }
  .prose h3 {
    font-size: 1.05rem; font-weight: 760; color: var(--ink);
    margin: 28px 0 10px;
  }
  .content-links { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 8px; }
  .content-links a {
    background: var(--white); border: 1px solid var(--line); border-radius: 100px;
    padding: 6px 15px; font-size: 0.82rem; color: var(--s-dark); font-weight: 650;
    transition: border-color 140ms ease, transform 140ms ease, box-shadow 140ms ease;
  }
  .content-links a:hover { border-color: var(--s-mid); transform: translateY(-1px); box-shadow: 0 6px 16px rgba(32,26,23,0.08); }

  /* ── Étapes (process) ── */
  .steps { display: grid; gap: 14px; margin-top: 24px; counter-reset: step; }
  .step {
    position: relative; background: var(--white); border: 1px solid var(--line);
    border-radius: 14px; padding: 20px 22px 20px 62px;
  }
  .step::before {
    counter-increment: step; content: counter(step);
    position: absolute; left: 18px; top: 18px; width: 30px; height: 30px;
    display: grid; place-items: center; border-radius: 50%;
    background: linear-gradient(135deg, var(--s-dark), var(--s-mid));
    color: var(--white); font-weight: 800; font-size: 0.9rem;
  }
  .step h3 { font-size: 0.98rem; font-weight: 740; margin-bottom: 5px; color: var(--ink); }
  .step p { font-size: 0.9rem; color: var(--muted); line-height: 1.55; margin: 0; }

  /* ── Cartes info (délais / prix) ── */
  .info-cards { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; margin-top: 24px; }
  @media (max-width: 640px) { .info-cards { grid-template-columns: 1fr; } }
  .info-card {
    background: linear-gradient(135deg, rgba(188,198,207,0.16), rgba(231,237,242,0.28));
    border: 1px solid var(--s-light); border-radius: 16px; padding: 22px 24px;
  }
  .info-card h3 { font-size: 1rem; font-weight: 760; margin-bottom: 8px; color: var(--s-dark); }
  .info-card p { font-size: 0.92rem; color: var(--muted); line-height: 1.6; margin: 0; }
  .info-card__note { display:block; margin-top: 10px; font-size: 0.78rem; color: var(--steel); }

  /* ── FAQ ── */
  .faq { margin-top: 24px; display: grid; gap: 10px; }
  .faq__item {
    background: var(--white); border: 1px solid var(--line); border-radius: 12px;
    padding: 0 20px;
  }
  .faq__item summary {
    list-style: none; cursor: pointer; padding: 16px 0; font-weight: 720;
    font-size: 0.95rem; color: var(--ink); display: flex; justify-content: space-between;
    gap: 14px; align-items: center;
  }
  .faq__item summary::-webkit-details-marker { display: none; }
  .faq__item summary::after { content: "+"; color: var(--s-dark); font-size: 1.3rem; font-weight: 700; }
  .faq__item[open] summary::after { content: "−"; }
  .faq__item p { padding: 0 0 18px; margin: 0; color: var(--muted); font-size: 0.92rem; line-height: 1.65; }

  /* ── Réalisations (avant/après) ── */
  .realisations-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(300px, 1fr)); gap: 22px; margin-top: 32px; }
  .real-card { background: var(--white); border: 1px solid var(--line); border-radius: 18px; overflow: hidden; }
  .real-card__duo { display: grid; grid-template-columns: 1fr 1fr; gap: 2px; position: relative; }
  .real-card__duo figure { margin: 0; position: relative; }
  .real-card__duo img { aspect-ratio: 4/3; object-fit: cover; width: 100%; }
  .real-card__badge {
    position: absolute; top: 8px; left: 8px; font-size: 0.68rem; font-weight: 800;
    text-transform: uppercase; letter-spacing: 0.04em; padding: 3px 9px; border-radius: 100px;
    background: rgba(32,26,23,0.72); color: var(--white);
  }
  .real-card__badge--after { background: var(--s-dark); }
  .real-card__body { padding: 18px 20px 20px; }
  .real-card__body h3 { font-size: 1rem; font-weight: 760; margin-bottom: 4px; }
  .real-card__body p { font-size: 0.85rem; color: var(--muted); margin: 0; }

  /* ── À propos (portrait) ── */
  .about-hero { display: grid; grid-template-columns: 300px 1fr; gap: 40px; align-items: start; }
  @media (max-width: 680px) { .about-hero { grid-template-columns: 1fr; gap: 24px; } }
  .about-hero__photo { border-radius: 20px; width: 100%; aspect-ratio: 3/4; object-fit: cover; box-shadow: 0 20px 50px rgba(32,26,23,0.16); }

  /* ── Carte zone d'intervention ── */
  .zone-map { width: 100%; max-width: 720px; margin: 24px auto 0; }
  .zone-map svg { width: 100%; height: auto; background: linear-gradient(160deg, #eef3f6, #dde7ec); border: 1px solid var(--s-light); border-radius: 20px; }
  .zone-dot { fill: var(--s-dark); transition: fill 140ms ease; }
  .zone-dot--hub { fill: var(--brushed-steel); }
  .zone-point:hover .zone-dot { fill: var(--brushed-steel); }
  .zone-label { font-size: 13px; font-weight: 650; fill: var(--anthracite); }
  .zone-links { display: grid; grid-template-columns: repeat(auto-fill, minmax(200px, 1fr)); gap: 10px; margin-top: 32px; }
  .zone-link {
    display: block; background: var(--white); border: 1px solid var(--line); border-radius: 12px;
    padding: 14px 16px; transition: border-color 140ms ease, transform 140ms ease, box-shadow 140ms ease;
  }
  .zone-link:hover { border-color: var(--s-mid); transform: translateY(-2px); box-shadow: 0 10px 24px rgba(32,26,23,0.1); }
  .zone-link strong { display: block; font-size: 0.95rem; color: var(--ink); }
  .zone-link span { font-size: 0.8rem; color: var(--muted); }

  /* ── Article guide ── */
  .article { max-width: 720px; margin: 0 auto; }
  .article__meta { color: var(--steel); font-size: 0.82rem; margin-bottom: 24px; }
  .article h2 { font-size: 1.3rem; margin: 34px 0 12px; }
  .article p { color: var(--anthracite); line-height: 1.75; margin-bottom: 16px; }
  .guide-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(260px, 1fr)); gap: 16px; margin-top: 28px; }
  .guide-card { background: var(--white); border: 1px solid var(--line); border-radius: 16px; padding: 22px; transition: transform 140ms ease, box-shadow 140ms ease; }
  .guide-card:hover { transform: translateY(-3px); box-shadow: 0 16px 34px rgba(32,26,23,0.1); }
  .guide-card h3 { font-size: 1.02rem; font-weight: 760; margin-bottom: 8px; }
  .guide-card p { font-size: 0.88rem; color: var(--muted); line-height: 1.55; }

  @media (prefers-reduced-motion: reduce) {
    .site-header__phone,
    .btn,
    .cta-block__phone,
    .contact-modal__close,
    .contact-modal__mail {
      transition: none;
    }

    .site-header__phone:hover,
    .btn:hover,
    .cta-block__phone:hover,
    .contact-modal__close:hover,
    .contact-modal__mail:hover {
      transform: none;
    }
  }