  /* SPLIT LAYOUT */
  .contact-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    min-height: 100vh;
    padding-top: 80px;
  }

  /* LEFT — DARK */
  .contact-left {
    background: var(--ink);
    color: var(--cream);
    padding: 6rem 4rem;
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    justify-content: center;
  }

  .contact-left::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image: repeating-linear-gradient(45deg, rgba(25, 157, 204, 0.06) 0, rgba(25, 157, 204, 0.06) 1px, transparent 0, transparent 50%);
    background-size: 32px 32px;
  }

  .contact-left-inner {
    position: relative;
    z-index: 1;
  }



  .contact-left h1 {
    font-family: 'Playfair Display', serif;
    font-size: clamp(2.2rem, 3.5vw, 3.5rem);
    font-weight: 900;
    line-height: 1.05;
    letter-spacing: -.03em;
    margin-bottom: 1.2rem;
  }

  .contact-left h1 em {
    font-style: italic;
    color: var(--accent-light);
  }

  .contact-left .intro {
    font-size: 1rem;
    line-height: 1.75;
    color: rgba(255, 255, 255, .6);
    font-weight: 300;
    max-width: 400px;
    margin-bottom: 3rem;
  }

  /* Infos de contact */
  .contact-infos {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
  }

  .contact-info-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
  }

  .info-icon {
    width: 40px;
    height: 40px;
    background: rgba(25, 157, 204, .15);
    border-radius: 2px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
  }

  .info-icon svg {
    width: 18px;
    height: 18px;
    stroke: var(--accent-light);
    fill: none;
    stroke-width: 1.5;
  }

  .info-label {
    font-size: .72rem;
    text-transform: uppercase;
    letter-spacing: .1em;
    color: rgba(255, 255, 255, .4);
    margin-bottom: .2rem;
  }

  .info-val {
    font-size: .95rem;
    color: rgba(255, 255, 255, .85);
    font-weight: 400;
  }

  /* Réseaux */
  .social-links {
    display: flex;
    gap: 1rem;
    margin-top: 3rem;
  }

  .social-link {
    display: inline-flex;
    align-items: center;
    gap: .5rem;
    padding: .6rem 1.2rem;
    border: 1px solid rgba(255, 255, 255, .15);
    border-radius: 2px;
    font-size: .78rem;
    font-weight: 500;
    letter-spacing: .06em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, .6);
    text-decoration: none;
    transition: all .2s;
  }

  .social-link:hover {
    border-color: var(--accent);
    color: var(--accent-light);
  }

  .left-deco {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--accent), var(--accent-light));
  }

  /* RIGHT — FORM */
  .contact-right {
    padding: 6rem 4rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
    background: var(--cream);
  }

  .form-title {
    font-family: 'Playfair Display', serif;
    font-size: 1.6rem;
    font-weight: 700;
    margin-bottom: .5rem;
  }

  .form-sub {
    font-size: .9rem;
    color: var(--muted);
    font-weight: 300;
    margin-bottom: 2.5rem;
  }

  .form-group {
    margin-bottom: 1.4rem;
  }

  .form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.2rem;
    margin-bottom: 1.4rem;
  }

  label {
    display: block;
    font-size: .75rem;
    font-weight: 500;
    letter-spacing: .08em;
    text-transform: uppercase;
    color: var(--muted);
    margin-bottom: .5rem;
  }

  input,
  textarea,
  select {
    width: 100%;
    padding: .9rem 1rem;
    border: 1px solid var(--border);
    border-radius: 2px;
    font-family: 'DM Sans', sans-serif;
    font-size: .92rem;
    color: var(--ink);
    background: var(--cream);
    outline: none;
    transition: border-color .2s, box-shadow .2s;
    resize: none;
  }

  input:focus,
  textarea:focus,
  select:focus {
    border-color: var(--accent);
    box-shadow: 0 0 0 3px rgba(25, 157, 204, .12);
  }

  textarea {
    min-height: 130px;
  }

  .form-check {
    display: flex;
    align-items: flex-start;
    gap: .8rem;
    margin-bottom: 2rem;
  }

  .form-check input[type="checkbox"] {
    width: 18px;
    height: 18px;
    flex-shrink: 0;
    margin-top: 2px;
    accent-color: var(--accent);
    cursor: pointer;
  }

  .form-check label {
    font-size: .82rem;
    text-transform: none;
    letter-spacing: 0;
    color: var(--muted);
    cursor: pointer;
    line-height: 1.5;
    font-weight: 300;
  }

  .btn-submit {
    width: 100%;
    padding: 1.1rem;
    background: var(--accent);
    color: var(--cream);
    border: none;
    border-radius: 2px;
    font-family: 'DM Sans', sans-serif;
    font-size: .9rem;
    font-weight: 600;
    letter-spacing: .08em;
    text-transform: uppercase;
    cursor: pointer;
    transition: background .25s, transform .2s;
  }

  .btn-submit:hover {
    background: var(--ink);
    transform: translateY(-2px);
  }

  .form-reassurance {
    display: flex;
    gap: 1.5rem;
    margin-top: 1.5rem;
    flex-wrap: wrap;
  }

  .reassurance-item {
    display: flex;
    align-items: center;
    gap: .4rem;
    font-size: .75rem;
    color: var(--muted);
  }

  .reassurance-item svg {
    width: 14px;
    height: 14px;
    stroke: var(--accent);
    fill: none;
    stroke-width: 2;
  }


  /* SUCCESS STATE */
  .form-success {
    display: none;
    text-align: center;
    padding: 3rem 0;
  }

  .success-icon {
    width: 64px;
    height: 64px;
    background: #e8f6fc;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
  }

  .success-icon svg {
    width: 28px;
    height: 28px;
    stroke: var(--accent);
    fill: none;
    stroke-width: 2;
  }

  .form-success h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.6rem;
    font-weight: 700;
    margin-bottom: .8rem;
  }

  .form-success p {
    color: var(--muted);
    font-size: .95rem;
    font-weight: 300;
    line-height: 1.7;
  }

  @media (max-width: 1024px) {

    .contact-layout {
      grid-template-columns: 1fr;
    }

    .contact-left {
      padding: 5rem 2rem 3rem;
    }

    .contact-right {
      padding: 3rem 2rem;
    }

  }

  @media (max-width: 600px) {

    .form-row {
      grid-template-columns: 1fr;
    }

    .social-links {
      flex-wrap: wrap;
    }
  }