    .contact-layout {
      display: grid;
      grid-template-columns: 1fr 1.6fr;
      gap: 5rem;
      max-width: 1100px;
      margin: 0 auto;
      padding: 0 3rem 6rem;
    }

    .contact-info { padding-top: 0.5rem; }

    .contact-info-item {
      padding: 1.5rem 0;
      border-bottom: 0.5px solid var(--border);
    }
    .contact-info-item:first-child { border-top: 0.5px solid var(--border); }

    .contact-info-label {
      font-size: 11px;
      text-transform: uppercase;
      letter-spacing: 0.12em;
      color: var(--accent);
      margin-bottom: 0.4rem;
    }
    .contact-info-val {
      font-size: 14px;
      color: var(--text-muted);
      line-height: 1.6;
    }
    .contact-info-val a {
      color: var(--text);
      transition: color 0.2s;
    }
    .contact-info-val a:hover { color: var(--accent); }

    .contact-socials {
      display: flex;
      gap: 1rem;
      margin-top: 2rem;
    }
    .contact-social-btn {
      font-size: 11px;
      text-transform: uppercase;
      letter-spacing: 0.1em;
      padding: 9px 18px;
      border: 0.5px solid var(--border-mid);
      color: var(--text-muted);
      background: transparent;
      transition: all 0.2s;
    }
    .contact-social-btn:hover { border-color: var(--accent-line); color: var(--accent); }

    .form-section-title {
      font-family: var(--serif);
      font-size: 1.4rem;
      color: var(--text);
      margin-bottom: 2rem;
      padding-bottom: 1rem;
      border-bottom: 0.5px solid var(--border);
    }

    .form-radio-group {
      display: flex;
      gap: 0;
      flex-wrap: wrap;
    }
    .form-radio-option {
      position: relative;
    }
    .form-radio-option input[type="radio"] {
      position: absolute;
      opacity: 0;
      width: 0; height: 0;
    }
    .form-radio-option label {
      display: block;
      font-size: 12px;
      text-transform: uppercase;
      letter-spacing: 0.08em;
      padding: 10px 20px;
      border: 0.5px solid var(--border-mid);
      color: var(--text-muted);
      cursor: pointer;
      transition: all 0.2s;
      margin-right: -0.5px;
    }
    .form-radio-option input:checked + label {
      background: var(--accent-dim);
      border-color: var(--accent);
      color: var(--accent);
    }
    .form-radio-option label:hover { border-color: var(--accent-line); color: var(--text); }

    .form-submit-row {
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 1rem;
      margin-top: 2rem;
      padding-top: 2rem;
      border-top: 0.5px solid var(--border);
    }
    .form-privacy {
      font-size: 11px;
      color: var(--text-subtle);
      line-height: 1.5;
      max-width: 320px;
    }

    @media (max-width: 1024px) {
      .contact-layout {
        grid-template-columns: 1fr;
        gap: 3rem;
        padding: 0 2rem 4rem;
      }
    }
    @media (max-width: 768px) {
      .contact-layout { padding: 0 1.5rem 3rem; }
      .form-submit-row { flex-direction: column; align-items: flex-start; }
    }