/* === /catalogue (was /produits) === */
  .filters-wrap {
    position: sticky; top: 76px; z-index: 50;
    background: rgba(246,244,239,0.92);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid var(--line);
    padding: 24px 0;
  }
  .filter-row { display: flex; gap: 24px; align-items: center; flex-wrap: wrap; }
  .filter-group { display: flex; align-items: center; gap: 8px; flex-wrap: wrap; }
  .filter-label {
    font-size: 11px; letter-spacing: 0.18em; text-transform: uppercase;
    color: var(--texte-mute); font-weight: 500; margin-right: 4px;
  }
  .filter-pill {
    padding: 8px 14px;
    border: 1px solid var(--line-strong);
    border-radius: 999px;
    background: transparent;
    font: inherit; font-size: 13px;
    color: var(--encre); cursor: pointer;
    transition: all .25s var(--ease);
    white-space: nowrap;
    flex-shrink: 0;
  }
  .filter-pill:hover { background: var(--ivoire-2); }
  .filter-pill.active { background: var(--encre); color: var(--ivoire-2); border-color: var(--encre); }

  /* Mobile: stack filter groups vertically + tighter spacing */
  @media (max-width: 767px) {
    .filters-wrap { padding: 16px 0; top: 64px; }
    .filter-row { gap: 14px; flex-direction: column; align-items: stretch; }
    .filter-group { gap: 6px; }
    .filter-label { width: 100%; margin-right: 0; margin-bottom: 4px; }
    .filter-pill { font-size: 12.5px; padding: 7px 12px; }
  }

  .category-block { padding: 80px 0 40px; }
  .category-block + .category-block { border-top: 1px solid var(--line); }
  .cat-head {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 64px;
    margin-bottom: 48px;
    align-items: end;
  }
  .cat-head h2 { font-size: clamp(36px, 4.5vw, 56px); }
  .cat-head p { color: var(--texte-mute); }
  @media (max-width: 800px) { .cat-head { grid-template-columns: 1fr; gap: 16px; } }

  .product-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
  }
  @media (max-width: 1100px) { .product-grid { grid-template-columns: repeat(3, 1fr); } }
  @media (max-width: 800px) { .product-grid { grid-template-columns: repeat(2, 1fr); gap: 14px; } }

  .product {
    background: var(--ivoire-2);
    border: 1px solid var(--line);
    border-radius: 14px;
    overflow: hidden;
    transition: transform .4s var(--ease), box-shadow .4s var(--ease), border-color .3s ease;
    position: relative;
    cursor: pointer;
  }
  .product:hover {
    transform: translateY(-3px);
    box-shadow: 0 18px 40px -16px rgba(26,29,26,0.18);
    border-color: var(--line-strong);
  }
  .product .marble {
    aspect-ratio: 1/1;
    width: 100%;
  }
  .product-info { padding: 18px 18px 20px; }
  .product-name { font-family: var(--ff-display); font-size: 18px; font-weight: 400; }
  .product-meta {
    margin-top: 6px;
    font-size: 12px;
    color: var(--texte-mute);
    display: flex; gap: 6px; align-items: center;
  }
  .product-meta .dot { width:3px; height:3px; background: var(--texte-light); border-radius:50%; }
  .product-add {
    position: absolute;
    top: 12px; right: 12px;
    width: 36px; height: 36px;
    border-radius: 50%;
    background: rgba(255,255,255,0.92);
    backdrop-filter: blur(8px);
    display: flex; align-items: center; justify-content: center;
    border: 1px solid var(--line);
    cursor: pointer;
    z-index: 2;
    transition: all .25s var(--ease);
    color: var(--encre);
  }
  .product-add:hover { background: var(--encre); color: var(--ivoire-2); border-color: var(--encre); }
  .product.selected { border-color: var(--sauge); box-shadow: 0 0 0 2px var(--sauge) inset; }
  .product.selected .product-add { background: var(--sauge); color: var(--ivoire-2); border-color: var(--sauge); }

  /* Selection cart */
  .cart-bar {
    position: fixed;
    bottom: 24px;
    left: 50%;
    transform: translateX(-50%) translateY(140%);
    background: var(--encre);
    color: var(--ivoire-2);
    padding: 16px 20px;
    border-radius: 999px;
    box-shadow: 0 24px 60px rgba(0,0,0,0.3);
    display: flex; align-items: center; gap: 18px;
    z-index: 95;
    transition: transform .5s var(--ease);
  }
  .cart-bar.show { transform: translateX(-50%) translateY(0); }
  .cart-bar .count {
    width: 28px; height: 28px;
    border-radius: 50%;
    background: var(--sauge);
    display: flex; align-items: center; justify-content: center;
    font-size: 13px; font-weight: 500;
  }
  .cart-bar span.lbl { font-size: 14px; }
  .cart-bar a {
    background: var(--ivoire-2);
    color: var(--encre);
    padding: 10px 18px;
    border-radius: 999px;
    font-size: 13px;
    font-weight: 500;
    transition: background .2s;
  }
  .cart-bar a:hover { background: white; }
  .cart-bar button.clear {
    background: none; border: none; color: rgba(246,244,239,0.6);
    font-size: 12px; cursor: pointer; padding: 4px 8px;
    font-family: inherit;
  }
  .cart-bar button.clear:hover { color: var(--ivoire-2); }

  /* On mobile the pill can't fit 4 elements — switch to a full-width
     bottom sheet pill with the CTA on its own row. */
  @media (max-width: 600px) {
    .cart-bar {
      left: 12px;
      right: 12px;
      bottom: 16px;
      transform: translateY(140%);
      flex-wrap: wrap;
      align-items: center;
      gap: 8px 12px;
      padding: 12px 14px;
      border-radius: 22px;
      max-width: none;
      box-sizing: border-box;
    }
    .cart-bar.show { transform: translateY(0); }
    .cart-bar .count { flex-shrink: 0; }
    .cart-bar span.lbl {
      flex: 1 1 auto;
      min-width: 0;
      font-size: 13.5px;
      line-height: 1.25;
    }
    .cart-bar button.clear {
      flex-shrink: 0;
      padding: 4px 6px;
    }
    .cart-bar a {
      flex: 1 1 100%;
      text-align: center;
      padding: 11px 18px;
      font-size: 13.5px;
    }
  }

  /* Hero usages */
  .usages {
    display: grid;
    grid-template-columns: repeat(8, 1fr);
    gap: 12px;
    margin-top: 56px;
  }
  .usage {
    background: var(--ivoire-2);
    border: 1px solid var(--line);
    padding: 14px 16px;
    border-radius: 12px;
    font-size: 13px;
    transition: all .25s ease;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    line-height: 1;
  }
  .usage:hover { background: white; border-color: var(--line-strong); }
  .usage svg { width: 20px; height: 20px; color: var(--sauge); flex-shrink: 0; }
  @media (max-width: 1000px) { .usages { grid-template-columns: repeat(4, 1fr); } }
  @media (max-width: 600px) { .usages { grid-template-columns: repeat(2, 1fr); } }

