:root {
      --bg:        #0d0d0d;
      --surface:   #161616;
      --border:    #2a2a2a;
      --accent:    #FEB612E0;
      --accent2:   #e8c992;
      --text:      #fff;
      --muted:     #888;
      --radius:    5px;
      --gap:       20px;
    }
 
    @keyframes fadeUp {
      from { opacity: 0; transform: translateY(24px); }
      to   { opacity: 1; transform: translateY(0); }
    }
 
    /* ── Grid ── */
    .form-grid {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 10px 20px;
    }
 
    .field-full { grid-column: 1 / -1; }
 
    /* ── Field ── */
    .field {
      display: flex;
      flex-direction: column;
    }
 
    .field input,
    .field textarea {
      width: 100%;
      background: #222;
      border-radius: var(--radius);
      padding: 14px 16px;
      font-size: 15px;
      color: var(--text);
      outline: none;
      transition: border-color 0.25s, box-shadow 0.25s, background 0.25s;
      -webkit-appearance: none;
    }
 
    .field input::placeholder,
    .field textarea::placeholder {
      color: #444;
    }
 
    .field input:focus,
    .field textarea:focus {
      border-color: var(--accent) !important;
      background: #141414;
    }
 
    .field textarea {
      resize: vertical;
      min-height: 130px;
      line-height: 1.6;
    }
 
    /* ── Submit ── */
    .btn-wrap { margin-top: 4px; }
 
 
    @keyframes fadeIn {
      from { opacity: 0; transform: translateY(6px); }
      to   { opacity: 1; transform: translateY(0); }
    }
 
    /* ── Responsive ── */
    @media (max-width: 600px) {
 
      .form-grid {
        grid-template-columns: 1fr;
      }
 
      /* On mobile, all fields become full-width naturally */
    }