/* === /projets === */
  .filters-strip {
    border-top: 1px solid var(--line);
    border-bottom: 1px solid var(--line);
    padding: 24px 0;
    background: var(--ivoire-2);
    position: sticky; top: 76px; z-index: 50;
    backdrop-filter: blur(10px);
  }
  .filters-strip .row { display: flex; gap: 8px; flex-wrap: wrap; }

  .projects-grid {
    display: grid;
    grid-template-columns: repeat(12, 1fr);
    gap: 24px;
    padding: 80px 0;
  }
  .pj { position: relative; border-radius: 16px; overflow: hidden; }
  .pj .marble { width: 100%; height: 100%; transition: transform 1s var(--ease); }
  .pj:hover .marble { transform: scale(1.05); }
  .pj::after {
    content:''; position:absolute; inset:0;
    background: linear-gradient(180deg, transparent 35%, rgba(0,0,0,0.72));
  }
  .pj-info {
    position: absolute; left: 28px; right: 28px; bottom: 28px;
    color: var(--ivoire-2); z-index: 2;
  }
  .pj-info .meta { font-size: 11px; letter-spacing: 0.18em; text-transform: uppercase; opacity: 0.85; display:flex; gap:12px; margin-bottom: 8px; }
  .pj-info h4 { font-family: var(--ff-display); font-size: clamp(20px, 1.8vw, 28px); font-weight: 400; color: var(--ivoire-2); margin:0; line-height: 1.2; }
  .pj-info .pj-desc {
    font-family: var(--ff-body);
    font-size: 13.5px;
    line-height: 1.55;
    color: rgba(244,241,234,0.82);
    margin: 10px 0 0;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
  }

  /* layout sizes */
  .pj-l { grid-column: span 8; aspect-ratio: 16/10; }
  .pj-m { grid-column: span 4; aspect-ratio: 4/5; }
  .pj-s { grid-column: span 4; aspect-ratio: 1/1; }
  .pj-w { grid-column: span 6; aspect-ratio: 16/10; }
  @media (max-width: 900px) {
    .pj-l, .pj-m, .pj-s, .pj-w { grid-column: span 6; aspect-ratio: 4/5; }
  }
  @media (max-width: 600px) {
    .pj-l, .pj-m, .pj-s, .pj-w { grid-column: span 12; aspect-ratio: 4/5; }
  }

  /* Modal */
  .modal {
    position: fixed; inset: 0;
    background: rgba(20,22,20,0.85);
    backdrop-filter: blur(8px);
    z-index: 200;
    display: none;
    align-items: center; justify-content: center;
    padding: 24px;
    opacity: 0;
    transition: opacity .3s ease;
  }
  .modal.open { display: flex; opacity: 1; }
  .modal-content {
    background: var(--ivoire);
    width: 100%;
    max-width: 1100px;
    max-height: 92vh;
    border-radius: 16px;
    overflow: hidden;
    display: grid;
    grid-template-columns: 1.4fr 1fr;
    transform: translateY(20px);
    transition: transform .4s var(--ease);
  }
  .modal.open .modal-content { transform: translateY(0); }
  .modal-visual { position: relative; min-height: 480px; overflow: hidden; }
  .modal-visual .marble { position: absolute; inset: 0; }
  .modal-thumbs {
    position: absolute; left: 16px; bottom: 16px;
    display: flex; gap: 8px;
  }
  .modal-thumbs button {
    width: 56px; height: 56px;
    border-radius: 8px;
    border: 2px solid rgba(255,255,255,0.3);
    overflow: hidden;
    cursor: pointer;
    background: none;
    padding: 0;
    transition: border-color .25s ease;
  }
  .modal-thumbs button.active { border-color: var(--ivoire-2); }
  .modal-thumbs button .marble { position: relative; width: 100%; height: 100%; }
  .modal-body {
    padding: 48px 40px;
    overflow-y: auto;
    display: flex; flex-direction: column;
  }
  .modal-body h2 { font-size: 36px; margin: 16px 0 20px; }
  .modal-body .meta-row { display:flex; gap: 12px; align-items:center; font-size: 12px; color: var(--texte-mute); letter-spacing: 0.16em; text-transform: uppercase; }
  .modal-body .meta-row .dot { width:3px; height:3px; background:var(--texte-light); border-radius:50%; }
  .modal-body p { color: var(--texte-mute); line-height: 1.7; margin: 12px 0; }
  .modal-body .btns { margin-top: auto; padding-top: 32px; display: flex; gap: 12px; flex-wrap: wrap; }
  .modal-close {
    position: absolute; top: 16px; right: 16px;
    width: 40px; height: 40px; border-radius: 50%;
    background: rgba(255,255,255,0.95);
    border: none; cursor: pointer;
    display: flex; align-items: center; justify-content: center;
    z-index: 3;
  }
  @media (max-width: 800px) {
    .modal-content { grid-template-columns: 1fr; max-height: 95vh; }
    .modal-visual { min-height: 280px; aspect-ratio: 4/3; }
    .modal-body { padding: 28px 24px; }
  }

  /* Projets page filter pills (slightly larger) */
  .filters-strip .filter-pill {
    padding: 10px 18px;
    white-space: nowrap;
    flex-shrink: 0;
  }
  .filters-strip .filter-pill:hover { background: var(--ivoire); }
  .filters-strip .filter-pill.active { background: var(--encre); color: var(--ivoire-2); border-color: var(--encre); }

/* === /a-propos === */
  .about-hero {
    padding: 160px 0 110px;
    position: relative;
    overflow: hidden;
    min-height: 70vh;
    display: flex;
    align-items: center;
    background: var(--ivoire);
  }
  .about-hero::before {
    content: '';
    position: absolute; inset: 0; z-index: 0;
    background-image: url('/landing/hero-about.png');
    background-size: cover;
    background-position: right center;
    background-repeat: no-repeat;
  }
  .about-hero::after {
    content: '';
    position: absolute; inset: 0; z-index: 1;
    background:
      linear-gradient(90deg, var(--ivoire) 0%, rgba(246,244,239,0.92) 28%, rgba(246,244,239,0.5) 55%, rgba(246,244,239,0.1) 80%, transparent 100%),
      linear-gradient(180deg, transparent 60%, rgba(246,244,239,0.55) 100%);
  }
  .about-hero > .container { position: relative; z-index: 2; width: 100%; }
  @media (max-width: 900px) {
    .about-hero { min-height: auto; padding: 130px 0 70px; }
    .about-hero::before { opacity: 0.45; background-position: center; }
    .about-hero::after {
      background: linear-gradient(180deg, var(--ivoire) 0%, rgba(246,244,239,0.85) 50%, var(--ivoire) 100%);
    }
  }
  .about-hero h1 { max-width: 16ch; }
  .about-hero h1 em { font-style: italic; font-weight: 300; color: var(--sauge); }
  .about-hero .grid { display: grid; grid-template-columns: 1.4fr 1fr; gap: 80px; align-items: end; margin-top: 64px; }
  .about-hero .grid p { color: var(--texte-mute); font-size: 17px; line-height: 1.7; }
  @media (max-width: 900px) { .about-hero .grid { grid-template-columns: 1fr; gap: 32px; } }

  .founder {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 80px;
    align-items: center;
  }
  .founder-visual {
    aspect-ratio: 4/5;
    border-radius: 18px;
    overflow: hidden;
    position: relative;
  }
  .founder-quote {
    font-family: var(--ff-display);
    font-size: clamp(28px, 3vw, 40px);
    line-height: 1.3;
    letter-spacing: -0.015em;
    color: var(--encre);
    margin: 0 0 40px;
  }
  .founder-quote::before {
    content: '"';
    font-family: var(--ff-display);
    font-size: 80px;
    line-height: 0;
    color: var(--sauge);
    margin-right: 8px;
    vertical-align: -0.3em;
  }
  .signature {
    display: flex; align-items: center; gap: 16px;
    padding-top: 28px; border-top: 1px solid var(--line);
  }
  .signature .name { font-family: var(--ff-display); font-size: 22px; }
  .signature .role { font-size: 13px; color: var(--texte-mute); margin-top: 2px; }
  .signature-art {
    font-family: var(--ff-display); font-style: italic;
    font-size: 28px; color: var(--sauge);
    border-right: 1px solid var(--line); padding-right: 16px;
    transform: rotate(-4deg);
  }

  .founder-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1px;
    background: var(--line);
    border-top: 1px solid var(--line);
    border-bottom: 1px solid var(--line);
    margin: 64px 0;
  }
  .founder-stats .stat { background: var(--ivoire-2); padding: 32px; border: none; }

  @media (max-width: 900px) {
    .founder { grid-template-columns: 1fr; gap: 48px; }
  }

  .mission-vision-wrap { padding-top: 0; }
  .mission-vision {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
    max-width: 1280px;
    margin: 0 auto;
  }
  .mv-card {
    position: relative;
    min-height: 560px;
    border-radius: 20px;
    overflow: hidden;
    isolation: isolate;
    color: var(--ivoire-2);
    background: var(--encre);
  }
  .mv-card .mv-bg {
    position: absolute; inset: 0;
    background-size: cover;
    background-position: center;
    z-index: 0;
    transition: transform 1.4s var(--ease);
  }
  .mv-card:hover .mv-bg { transform: scale(1.04); }
  .mv-card .mv-overlay {
    position: absolute; inset: 0;
    background:
      linear-gradient(180deg, rgba(20,22,30,0.20) 0%, rgba(20,22,30,0.55) 55%, rgba(20,22,30,0.85) 100%);
    z-index: 1;
  }
  .mv-card .mv-inner {
    position: relative;
    z-index: 2;
    padding: 56px 56px 52px;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    gap: 0;
  }
  .mv-card .num {
    font-family: var(--ff-display);
    font-size: 13px;
    color: rgba(244,241,234,0.85);
    letter-spacing: 0.05em;
    margin-bottom: 18px;
  }
  .mv-card .num::before {
    content: '';
    display: inline-block;
    width: 28px; height: 1px;
    background: rgba(244,241,234,0.45);
    vertical-align: middle;
    margin-right: 12px;
    margin-bottom: 3px;
  }
  .mv-card h2 {
    font-size: clamp(34px, 3.6vw, 52px);
    line-height: 1.05;
    margin: 0 0 14px;
    color: #FFFFFF;
    letter-spacing: -0.01em;
    text-wrap: balance;
  }
  .mv-card .sub {
    font-family: var(--ff-display);
    font-style: italic;
    font-size: 18px;
    color: rgba(244,241,234,0.78);
    margin-bottom: 22px;
    font-weight: 300;
  }
  .mv-card p {
    line-height: 1.7;
    max-width: 50ch;
    font-size: 15px;
    color: rgba(244,241,234,0.88);
    text-wrap: pretty;
  }
  @media (max-width: 900px) {
    .mission-vision { grid-template-columns: 1fr; gap: 16px; }
    .mv-card { min-height: 480px; }
    .mv-card .mv-inner { padding: 40px 32px 36px; }
  }

  .values-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1px;
    background: var(--line);
    border: 1px solid var(--line);
    border-radius: 18px;
    overflow: hidden;
  }
  .value-card {
    background: var(--ivoire-2);
    padding: 40px 32px;
    transition: background .3s ease;
  }
  .value-card:hover { background: white; }
  .value-card .num { font-family: var(--ff-display); font-size: 14px; color: var(--sauge); }
  .value-card h3 { font-size: 28px; margin: 16px 0 12px; }
  .value-card p { color: var(--texte-mute); font-size: 14.5px; line-height: 1.6; }
  @media (max-width: 900px) { .values-grid { grid-template-columns: repeat(2, 1fr); } }
  @media (max-width: 500px) { .values-grid { grid-template-columns: 1fr; } }

  /* Timeline */
  .vtimeline { position: relative; max-width: 800px; margin: 0 auto; }
  .vtimeline::before {
    content: '';
    position: absolute;
    left: 100px; top: 0; bottom: 0;
    width: 1px; background: var(--line-strong);
  }
  .ev {
    position: relative;
    display: grid;
    grid-template-columns: 100px 1fr;
    gap: 48px;
    padding: 32px 0;
    align-items: start;
  }
  .ev::before {
    content: '';
    position: absolute;
    left: 95px; top: 42px;
    width: 11px; height: 11px;
    background: var(--sauge);
    border-radius: 50%;
    border: 3px solid var(--ivoire);
    z-index: 2;
  }
  .ev .year { font-family: var(--ff-display); font-size: 36px; color: var(--encre); line-height: 1; }
  .ev h4 { font-family: var(--ff-display); font-size: 26px; margin: 0 0 12px; font-weight: 400; }
  .ev p { color: var(--texte-mute); line-height: 1.6; }

  @media (max-width: 700px) {
    .vtimeline::before { left: 12px; }
    .ev { grid-template-columns: 1fr; gap: 8px; padding-left: 40px; }
    .ev::before { left: 7px; top: 12px; }
    .ev .year { font-size: 24px; }
  }

/* === /contact === */
  .contact-hero {
    padding: 140px 0 80px;
    position: relative;
    overflow: hidden;
    background: var(--ivoire);
  }
  .contact-hero::before {
    content: '';
    position: absolute; inset: 0; z-index: 0;
    background-image: url('/landing/hero-marble.png');
    background-size: cover;
    background-position: right center;
    background-repeat: no-repeat;
  }
  .contact-hero::after {
    content: '';
    position: absolute; inset: 0; z-index: 1;
    background:
      linear-gradient(90deg, var(--ivoire) 0%, rgba(246,244,239,0.92) 30%, rgba(246,244,239,0.5) 58%, rgba(246,244,239,0.1) 82%, transparent 100%),
      linear-gradient(180deg, transparent 60%, rgba(246,244,239,0.7) 100%);
  }
  .contact-hero > .container { position: relative; z-index: 2; }
  @media (max-width: 900px) {
    .contact-hero::before { opacity: 0.45; background-position: center; }
    .contact-hero::after {
      background: linear-gradient(180deg, var(--ivoire) 0%, rgba(246,244,239,0.85) 50%, var(--ivoire) 100%);
    }
  }
  .contact-hero h1 em { font-style: italic; font-weight: 300; color: var(--sauge); }
  .contact-grid {
    display: grid;
    grid-template-columns: 1fr 1.4fr;
    gap: 80px;
    padding: 0 0 120px;
  }
  /* Below 980px, stack with flex (more predictable than grid in RTL — some
     browsers reverse grid track flow with dir="rtl" even on single-column
     layouts, which broke the contact page in AR). */
  @media (max-width: 980px) {
    .contact-grid {
      display: flex;
      flex-direction: column;
      gap: 32px;
      padding-bottom: 64px;
    }
  }
  @media (max-width: 700px) {
    .contact-hero { padding: 80px 0 32px; }
    .contact-grid > * { width: 100%; min-width: 0; }
  }

  .info-block { background: var(--ivoire-2); padding: 40px; border-radius: 18px; border: 1px solid var(--line); }
  .info-block + .info-block { margin-top: 16px; }
  .info-block h3 { font-size: 22px; margin-bottom: 16px; }
  .info-row { display: flex; align-items: flex-start; gap: 14px; padding: 10px 0; }
  .info-row svg { width: 18px; height: 18px; color: var(--sauge); margin-top: 2px; flex-shrink: 0; }
  .info-row .lbl { font-size: 11px; letter-spacing: 0.18em; text-transform: uppercase; color: var(--texte-mute); }
  .info-row .val { font-size: 16px; color: var(--encre); margin-top: 2px; }
  .info-row .val a { color: var(--encre); }
  .info-row .val a:hover { color: var(--sauge); }
  @media (max-width: 700px) {
    .info-block { padding: 28px 22px; }
  }

  .form-card {
    background: var(--ivoire-2);
    border: 1px solid var(--line);
    border-radius: 18px;
    padding: 56px;
    width: 100%;
  }
  .form-card h2 { font-size: clamp(32px, 3.5vw, 44px); margin-bottom: 12px; }
  .form-card > p { color: var(--texte-mute); margin-bottom: 36px; }
  .form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 32px 24px; }
  .form-grid .full { grid-column: span 2; }
  @media (max-width: 700px) {
    .form-card { padding: 28px 22px; }
    .form-grid { grid-template-columns: 1fr; gap: 22px; }
    .form-grid .full { grid-column: span 1; }
  }

  /* Selection chips for materials */
  .selected-mats {
    background: var(--ivoire);
    border: 1px solid var(--line);
    border-radius: 14px;
    padding: 18px;
    margin-bottom: 28px;
    display: none;
  }
  .selected-mats.show { display: block; }
  .selected-mats .lbl { font-size: 11px; letter-spacing: 0.18em; text-transform: uppercase; color: var(--sauge); margin-bottom: 10px; }
  .selected-mats .chips { display: flex; flex-wrap: wrap; gap: 8px; }
  .selected-mats .chip { background: white; border: 1px solid var(--line); padding: 6px 12px; border-radius: 999px; font-size: 13px; }

  .file-drop {
    border: 1.5px dashed var(--line-strong);
    border-radius: 12px;
    padding: 28px;
    text-align: center;
    transition: all .25s ease;
    cursor: pointer;
  }
  .file-drop:hover { background: var(--ivoire); border-color: var(--sauge); }
  .file-drop svg { width: 28px; height: 28px; color: var(--sauge); margin-bottom: 8px; }
  .file-drop .small { font-size: 12px; color: var(--texte-mute); margin-top: 4px; }

  /* Map */
  .map {
    position: relative;
    aspect-ratio: 16/8;
    border-radius: 18px;
    overflow: hidden;
    background: var(--pierre);
    background-image:
      linear-gradient(135deg, transparent 48%, rgba(62,92,74,0.15) 49%, rgba(62,92,74,0.15) 51%, transparent 52%),
      linear-gradient(45deg, transparent 48%, rgba(62,92,74,0.10) 49%, rgba(62,92,74,0.10) 51%, transparent 52%),
      radial-gradient(circle at 30% 70%, rgba(62,92,74,0.08), transparent 60%);
    background-size: 120px 120px, 80px 80px, 100% 100%;
  }
  .map::before {
    content: '';
    position: absolute; inset: 0;
    background:
      repeating-linear-gradient(0deg, transparent 0 39px, rgba(0,0,0,0.04) 39px 40px),
      repeating-linear-gradient(90deg, transparent 0 39px, rgba(0,0,0,0.04) 39px 40px);
  }
  .map .road1 { position: absolute; left: 8%; right: 0; top: 38%; height: 14px; background: var(--ivoire); transform: rotate(-3deg); border-top:1px solid var(--line); border-bottom:1px solid var(--line); }
  .map .road2 { position: absolute; left: 38%; top: 0; bottom: 0; width: 12px; background: var(--ivoire); border-left:1px solid var(--line); border-right:1px solid var(--line); }
  .map .pin {
    position: absolute; left: 38%; top: 38%;
    transform: translate(-50%, -100%);
    z-index: 3;
  }
  .map .pin-dot {
    width: 22px; height: 22px;
    background: var(--sauge);
    border-radius: 50%;
    border: 4px solid white;
    box-shadow: 0 4px 14px rgba(0,0,0,0.2);
    animation: pulse 2s infinite;
  }
  @keyframes pulse {
    0%,100% { box-shadow: 0 4px 14px rgba(0,0,0,0.2), 0 0 0 0 rgba(62,92,74,0.5); }
    50% { box-shadow: 0 4px 14px rgba(0,0,0,0.2), 0 0 0 14px rgba(62,92,74,0); }
  }
  .map .pin-card {
    position: absolute;
    left: 30px; top: -10px;
    background: white;
    padding: 10px 14px;
    border-radius: 10px;
    font-size: 13px;
    white-space: nowrap;
    box-shadow: 0 8px 24px rgba(0,0,0,0.12);
  }
  .map .pin-card strong { display: block; font-family: var(--ff-display); font-size: 16px; }

  /* Why us */
  .why-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1px;
    background: var(--line);
    border: 1px solid var(--line);
    border-radius: 18px;
    overflow: hidden;
  }
  .why { background: var(--ivoire-2); padding: 32px; }
  .why svg { width: 28px; height: 28px; color: var(--sauge); margin-bottom: 14px; }
  .why h4 { font-family: var(--ff-display); font-size: 22px; font-weight: 400; margin-bottom: 8px; }
  .why p { font-size: 14px; color: var(--texte-mute); line-height: 1.6; }
  @media (max-width: 800px) { .why-grid { grid-template-columns: 1fr; } }

  /* Confirmation */
  .confirm {
    background: var(--sauge);
    color: var(--ivoire-2);
    padding: 28px;
    border-radius: 14px;
    display: none;
  }
  .confirm.show { display: block; }
  .confirm h4 { font-family: var(--ff-display); font-size: 24px; color: var(--ivoire-2); margin-bottom: 8px; }
  .confirm p { color: rgba(246,244,239,0.9); font-size: 14px; line-height: 1.6; }

